Skip to main content

Initialize from a curl command string and get equivalent requests.Session and httpx.Client objects

Project description

CurlSession

pip install curl-session

Initialize from a curl command string and get equivalent requests.Session and httpx.Client objects with the same headers, cookies, proxies, TLS options, and redirect/http2 behavior.

Usage

from curl_session import CurlSession

curl = 'curl -H "Accept: application/json" -b "a=1; b=2" https://example.com/api'
cs = CurlSession(curl)

# httpx
with cs.get_httpx_client() as client:
    r = client.get(cs._parsed.url)  # provide a URL as in original curl if needed
    print(r.text)

# requests
with cs.get_requests_session() as s:
    r = s.get(cs._parsed.url)
    print(r.text)

# run original curl
cp = cs.run()
print(cp.stdout)

MultiCurl Usage

Use MultiCurl to parse and execute multiple cURL commands from a string, with optional filtering and delays.

from curl_session import multi_curl

curl_commands = """
curl 'https://example.com/api1'
curl 'https://example.com/api2' -H 'Authorization: Bearer token'
"""

mc = multi_curl.MultiCurl(curl_commands)
results = mc.run(delay=1.0, url_filter='api1')  # Run with 1s delay, filter by URL substring

for curl in results:
    print(f"URL: {curl.url}, Status: {curl.status_code}, Response: {curl.response}")

Tests

  • Install deps
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pytest -q

Build and Deploy to PyPI

run release.sh

Notes

  • This is a pragmatic parser covering common curl flags for headers, cookies, data, proxies, TLS, auth, redirect, and http2 options.
  • If --cookie is a filename, it's ignored for safety. Provide explicit cookie strings instead.
  • Timeouts and other runtime-only flags are intentionally not persisted to the session defaults.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

curl_session-0.1.10.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

curl_session-0.1.10-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file curl_session-0.1.10.tar.gz.

File metadata

  • Download URL: curl_session-0.1.10.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for curl_session-0.1.10.tar.gz
Algorithm Hash digest
SHA256 3f16e9820eb26977bac969891848ca82036247022966609d858321328e3f3d85
MD5 0b1bea8f0b751d4d8945e1495bf750d9
BLAKE2b-256 3d2cddf0f73747205988da2060cf97a632419109c8f88b821e128962a90e3546

See more details on using hashes here.

File details

Details for the file curl_session-0.1.10-py3-none-any.whl.

File metadata

  • Download URL: curl_session-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for curl_session-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 585fed051e397a112b1368b3c1652a286043418e474f81833f5a47b73909895f
MD5 071235c26b68b2af49fb6e7b2556cd3f
BLAKE2b-256 385eda0832a0e9a3a20a5982080f735c6134d9ddd621cd7b721e74001776e855

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page