Parse data from www.vpngate.net and save it to csv file like VPN Gate Public API (www.vpngate.net/api/iphone/)
- Python 3.x installed
- Setup venv with
python -m venv venv
command - Activate venv with
venv\Script\activate
on Windows orsource venv\bin\activate
on Linux, Unix - Install required python library with
pip install -r requirements.txt
Type python .
command then hit Enter in root directory
You can change output csv location in line 7 in file __main__.py
like this
# csv output file
csv_file_path = "output/udp"
Made with