• We just launched and are currently in beta. Join us as we build and grow the community.

Combo country splitter US|UK|ES|FR|IT|BE|NL|DE

Suburban

Command Injection Master
Divine
S Rep
0
0
0
Rep
0
S Vouches
0
0
0
Vouches
0
Posts
80
Likes
117
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 500 XP
Combo country splitter US|UK|ES|FR|IT|BE|NL|DE (python)
The not sorted combo will be made too. If you want more countries added, let me know and I'll add them. (works only on email:pass files)
If you need anything related to this, PM me with a suggestion
Edit: added .ca, .ru, .pl
NEW VERSION HERE:
Code:
file1 = open('combo.txt', 'r')
UK = open('UK.txt', 'w')
DE = open('DE.txt', 'w')
NL = open('NL.txt', 'w')
BE = open('BE.txt', 'w')
US = open('US.txt', 'w')
FR = open('FR.txt', 'w')
ES = open('ES.txt', 'w')
IT = open('IT.txt', 'w')
CA = open('CA.txt', 'w')
RU = open('RU.txt', 'w')
PL = open('PL.txt', 'w')
NC = open('nocountryfound.txt', 'w')
for lijn in file1:
try:
find_uk = lijn.find('.uk:')
find_de = lijn.find('.de:')
find_nl = lijn.find('.nl:')
find_us = lijn.find('.us:')
find_be = lijn.find('.be:')
find_es = lijn.find('.es:')
find_fr = lijn.find('.fr:')
find_it = lijn.find('.it:')
find_ca = lijn.find('.ca:')
find_pl = lijn.find('.pl:')
find_ru = lijn.find('.ru:')
if find_uk != 0 and find_uk != -1:
print(str(lijn), file=UK, end='')
find_uk = 0
elif find_us != 0 and find_us != -1:
print(str(lijn), file=US, end='')
find_us = 0
elif find_de != 0 and find_de != -1:
print(str(lijn), file=DE, end='')
find_de = 0
elif find_es != 0 and find_es != -1:
print(str(lijn), file=ES, end='')
find_es = 0
elif find_fr != 0 and find_fr != -1:
print(str(lijn), file=FR, end='')
find_fr = 0
elif find_nl != 0 and find_nl != -1:
print(str(lijn), file=NL, end='')
find_nl = 0
elif find_be != 0 and find_be != -1:
print(str(lijn), file=BE, end='')
find_be = 0
elif find_it != 0 and find_it != -1:
print(str(lijn), file=IT, end='')
find_it = 0
elif find_ca != 0 and find_ca != -1:
print(str(lijn), file=CA, end='')
find_ca = 0
elif find_ru != 0 and find_ru != -1:
print(str(lijn), file=RU, end='')
find_ru = 0
elif find_pl != 0 and find_pl != -1:
print(str(lijn), file=PL, end='')
find_pl = 0
else:
print(str(lijn), file=NC, end='')
except IndexError:
continue
file1.close()
UK.close()
US.close()
NL.close()
BE.close()
ES.close()
FR.close()
IT.close()
DE.close()
CA.close()
PL.close()
RU.close()
 

437,153

314,794

314,803

Top