Skip to main content

Use requests to talk HTTP via a UNIX domain socket

Project description

Latest Version on PyPI https://github.com/msabramo/requests-unixsocket/actions/workflows/ci-cd.yml/badge.svg?event=push

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

Download files

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

Source Distribution

requests_unixsocket-0.4.0.tar.gz (23.4 kB view details)

Uploaded Source

Built Distribution

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

requests_unixsocket-0.4.0-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file requests_unixsocket-0.4.0.tar.gz.

File metadata

  • Download URL: requests_unixsocket-0.4.0.tar.gz
  • Upload date:
  • Size: 23.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for requests_unixsocket-0.4.0.tar.gz
Algorithm Hash digest
SHA256 86e721b58c8812914c63788d7563355906e9ae5453b4b8a41d380025d4c4bb72
MD5 366c39a025a84976061859e2d9bc829e
BLAKE2b-256 f16fa1c337cd79b02e44c0b31ace4d7b111bb1e79e95fd6a3a3c1f267661fa28

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket-0.4.0.tar.gz:

Publisher: ci-cd.yml on msabramo/requests-unixsocket

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_unixsocket-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for requests_unixsocket-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2ff2def6c6752ff3f200f1f28de6d463e8ba8808354f40141d99157ebe557b8f
MD5 ce42f8a21815c499a0832cd687a77b76
BLAKE2b-256 137829036028ce7db6ab935f39bc86c10edfd6ba50e4f006a02a9850dc37fc5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket-0.4.0-py3-none-any.whl:

Publisher: ci-cd.yml on msabramo/requests-unixsocket

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page