generator-vpn.py did not saved the generated list because of incorrect destination folder name

pull/243/head
csandera 2023-01-10 19:41:59 +01:00
parent 3a059f8bd9
commit d91c41438b
2 changed files with 22661 additions and 11954 deletions

File diff suppressed because it is too large Load Diff

View File

@ -18,9 +18,6 @@ def process(url, dst):
if __name__ == '__main__':
vpn_base_url_v4 = 'https://raw.githubusercontent.com/X4BNet/lists_vpn/main/ipv4.txt'
vpns = ['https://raw.githubusercontent.com/X4BNet/lists_vpn/main/ipv4.txt']
for url in vpns:
uri = url.split('/')[-1]
uri.split('.')[0]
process(url, uri)
url = 'https://raw.githubusercontent.com/X4BNet/lists_vpn/main/ipv4.txt'
dst = 'vpn-ipv4'
process(url, dst)