Python – How to set up the own proxy server

perlPROXYpython

This website (abc.com) slowed access from our original IP address. How do I implement my own proxy server to hide my IP while browsing abc.com? Do I need special hardware/software combo to achieve this?

If I can generate about 5 proxies and alternate amongst those 5 while browsing abc.com would be awesome. Please suggest. Thanks guys!

p.s : I want to know if I can generate proxy IPs of the type 123.34.21.140 prot 80 on my own? I want to use those IP/port combos in my Python scripts (urllib2/set_proxy).

Best Answer

Instead of trying hide from them why don't you actually try and work up an agreement with the site so they actually allow your access.

If they chose to block you, then there may have been a legitimate reason. Perhaps your requests far out-paced what their servers could handle. Perhaps your requests where doing something wrong and causing problems on their network. Perhaps your requests was using more bandwidth then what they considered to be reasonable. If someone blocks you, it is very rare for the correct solution to be setting up proxies to distribute and hide your activities.

If you are overly abusive you also might quickly become the target of some kind of legal actions.

Related Topic