Skip to content
Advertisement

How can I modify a Curl Command to run in Python with data loaded in a JSON file

I use the following Curl command below: (it works for me)

JavaScript

But I was trying to change this Curl command into a python script

Then I use this site https://curl.trillworks.com/#python to convert my Curl call into a python script.

This is the script that the site created for me:

JavaScript

But the script is not working, I receive the error:

JavaScript

When I try to run the script without the ‘data’ parameter,

JavaScript

the script runs fine. I got HTTP code 200.

I read in another response on Stackoverflow that the parameter “-d @q1.json” from Curl is not the same as the “data = open(‘q1.json’)” function on Python

I try to pass the content of the JSON file in postman, but it didn’t work.

I was able able to convert my Curl command to Python or how to use it in Postman.

How can I do that?

ps: This is the content of the “q1.json” file

JavaScript

Advertisement

Answer

Based in the suggestion from @fsimonjetz and @chepner

This piece of code works for me

JavaScript

or

JavaScript

Both codes give me the same result.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement