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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:53:19+00:00 2026-06-03T07:53:19+00:00

Possible Duplicate: CURL alternative in Python I’m trying to write a python snippet that

  • 0

Possible Duplicate:
CURL alternative in Python

I’m trying to write a python snippet that returns a JSON response. With curl it works and look like this:

curl -H 'content-type: application/json' \
     -d '' http://example.com/postservice.get_notes

How could I write code in python that returns a JSON object as the curl command does?

  • 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-06-03T07:53:20+00:00Added an answer on June 3, 2026 at 7:53 am

    To exactly mimic this you’ll need pycurl.

    import pycurl
    import StringIO 
    
    buf = StringIO.StringIO()
    
    c = pycurl.Curl()
    c.setopt(c.URL, 'http://example.com/postservice.get_notes')
    c.setopt(c.WRITEFUNCTION, buf.write)
    c.setopt(c.HTTPHEADER, ['Accept-Charset: UTF-8'])
    c.setopt(c.POSTFIELDS, '')
    c.perform()
    
    json = buf.getvalue()
    buf.close()
    

    Note here content-type: application/json is not a valid request header. So it’s not needed.

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

Sidebar

Related Questions

Possible Duplicate: Yield In VB.NET In C#, when writing a function that returns an
Possible Duplicate: Post data and retrieve the response using PHP Curl? I want to
Possible Duplicate: cURL: Just trying to download a page I'm trying to submit this
Possible Duplicate: get the value of an url response with curl I have an
Possible Duplicate: XPath: How to match attributes that contain a certain string I'm trying
Possible Duplicate: Where do the Python unit tests go? Are unit tests kept in
Possible Duplicate: What does it mean “bash < <( curl rvm.io/releases/rvm-install-head )” I'm working
Possible Duplicate: Implement page curl on android? How to do page flipping/turning or curl
Possible Duplicate: When is a python object's hash computed and why is the hash
Possible Duplicate: How to make half curl animation in iPhone like the maps app

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.