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.50.tar.gz
(31.0 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.50.tar.gz.
File metadata
- Download URL: neoclient-0.1.50.tar.gz
- Upload date:
- Size: 31.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.12 Linux/5.15.0-78-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dca042049f7acfd5232b147675d6516a69528c549cc79d43de10c5c65cafb9d
|
|
| MD5 |
2513c7e834c619e945024caaaafe2eeb
|
|
| BLAKE2b-256 |
04255362032e7f4e2ee664dff6c7d88d5c512c632a5a13d445181bf75dba350f
|
File details
Details for the file neoclient-0.1.50-py3-none-any.whl.
File metadata
- Download URL: neoclient-0.1.50-py3-none-any.whl
- Upload date:
- Size: 42.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.12 Linux/5.15.0-78-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15d7da519c657e07d6d5ba9c42762bf37a11d7538ae59425219ce34397687ab2
|
|
| MD5 |
7c3208b51305826a71c0a33647770f41
|
|
| BLAKE2b-256 |
ca5f7d2ada1f2a4be572628e8107c3899cfe15882961b29db79a54ae2de95f1c
|