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.1.tar.gz (44.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_unixsocket2-1.0.1-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for requests_unixsocket2-1.0.1.tar.gz
Algorithm Hash digest
SHA256 87953038ae42befb6efbdf504d6dda2554a0b0d13b65e42f7319793b5527a303
MD5 1fd2d89d433c68a78ee52cfec2f39581
BLAKE2b-256 1204e5c07a329a0087f8a342231b6e054d83279c17ccc81da5aa18071c8ea75e

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket2-1.0.1.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.1-py3-none-any.whl.

File metadata

File hashes

Hashes for requests_unixsocket2-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bdb2ba5bcd9d2f3c1dd1e099e5dba8e1d50b9eeef7985edd72f957da22304b92
MD5 b68e820fd16d969b084417683b1faae0
BLAKE2b-256 191819221b6242e8135abef8f5859d8ea53e69c503042e6639852fa2865825e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for requests_unixsocket2-1.0.1-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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page