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.3.1a0.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.3.1a0-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file requests_unixsocket-0.3.1a0.tar.gz.

File metadata

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

File hashes

Hashes for requests_unixsocket-0.3.1a0.tar.gz
Algorithm Hash digest
SHA256 03216bb5c4e2c6120111cf73adcb8724a2c8808657bd1c1c38f5fbe1f401c005
MD5 92adb48910af724955d43666d70b276f
BLAKE2b-256 d655c7ff65550ca66505bb6c09773f5ec1f0cba7f50b1376ce76d62bf648cdc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket-0.3.1a0.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.3.1a0-py3-none-any.whl.

File metadata

File hashes

Hashes for requests_unixsocket-0.3.1a0-py3-none-any.whl
Algorithm Hash digest
SHA256 407faae046b173ce68284bf89a27d2db7e55750d83b8fa761df5b0204a1ea62f
MD5 570e1dec2ff95cd0eb0daaf082ee1f13
BLAKE2b-256 c5970a069b6fd659102773117de9e88d401b1d6fff7433d45b6abe2d4452f2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket-0.3.1a0-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