Skip to main content

Use requests to talk HTTP via a UNIX domain socket

Project description

requests-unixsocket2

Latest Version on PyPI pipeline status coverage report Latest Release

Use requests to talk HTTP via a UNIX domain socket.

Usage

Explicit

You can use it by instantiating a special Session object:

import json

import requests_unixsocket

session = requests_unixsocket.Session()

r = session.get('http+unix://%2Fvar%2Frun%2Fdocker.sock/info')
registry_config = r.json()['RegistryConfig']
print(json.dumps(registry_config, indent=4))

Implicit (monkeypatching)

Monkeypatching allows you to use the functionality in this module, while making minimal changes to your code. Note that in the above example we had to instantiate a special requests_unixsocket.Session object and call the get method on that object. Calling requests.get(url) (the easiest way to use requests and probably very common), would not work. But we can make it work by doing monkeypatching.

You can monkeypatch globally:

import requests_unixsocket

requests_unixsocket.monkeypatch()

r = requests.get('http+unix://%2Fvar%2Frun%2Fdocker.sock/info')
assert r.status_code == 200

or you can do it temporarily using a context manager:

import requests_unixsocket

with requests_unixsocket.monkeypatch():
    r = requests.get('http+unix://%2Fvar%2Frun%2Fdocker.sock/info')
    assert r.status_code == 200

Abstract namespace sockets

To connect to an abstract namespace socket (Linux only), prefix the name with a NULL byte (i.e.: \0) - e.g.:

import requests_unixsocket

session = requests_unixsocket.Session()
res = session.get('http+unix://\0test_socket/get')
print(res.text)

For an example program that illustrates this, see examples/abstract_namespace.py in the git repo. Since abstract namespace sockets are specific to Linux, the program will only work on Linux.

See also

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

requests_unixsocket2-1.0.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

requests_unixsocket2-1.0.0-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file requests_unixsocket2-1.0.0.tar.gz.

File metadata

  • Download URL: requests_unixsocket2-1.0.0.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for requests_unixsocket2-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8c6cad0326369658db931b4c36f03cd1cccb7668e081e7fb3972b500a93bb563
MD5 0d30e00c9588a03cc9c49716b3883520
BLAKE2b-256 e37b8f398d91382a2bbae06530389f74d6296a4da04827144a3015f34b7d82c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket2-1.0.0.tar.gz:

Publisher: .gitlab-ci.yml on thelabnyc/requests-unixsocket2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file requests_unixsocket2-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for requests_unixsocket2-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 11c70219366a8d1e2cf0ec7694317f11b44977fb9647378651f7ae95a451c024
MD5 e237221f701ff7e55dfe36d71e20c6f5
BLAKE2b-256 9d3d17006603e3ef2ace6e23dbf2f51784621807a52807139be79dde26cc27d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket2-1.0.0-py3-none-any.whl:

Publisher: .gitlab-ci.yml on thelabnyc/requests-unixsocket2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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