Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (16.4k points)
closed by

I'm working with an API for tag acknowledgment ; and I get this twist order : 

How to carry out such call with curl in PYTHON?

curl "https://api.havenondemand.com/1/api/async/recognizelicenseplates/v1?url=https%3A%2F%2Fwww.havenondemand.com%2Fsample-content%2Fvideos%2Fgb-plates.mp4&source_location=GB&apikey=695e513c-xxxx-xxxx-xxxx-xxxxxxxxxx"

curl -X POST --form "url=https://www.havenondemand.com/sample-content/videos/gb-plates.mp4" --form "source_location=GB" --form "apikey=695e513c-xxxx-xxxx-a666-xxxxxxxxxx" https://api.havenondemand.com/1/api/async/recognizelicenseplates/v1

closed

4 Answers

0 votes
by (25.7k points)
selected by
 
Best answer

To make an API call using CURL through Python, you can utilize the subprocess module in Python to execute the CURL command as a subprocess. Here's an example:

import subprocess

def make_api_call(url):

    curl_command = ['curl', url]

    result = subprocess.run(curl_command, capture_output=True, text=True)

    return result.stdout

# Example usage

api_url = "https://api.example.com/endpoint"

response = make_api_call(api_url)

print(response)

In the code above, the make_api_call function takes the API URL as a parameter and constructs a CURL command using the curl command-line tool. The subprocess.run function executes the CURL command as a subprocess, capturing the output and returning it as a string.

Replace "https://api.example.com/endpoint" with the actual API URL you want to call. The response variable will contain the output of the API call, which you can further process or use as needed.

Note that this method allows you to make CURL requests from Python, but it has some limitations and may not provide the same level of flexibility and convenience as using native Python libraries for making API requests, such as requests or urllib. If possible, it is generally recommended to use these libraries directly for making API calls in Python.

0 votes
by (26.4k points)

First try to install the requests module

pip install requests

Then try the below code:

import requests

API_URL = "https://api.havenondemand.com/1/api/async/recognizelicenseplates/v1"

data = {

    "url": "https://www.havenondemand.com/sample-content/videos/gb-plates.mp4",

    "source_location": "GB",

    "apikey": "695e513c-xxxx-xxxx-a666-xxxxxxxxxx"

 }

response = requests.post(API_URL, data)

print(response.json())

Essentially, any structure fields should go inside the information dictionary as key worth sets. We use requests.post() work here. The capacity/function accepts the objective URL as the primary boundary. Also, the structure esteems as the subsequent boundary.

We get a reaction object back. You can see the crude reaction by printing out the worth of response.content. In any case, in the event that you realize that the reaction is JSON, you can utilize the json() technique to parse the reaction and get back Python information type (dictionary).

Want to learn python to get expertise in the concepts of python? Join python certification course and get certified

0 votes
by (25.7k points)

Here is the example that will let you know how you can CALL with CURL an API through Python:

 import subprocess

def make_api_call(url):

    curl_command = ['curl', url]

    result = subprocess.run(curl_command, capture_output=True, text=True)

    return result.stdout

# Example usage

api_url = "https://api.example.com/endpoint"

response = make_api_call(api_url)

print(response)

0 votes
by (19k points)

You can use Python's subprocess module to run the CURL command as a subprocess in order to use CURL to perform an API call through Python. Here's an illustration:

import subprocess

def make_api_call(url):

    curl_command = ['curl', url]

    result = subprocess.run(curl_command, capture_output=True, text=True)

    return result.stdout

# Example usage

api_url = "https://api.example.com/endpoint"

response = make_api_call(api_url)

print(response)

The make_api_call method in the code above creates a CURL command by using the curl command-line tool and the API URL as an input. The CURL command is run as a subprocess via the subprocess.run function, and the output is captured and returned as a string.
The actual API URL you intend to call should be substituted for "https://api.example.com/endpoint". The output of the API call will be contained in the response variable, which you can utilize or process further as necessary.
It should be noted that while this method enables you to send CURL queries from Python, it has some restrictions and might not offer as much ease and flexibility as utilizing native Python libraries for sending API requests, such requests or urllib. 

Browse Categories

...