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 venvcommand - Activate venv with
venv\Script\activateon Windows orsource venv\bin\activateon 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