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.2.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

nimrodel-0.2.2-py3-none-any.whl (20.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: nimrodel-0.2.2.tar.gz
  • Upload date:
  • Size: 3.9 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.2.tar.gz
Algorithm Hash digest
SHA256 efde7d46b460d75a27c5d0ce62528451de5807db7bb8cfff8d6314dd9245966b
MD5 b8f28437b52254e6c24ad31fa09f888b
BLAKE2b-256 5e5baf0e60bae8b16d682da848454d823bf3f1a8f5e918d871de33034b0494d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nimrodel-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 20.7 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c299dae02cdf0f1293c4f20057890095f1ef1aa577a3a0d1d37ea8fb0d342dbe
MD5 813669046286ee86f9206334be6cc15a
BLAKE2b-256 83824839b2eab0b2b4b83c7efa3c5fd4a3b7491e11443924fa557842533f7ee1

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