Dxminic
Freemium Model Innovator
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
100 XP
1. Go here -> https://fineproxy.org/free-proxy/
2. Open Network tab
3. Click on any range from pages (for example. page number 2)
4. Now you can see request something like proxy-list.php?0.3007593384717846
5. On that new request go into Preview section and click right button on [,...] row and choose copy object.
6. Create new folder on desktop i.e ProxyFine. Into that folder create load.txt file where you put data of copied object in step 5.
7. Create file with your custom name and save it with .py extension like python file. As the content of python file use this code bellow:
Code:
8. Just run now the python code and you will get proxies in IP:PORT format inside created new file called scraped.txt.
9. Remember that you need python libraries installed if you are on windows / linux.
10. Enjoy and Leave a like if it works for you or it is good tutorial :)
Have a nice day
2. Open Network tab
3. Click on any range from pages (for example. page number 2)
4. Now you can see request something like proxy-list.php?0.3007593384717846
5. On that new request go into Preview section and click right button on [,...] row and choose copy object.
6. Create new folder on desktop i.e ProxyFine. Into that folder create load.txt file where you put data of copied object in step 5.
7. Create file with your custom name and save it with .py extension like python file. As the content of python file use this code bellow:
Code:
Code:
import json
# Define the file path containing the JSON data
data_file = "load.txt"
# Open the data file in read mode
try:
with open(data_file, "r") as file:
# Read the data from the file
data = file.read()
except FileNotFoundError:
print(f"Error: File '{data_file}' not found!")
exit()
# Parse the JSON data
proxies = json.loads(data)
# Open the file for writing in append mode (creates the file if it doesn't exist)
with open("scraped.txt", "a") as file:
# Extract and write IP:PORT information to the file
for proxy in proxies:
ip = proxy["ip"]
port = proxy["port"]
file.write(f"{ip}:{port}\n")
print("Proxies saved to scraped.txt!")
9. Remember that you need python libraries installed if you are on windows / linux.
10. Enjoy and Leave a like if it works for you or it is good tutorial :)
Have a nice day