Server implmentation of services for python
Project description
servc-python
Serv-C implmentation for Python. Documentation can be found here
Example
Here is the most simple example of use, starting a server to handle requests at the route my-route;
from typing import Any
from servc.server import start_server
from servc.svc.com.worker.types import RESOLVER_CONTEXT, RESOLVER_RETURN_TYPE
def inputProcessor(
messageId: str,
payload: Any,
context: RESOLVER_CONTEXT,
) -> RESOLVER_RETURN_TYPE:
return True
# the method 'methodA' will be resolved by inputProcessor
start_server(
resolver={
"methodA": inputProcessor
}
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
servc-1.11.3.tar.gz
(27.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
servc-1.11.3-py3-none-any.whl
(32.0 kB
view details)
File details
Details for the file servc-1.11.3.tar.gz.
File metadata
- Download URL: servc-1.11.3.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca4ec9f7ebe2cdc312895d1495f261d67653c51227b540ea703aaff45035e345
|
|
| MD5 |
d579d7876b8f8d49113242fba120633e
|
|
| BLAKE2b-256 |
b37238bd96e237eb00512b9c095671ebde694a78dc18e0d42297ecf492e913d8
|
File details
Details for the file servc-1.11.3-py3-none-any.whl.
File metadata
- Download URL: servc-1.11.3-py3-none-any.whl
- Upload date:
- Size: 32.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5017a23ba5afdd5fb79f66f7fd1b7a621bcf0d6772546b79dd402475ced5a0be
|
|
| MD5 |
5eba7e938c5bae4b956da7b5c23197bf
|
|
| BLAKE2b-256 |
c8b766ac02875b0c523952d553d76ce3859e5b7ef9f466cb5a5332e8b2b246f5
|