All Questions
12 questions
1
vote
0
answers
112
views
Rotating pool of proxies
It's a very simple class to get a different proxy each time it's called. I've done it because I was trying to use aiohttp_scraper and it didn't work so I have to make my own. This is just one of the ...
2
votes
1
answer
548
views
Universal class for proxifying poplib, imaplib and smtplib. Lame inheritance or mock or something else?
This is wrapper for POP3, POP3_SSL, IMAP4, IMAP4_SSL, <...
3
votes
1
answer
424
views
Sticking to a working proxy generated by a rotating proxy script
I've created a script in python to make proxied requests by picking working proxies from a list of proxies scraped from a free proxy site. The bot traverses few links to parse the urls of the ...
2
votes
1
answer
5k
views
Web-scraping through a rotating proxy script
I've created a script in python which is able to parse proxies (supposed to support "https") from a website. Then the script will use those proxies randomly to parse the title of different coffe shops ...
6
votes
1
answer
4k
views
Using rotation of proxies within a Python script
I've written a script in Python using rotation of proxies which is able to fetch different titles from a website traversing different pages. I've tried to write this scraper in such a way so that it ...
2
votes
1
answer
302
views
Scraping different categories using different links through proxy
I've written a script in python to scrape name, review_star and review_count by going through thousands of links (to different products) stored in a csv file using reverse search. As those links are ...
3
votes
0
answers
144
views
msysGit to Unix sockets
I wrote this small script to help porting msysGit sockets to WSL ("Bash for Windows"). I'm not a big Python programmer so any feedback would be well appreciated.
By the way, I made it a public Gist ...
2
votes
1
answer
2k
views
Handling errors in a Python UDP proxy [closed]
The following (stripped) program receives UDP packets on port 5000 and forwards them to port 5001. It may throw socket errors on startup (e.g.: if the port is already in use), but I am not too worried ...
2
votes
0
answers
1k
views
Google Searching Bot with Proxy support
I have been asked by a client to program a bot which searches Google and will show how many no of results I get.
Note: I know about Google Custom Search API and it will not produce the exact output ...
4
votes
0
answers
1k
views
Python proxy class
I've coded my own proxy class in python. The aim is to have a different type() but otherwise behave as identical to the underlying object as possible. I'm wondering ...
7
votes
2
answers
3k
views
Proxy using socket, doubts on multithreading and connection closing
I'm trying to make a simple proxy server in Python using the socket library, mostly to understand how it works. I'm a noob both at programming and networking, so please be nice if my questions are ...
3
votes
1
answer
804
views
Creating Proxy classes for immutable objects
As a bit of a learning project, I decided to take the concept of proxying objects a bit further and extend it to creating proxy classes which create proxy'd objects. I originally found the idea of ...