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 6819047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:15:07+00:00 2026-05-26T21:15:07+00:00

I wrote a program in Python yesterday that checks hundreds of URLs for validity

  • 0

I wrote a program in Python yesterday that checks hundreds of URLs for validity (that they won’t 404 mainly) but currently when my program runs into a URL that is not valid it throws many exceptions and then crashes. I am using urllib.urlopen to visit the links. Is there anyway for my program to ignore these exceptions and continue running but log somewhere the lines of code that caused the problem?

  • 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-26T21:15:07+00:00Added an answer on May 26, 2026 at 9:15 pm

    You can use the Logger.exception() method. For example :

    LOGGER = logging.getLogger("my_logger_name")
    for my_url in urls_to_test:
       try:
           #test your url
       except Exception:   # or BaseException if you really want to catch all python exceptions
          LOGGER.exception("something weird happened") 
    

    That will display the traceback of the url that raise exceptions, and still continue to test the other URL.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote a very short program that parses a program using python and converts
I wrote a little Python program that looks though a directory (and its subdirectories)
I wrote a Python program that acts on a large input file to create
I wrote a program that uses builtin function bin(), but this function is new
I wrote a simple python program that looks to me like it should be
I wrote a test program that looked like this: #!/usr/bin/python def incrementc(): c =
I wrote a Python extension in C, and my python program uses that extension.
I wrote a quick program in python to add a gtk GUI to a
A while back I wrote a simple python program to brute-force the single solution
I've been playing with Python for a while and wrote a little program to

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.