Skip to main content

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


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 hashes)

Uploaded Source

Built Distribution

neoclient-0.1.55-py3-none-any.whl (44.2 kB view hashes)

Uploaded Python 3

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