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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T08:21:11+00:00 2026-05-14T08:21:11+00:00

I have a cURL call that I use in PHP: curl -i -H ‘Accept:

  • 0

I have a cURL call that I use in PHP:

curl -i -H 'Accept: application/xml' -u login:key "https://app.streamsend.com/emails"

I need a way to do the same thing in Python. Is there an alternative to cURL in Python? I know of urllib but I have no idea how to use it.

  • 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-14T08:21:11+00:00Added an answer on May 14, 2026 at 8:21 am
    import urllib2
    
    manager = urllib2.HTTPPasswordMgrWithDefaultRealm()
    manager.add_password(None, 'https://app.streamsend.com/emails', 'login', 'key')
    handler = urllib2.HTTPBasicAuthHandler(manager)
    
    director = urllib2.OpenerDirector()
    director.add_handler(handler)
    
    req = urllib2.Request('https://app.streamsend.com/emails', headers = {'Accept' : 'application/xml'})
    
    result = director.open(req)
    # result.read() will contain the data
    # result.info() will contain the HTTP headers
    
    # To get say the content-length header
    length = result.info()['Content-Length']
    

    Your cURL call using urllib2 instead. Completely untested.

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

Sidebar

Related Questions

I have a grails 1.3.7 application that makes an https api call to a
I have a PHP script that uses CURL to fetch a remote page and
I have a PHP application that currently has 5k users and will keep increasing
I have a php page that uses CURL to log in to another page,
I have picked up a quick PHP project that I need the use of
I have installed WAMP and running PHP scripts on localhost. I have enabled cURL.
I have read that CURL is way too fast than File Get Contents and
I have a django view that returns HTTP 301 on a curl request: grapefruit:~
I have a need to rename a file after download using php cURL. Here's
I am trying to track down an issue with a cURL call in PHP.

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.