Skip to main content

HTTPX Client for ThriftPy2

Project description

This package is provides an alternative HTTP client for ThriftPy2 which uses HTTPX instead of the builtin http.client and http.server libraries. This allows the developer to use more complex features like authentication, fine grained timeouts, and asyncio.

Examples:

Setup (Borrowed from ThriftPy2 Docs):

# pingpong.thrift
service PingPong {
    string ping(),
}
import thriftpy2
from thriftpy2.http import make_server

pingpong_thrift = thriftpy2.load(
    "pingpong.thrift",
    module_name="pingpong_thrift",
)

class Dispatcher(object):
    def ping(self):
        return "pong"

server = make_server(
    service=pingpong_thrift.PingPong,
    handler=Dispatcher(),
    host='127.0.0.1',
    port=6000,
)
server.serve()

Async Usage:

from thriftpy2_httpx_client import make_aio_client

client = await make_aio_client(pingpong_thrift, url='http://localhost:6000')
print(await client.ping())  # prints 'pong'

Sync Usage:

from thriftpy2_httpx_client import make_sync_client

client = make_sync_client(pingpong_thrift, url='http://localhost:6000')
print(client.ping())  # prints 'pong'

Additional keyword arguments can be passed to the client to configure the internal httpx.AsyncClient() and httpx.Client() instances. For example, you can enable Kerberos authentication using httpx-gssapi:

from httpx_gssapi import HTTPSPNEGOAuth
from thriftpy2_httpx_client import make_aio_client

client = await make_aio_client(
    pingpong_thrift,
    url='http://localhost:6000',
    auth=HTTPSPNEGOAuth(),
)
print(await client.ping())  # prints 'pong'

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

thriftpy2_httpx_client-0.5.tar.gz (28.5 kB view details)

Uploaded Source

Built Distribution

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

thriftpy2_httpx_client-0.5-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file thriftpy2_httpx_client-0.5.tar.gz.

File metadata

  • Download URL: thriftpy2_httpx_client-0.5.tar.gz
  • Upload date:
  • Size: 28.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for thriftpy2_httpx_client-0.5.tar.gz
Algorithm Hash digest
SHA256 91a892d6f5a5796f4ff2e72bab4e2bd812d18c92460d9d772c9154c2ecbbf413
MD5 fba2a8e7d498f5abafbe788b7515c8dc
BLAKE2b-256 01d34bb2c0d1eb83b11edba9161292a2b9c9207aeac073a51b09cc4b6c72fad9

See more details on using hashes here.

File details

Details for the file thriftpy2_httpx_client-0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for thriftpy2_httpx_client-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 1a44ba4c8a6ef55ad65fe413fab0dfb3859ca20a2740d5d8936cfbcfdfd02165
MD5 e4411181139e58ecf0c60ffc958fa98b
BLAKE2b-256 78912316c3182663746eaefbe5b41fbc047302b0705b037fce22653037494bf4

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