🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

curlconverter

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

curlconverter

The library is responsible for parsing a cURL request string and converting it into a Python dictionary containing the method, URL, headers, and data

pipPyPI
Version
1.0.1
Maintainers
1

Here's an example of how to use the curlconverter library:

from curlconverter import CurlConverter

Example cURL command string

curl_string = 'curl 'https://api.example.com\' -H 'Content-Type: application/json' -d '{"foo": "bar"}''

Create an instance of CurlConverter with the cURL string

curl_converter = CurlConverter(curl_string)

Convert the cURL string to a dictionary

parsed_data = curl_converter.convert()

Print the parsed data

print(parsed_data)

Output: {'method': 'GET', 'url': 'https://api.example.com', 'headers': {'Content-Type': 'application/json'}, 'data': '{"foo": "bar"}'}

In this example, we create an instance of CurlConverter with a cURL command string that makes a GET request to https://api.example.com with a Content-Type header and a JSON payload. We then call the convert() method on the instance to parse the cURL string and return a dictionary with the parsed data. Finally, we print the parsed data to the console.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts