Fast API Clients for Python
Project description
neoclient
🚀 Fast API Clients for Python
Installation
pip install neoclient
Introduction
The simplest neoclient file might look like this:
from neoclient import get
@get("https://httpbin.org/ip")
def ip():
...
>>> ip()
{'origin': '1.2.3.4'}
However, it's almost always better to create a NeoClient instance:
from neoclient import NeoClient
client = NeoClient("https://httpbin.org/")
@client.get("/ip")
def ip():
...
>>> ip()
{'origin': '1.2.3.4'}
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
neoclient-0.1.55.tar.gz
(31.9 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
File details
Details for the file neoclient-0.1.55.tar.gz.
File metadata
- Download URL: neoclient-0.1.55.tar.gz
- Upload date:
- Size: 31.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.12 Linux/5.15.0-79-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f629c59d85bc8aae6f35a0bfa3358d8ae14a276a72b12d57bd49bc36ec1e663f
|
|
| MD5 |
491249c4525ce6740de3006f83e97ff6
|
|
| BLAKE2b-256 |
3f9550e210d40a26485343e7ca5a78b73d90b0bdf6e342ee26d4a761501e7b57
|
File details
Details for the file neoclient-0.1.55-py3-none-any.whl.
File metadata
- Download URL: neoclient-0.1.55-py3-none-any.whl
- Upload date:
- Size: 44.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.12 Linux/5.15.0-79-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82906a2413f2dbb05401109937ac85b44a4d26f482381502c13cd725be49030c
|
|
| MD5 |
c224fc06ef24ea6b7b0032b746ad1bcc
|
|
| BLAKE2b-256 |
5d7ec39ca572f110d5310304fdba8963ea17dd035b05cf8b7e36961880abf06c
|