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

  • Home
  • SEARCH
  • 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 3784694
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T11:24:56+00:00 2026-05-19T11:24:56+00:00

Hey everybody I’m working on a data scraping project and I’m looking for a

  • 0

Hey everybody I’m working on a data scraping project and I’m looking for a clean way to repeat a function call if an exception is raised.

Pseudo-code:

try:
    myfunc(x)
except myError:
    ###try to call myfunc(x) again Y number of times, 
        until success(no exceptions raised) otherwise raise myError2

I realize this isn’t best practice at all but I’m working through a number of different code/network layers that aren’t reliable and I can’t realistically debug them.

Right now I’m accomplishing this with a huge set of try\except blocks and it’s making my eyes bleed.

Elegant ideas anyone?

  • 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-19T11:24:57+00:00Added an answer on May 19, 2026 at 11:24 am

    To do precisely what you want, you could do something like the following:

    import functools
    def try_x_times(x, exceptions_to_catch, exception_to_raise, fn):
        @functools.wraps(fn) #keeps name and docstring of old function
        def new_fn(*args, **kwargs):
            for i in xrange(x):
                try:
                    return fn(*args, **kwargs)
                except exceptions_to_catch:
                     pass
            raise exception_to_raise
        return new_fn
    

    Then you just wrap the old function in this new function:

    #instead of
    #risky_method(1,2,'x')
    not_so_risky_method = try_x_times(3, (MyError,), myError2, risky_method)
    not_so_risky_method(1,2,'x')
    
    #or just
    try_x_times(3, (MyError,), myError2, risky_method)(1,2,'x')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey guys, I'm working on a project. I need to use the function cvFindHomography
Hey everybody.I'm appending some divs through a getJSON function but i want to jazz
Hey everybody, this is what I have going on. I have two text files.
Hey I am looking to change my a plugin that I created to use
Hey guys i am i am new to C++ and through to a project
Hey everyone, I'm using Virtual PC and working with a virtual hard disk (*.vhd)
Hey everybody, got an interesting question I think. I've got a Silverlight3 application which
Hey all, I'm working on cleaning up my code from previous semesters. Previously I
Hey guys I was wondering if there is a way to get a certain
hey guys I have the follow code in js: $(document).ready(function(){ $(.replyLink).click(function(){ $(#form-to-+this.id).html(htmlForm()).toggle(500); return false;

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.