JSON as REST API
Project description
Jason Server
Get a full fake REST API
Table of contents
Getting started
Install Jason Server
pip3 install jason-server
Create a db.json file with some data
{
"articles": [
{ "id": 1, "title": "jason-server", "author": "1" },
{ "id": 2, "title": "jason-routes", "author": "1" }
],
"authors": [
{ "id": 1, "name": "bob"}
]
}
Start JSON Server
jason-server watch db.json
Now if you go to http://localhost:8080/articles, you'll get
{ "id": 1, "title": "jason-server", "author": "1" },
{ "id": 2, "title": "jason-routes", "author": "1" }
Routes
Singular Routes
GET /authors
Plural Routes
GET /authors
GET /authors/1
Filter
GET /articles?title=title&author=eminem
Pagination
Use _page and _limit to paginate data.
In the Link header you'll get first, prev, next and last links.
GET /articles?_page=2
GET /articles?_page=3&_limit=15
Sorting
Use _sort and _order (defaults order: asccendant)
GET /persons?_sort=age
GET /persons?_sort=name&_order=desc
Database
GET /db
Extras
Alternative Host
You can start JSON Server on other host with the --host flag:
$ json-server --host "0.0.0.0" watch db.json
Default: localhost
Alternative Port
You can start JSON Server on other ports with the --port flag:
$ json-server --port 8100 watch db.json
Default: 8080
CLI Usage
Usage: jason-server [OPTIONS] COMMAND [ARGS]...
Options:
-h, --host TEXT Host adress
-p, --port INTEGER Port
-q, --quiet
--version Show the version and exit.
--help Show this message and exit.
Commands:
watch Run your database as REST Api
Credits
License
The code is available under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jason-server-0.8.1.tar.gz.
File metadata
- Download URL: jason-server-0.8.1.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7c5604601e1867316618fab3980f7c7cb29ebb71c4e19a9a78ee9c31866f437
|
|
| MD5 |
0be207e72ac1ae66d101f561ca0d02fd
|
|
| BLAKE2b-256 |
0bb1560544eb5c43275c1b5375cbc5920d1aef2f003fafa608decae08f50e931
|
File details
Details for the file jason_server-0.8.1-py2.py3-none-any.whl.
File metadata
- Download URL: jason_server-0.8.1-py2.py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f8219d4f5507af5a0d735eb2ffb94daac83b332cee111ffb215fc6036c0e821
|
|
| MD5 |
34de5401b72365891ba06351fb60bb42
|
|
| BLAKE2b-256 |
020e15d362fc142b08fb1a5874c74f0f83ed22bd521f0302dee3e48f29c5a0a8
|