Skip to main content

Get an api up and running quickly

Project description

Endpoints

Endpoints is a lightweight REST api framework written in python that supports both WSGI and ASGI. Endpoints has been used in multiple production systems that handle millions of requests daily.

Getting Started

Installation

First, install endpoints with the following command.

$ pip install endpoints

If you want the latest and greatest you can also install from source:

$ pip install -U "git+https://github.com/jaymon/endpoints#egg=endpoints"

Create a Controller Module

Create a controller file with the following command:

$ touch controllers.py

Add the following code to the controllers.py file:

from endpoints import Controller

class Default(Controller):
  """The special class `Default` handles / requests"""
  async def GET(self):
    return "Default handler"

  async def POST(self, **kwargs):
    return 'hello {}'.format(kwargs['name'])

class Foo(Controller):
  """This class handles `/foo` requests"""
  async def GET(self):
    return "Foo handler"

Start a WSGI Server

Now that you have your controllers.py, let's use the built-in WSGI server to serve them, we'll set our controllers.py file as the controller prefix so Endpoints will know where to find the Controller classes we just defined:

$ endpoints --prefix=controllers --host=localhost:8000

Start an ASGI Server

Install Daphne:

$ pip install -U daphne

And start it:

$ ENDPOINTS_PREFIX=controllers daphne -b localhost -p 8000 -v 3 endpoints.interface.asgi:Application.factory

Test it out

Using curl:

$ curl http://localhost:8000
"Default handler"
$ curl http://localhost:8000/foo
"Foo handler"
$ curl http://localhost:8000/ -d "name=Awesome you"
"hello Awesome you"

That's it!

In the first request (/), the controllers module was accessed, then the Default class, and then the GET method.

In the second request (/foo), the controllers module was accessed, then the Foo class as specified in the path of the url, and then the GET method.

Finally, in the last request, the controllers module was accessed, then the Default class, and finally the POST method with the passed in argument.

How does it work?

Endpoints translates requests to python modules without any configuration.

It uses the following convention.

METHOD /module/class/args?kwargs

Endpoints will use the prefix module you set as a reference point to find the correct submodule using the path specified by the request.

Requests are translated from the left bit to the right bit of the path. So for the path /foo/bar/che/baz, endpoints would first check for the foo module, then the foo.bar module, then the foo.bar.che module, etc. until it fails to find a valid module.

Once the module is found, endpoints will then attempt to find the class with the remaining path bits. If no matching class is found then a class named Default will be used if it exists.

This makes it easy to bundle your controllers into a controllers package/module.

Learn more about Endpoints

The docs contain more information about how Endpoints works and what can be done with it.

Project details


Release history Release notifications | RSS feed

This version

7.3.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

endpoints-7.3.1.tar.gz (69.8 kB view details)

Uploaded Source

Built Distribution

endpoints-7.3.1-py3-none-any.whl (76.9 kB view details)

Uploaded Python 3

File details

Details for the file endpoints-7.3.1.tar.gz.

File metadata

  • Download URL: endpoints-7.3.1.tar.gz
  • Upload date:
  • Size: 69.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for endpoints-7.3.1.tar.gz
Algorithm Hash digest
SHA256 6db0cf8173ea12f690be3809abaa09669c03d52f503dfdf38131f48c03472c75
MD5 c6fe613efd8968fbf5779cd4a87dcd48
BLAKE2b-256 6536df0d7cd2bc330e886b7f6491b35a7fb7386c595b03aa93719d7a007ca62c

See more details on using hashes here.

File details

Details for the file endpoints-7.3.1-py3-none-any.whl.

File metadata

  • Download URL: endpoints-7.3.1-py3-none-any.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for endpoints-7.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1a055ac03e71a301e6c7be83bb675e73f9d3d15b895b45e360c90ecb42887d92
MD5 81998b915063bdc7a83fcd2602bffd24
BLAKE2b-256 f81e0bded541f8415a321b9ba0b9bff3169a7c620c0adcd71aa6cc44d38e673c

See more details on using hashes here.

Supported by

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