Awesome
bottlerest
Build Simple REST API on Bottle and SqlAlchemy!
Dependency:
- Bottle
pip install bottle
- SqlAlchemy
pip install sqlalchemy
Example: Basic Rest API
import bottle
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String
from bottlerest import RestApiApp
# Can also be constucted as api = RestApiApp(connection, app)
# where connection can be either a connection string or a sqlalchemy engine
# object; app is a bottle app (bottle.Bottle instance)
# Without passing app parameter it will use the default app in bottle
api = RestApiApp('sqlite://')
Base = declarative_base()
@api.rest('/api/test')
class NTest(Base):
__tablename__ = 'test'
key = Column(Integer, primary_key=True)
value = Column(Integer)
string_attr = Column(String(20))
if __name__ == '__main__':
Base.metadata.create_all(api.connection)
# or bottle.run(app, ...) if app is passed to construct RestApiApp
bottle.run(host='0.0.0.0', port=8080)
The restapi decorator shown in the above example will add 5 routes to the bottle app:
-
GET '/api/test/<pkey>'* Get element by primary key.
-
*POST '/api/test' Create an element, will return the primary key of the created element.
-
PUT'/api/test/<pkey>' Modify element by primary key
-
DELETE'/api/test/<pkey>' Delete element by primary key
-
GET '/api/test?attr=value1&..' search by specific attribute. You can search by prefix by using GET '/api/test?attr$prefix=value1&..'
Usage:
- Run above file:
python rest_main.py
- Create a a Test object:
$ curl localhost:8080/api/test --data '{"key": 1, "value":2, "string_attr": "helloworld"}'
{"key": 1}
- Get that Test object using primary key.
$ curl localhost:8080/api/test/1
{"string_attr": "helloworld", "value": 2, "key": 1}
- Modify test object.
curl localhost:8080/api/test/1 --data '{"value":3 }' -X PUT
{"modified": 1}
The api returns the number of object modified.
- Searching:
$ curl localhost:808?string_attr-prefix=h
{"result": [{"string_attr": "helloworld", "value": 3, "key": 1}]}
$ curl localhost:8080/api/test?value=3
{"result": [{"string_attr": "helloworld", "value": 3, "key": 1}]}
- Deleting: Api returns number of items deleted.
$ curl localhost:8080/api/test/1 -X DELETE
{"deleted": 1}