Skip to main content

Aiohttp transport for Spyne RPC library

Project description

Build status

About

Aiohttp transport for Spyne RPC library.

Requirements:

  • Python >= 3.7

  • Aiohttp >= 3.7.0

  • Spyne >= 2.13.16

Spyne alpha versions should also work.

Installation

Just run pip install aiohttp-spyne :)

Examples

  • Test server: python -m examples.hello_world

  • Threaded test server: python -m examples.hello_world_threads

  • Test client: python -m examples.test_client

Usage

First, initialize your spyne application as normal. Here’s an example for a simple SOAP service (See examples for a more complete service setup).

spyne_app = spyne.Application(
    [HelloWorldService],
    tns='aiohttp_spyne.examples.hello',
    in_protocol=Soap11(validator='lxml'),
    out_protocol=Soap11())

Next, wrap your Spyne application with AIOSpyne. Note that you can run your application entrypoints in a thread by setting the threads parameter. If you want to keep your entrypoints running in the same thread as the main application, just leave this None. If you DO run your entrypoints in threads, be aware that some signals sent by spyne will also be run in threads, and be extra careful of using your main loop!

handler = AIOSpyne(spyne_app, threads=25)

Lastly, make an aiohttp application as usual, and just bind GET and POST entrypoints from AIOSpyne to wherever. Note that both paths need to be the same.

With GET, if the request address ends ?wsdl or .wsdl, a WSDL schema is returned in a response. Otherwise requests are redirected to spynes RPC handler.

app = web.Application()
app.router.add_get('/{tail:.*}', handler.get)
app.router.add_post('/{tail:.*}', handler.post)
web.run_app(app, port=8080)

Chunked encoding

If you offer large resultsets in your soap entrypoints, and yield the results properly, you may want to enable chunked encoding. This way the aiohttp server can stream your results and reduce memory usage.

handler = AIOSpyne(spyne_app, chunked=True)

WSDL caching

By default, aiohttp-spyne will cache WSDL documents generated by spyne. This makes it cheap to offer the WSDL documents to any clients. Sometimes you may need to disable this caching however (eg. when you have requests coming from multiple source urls, and want to automatically generate the port address for each one). This can be done by settings the cache_wsdl option as False.

handler = AIOSpyne(spyne_app, cache_wsdl=False)

Testing and formatting

  1. pytest

  2. mypy -p aiohttp_spyne

  3. flake8

  4. black aiohttp_spyne/

License

LGPL-2.1 – Please see LICENSE for details.

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

aiohttp-spyne-1.3.0.tar.gz (15.5 kB view details)

Uploaded Source

Built Distribution

aiohttp_spyne-1.3.0-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file aiohttp-spyne-1.3.0.tar.gz.

File metadata

  • Download URL: aiohttp-spyne-1.3.0.tar.gz
  • Upload date:
  • Size: 15.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for aiohttp-spyne-1.3.0.tar.gz
Algorithm Hash digest
SHA256 d4ac0368f7372e1ee83327a40a78c3b77a4ef2034b8c6b7bb81f6213559b22f9
MD5 32df169beb6be54e8375f94a20734e8f
BLAKE2b-256 fa2e50bb4352c9a946026441686eecadffb781a96af1df1bce3de47ef60efcaa

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp_spyne-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: aiohttp_spyne-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for aiohttp_spyne-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0d754d69b6563669fa8ff5d7eff45499d946ee58d8ef7ee4435cd797c58b09d7
MD5 eb108fa7acfde7711f1d771f57c9bbb1
BLAKE2b-256 b5ec27118a1e21ba214e21ebc46fbbeaa50ec453e9a2a3b80314806109fe77b5

See more details on using hashes here.

Provenance

Supported by

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