Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 899649
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:15:15+00:00 2026-05-15T15:15:15+00:00

I have this program that check a website, and I want to know how

  • 0

I have this program that check a website, and I want to know how can I check it via proxy in Python…

this is the code, just for example

while True:
    try:
        h = urllib.urlopen(website)
        break
    except:
        print '['+time.strftime('%Y/%m/%d %H:%M:%S')+'] '+'ERROR. Trying again in a few seconds...'
        time.sleep(5)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T15:15:15+00:00Added an answer on May 15, 2026 at 3:15 pm

    By default, urlopen uses the environment variable http_proxy to determine which HTTP proxy to use:

    $ export http_proxy='http://myproxy.example.com:1234'
    $ python myscript.py  # Using http://myproxy.example.com:1234 as a proxy
    

    If you instead want to specify a proxy inside your application, you can give a proxies argument to urlopen:

    proxies = {'http': 'http://myproxy.example.com:1234'}
    print("Using HTTP proxy %s" % proxies['http'])
    urllib.urlopen("http://www.google.com", proxies=proxies)
    

    Edit: If I understand your comments correctly, you want to try several proxies and print each proxy as you try it. How about something like this?

    candidate_proxies = ['http://proxy1.example.com:1234',
                         'http://proxy2.example.com:1234',
                         'http://proxy3.example.com:1234']
    for proxy in candidate_proxies:
        print("Trying HTTP proxy %s" % proxy)
        try:
            result = urllib.urlopen("http://www.google.com", proxies={'http': proxy})
            print("Got URL using proxy %s" % proxy)
            break
        except:
            print("Trying next proxy in 5 seconds")
            time.sleep(5)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this program that should execute a piece of code base on the
I have a program that simulates mouse click. Code is something like this: [DllImport(user32.dll,
Hi I have this code below which is meant to check that the url
I have this basic code that will check for notepad running every minute. namespace
I have this program that I am working on for class, I think the
I have this simple program that computes salaries for four different worker types. It's
I have a C/ncurses program that I'm debugging/maintaining. This program does ripoffline twice: first,
I have made a program that scans rss feeds. This same program creates feeds
I have a program that looks something like this: public partial class It {
I have a program that looks like this. I need to consistently write something

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.