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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T05:28:45+00:00 2026-05-13T05:28:45+00:00

I’m working with an API which I post files to. However, when I receive

  • 0

I’m working with an API which I post files to. However, when I receive the response, the HTTP status code is a 202. This is to be expected, but in addition the API will also respond with XML content.

So in my try/except block urllib2.urlopen will result in a raised urllib2.HTTPError and destroying the XML content.

try:
    response = urllib2.urlopen(req)
except urllib2.HTTPError, http_e:
    if http_e.code == 202:
        print 'accepted!'
        pass

print response.read() # UnboundLocalError: local variable 'response' referenced before assignment

How can I expect the 202 and keep the response content, but not raise an error?

  • 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-13T05:28:45+00:00Added an answer on May 13, 2026 at 5:28 am

    Edit

    Being silly, I forgot to inspect the exception that is returned by urllib2. It features all of the properties I’ve been waxing on about for httplib. This should do the trick for you:

    try:
        urllib2.urlopen(req)
    except urllib2.HTTPError, e:
        print "Response code",e.code # prints 404
        print "Response body",e.read() # prints the body of the response...
                                       # ie: your XML
        print "Headers",e.headers.headers
    

    Original

    In this case, given that you’re using HTTP as your transport protocol, you’ll probably have more luck with the httplib library:

    >>> import httplib
    >>> conn = httplib.HTTPConnection("www.stackoverflow.com")
    >>> conn.request("GET", "/dlkfjadslkfjdslkfjd.html")
    >>> r = conn.getresponse()
    >>> r.status
    301
    >>> r.reason
    'Moved Permanently'
    >>> r.read()
    '<head><title>Document Moved</title></head>\n<body><h1>Object Moved</h1>
     This document may be found   
     <a HREF="http://stackoverflow.com/dlkfjadslkfjdslkfjd.html">here</a></body>'
    

    You can further use r.getheaders() and so forth to inspect other aspects of the response.

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

Sidebar

Related Questions

No related questions found

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.