Skip to main content

Bottle.py wrapper to make python objects accessible via HTTP API

Project description

Nimrodel

A simple Bottle.py-wrapper to provide HTTP API access to any python object.

Requirements

Quick Start

Install with

pip install nimrodel

Create your API with

from nimrodel import API

myapi = API()

You can pass a port number with port=42, a path with path="api" and whether you want to serve on IPv4 (IPv6=False). You can also give the API object an existing bottle server (server=bottleobject), in which case your API will be served on the existing server. In this case, it is heavily recommended to pass a path variable to separate API from regular routing of your server.

Then make any class accessible with a decorator.

@myapi.apiclass("group")
class Group:

	def __init__(self,name,apipath,songs):
		# some stuff
		self.__apiname__ = apipath

Any instance of that class is now accessible via the combination of class path and its individual path. Now just decorate the methods. All its arguments can be passed via URI query arguments.

	@myapi.get("songs")
	def get_songs(self,member):
		return {"songs":[s["title"] for s in self.songs if member in s["performers"]]}

Now create an object and make sure it has an __apiname__ attribute:

e = Group("Exid","exid",exidsongs)

Then you can access its methods with simple HTTP calls:

HTTP GET http://localhost:1337/group/exid/songs?member=Junghwa

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

nimrodel-0.2.1.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

nimrodel-0.2.1-py3-none-any.whl (20.5 kB view details)

Uploaded Python 3

File details

Details for the file nimrodel-0.2.1.tar.gz.

File metadata

  • Download URL: nimrodel-0.2.1.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for nimrodel-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e966a10cda0a26e8232b9788ae4565fb28702790b22ff120599e94aba428de5b
MD5 65117e8de2ef8b58f391da8f39dc640f
BLAKE2b-256 196274a6bc1009fccc08665e1cbc63a6ac4b6a9c025f8857254f5a922ddd177f

See more details on using hashes here.

File details

Details for the file nimrodel-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: nimrodel-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 20.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for nimrodel-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ad3c132bbe5e48d94bffb3a60a6ab51e8f17067969592eafc668742c9ffb64a4
MD5 ee2c0cd639d356a1126ce0fc41e7cc34
BLAKE2b-256 c7406d63ad0a7ff4498af5999171f31d01a84b6b498043560bd8af98b6802c62

See more details on using hashes here.

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