https://github.com/heavenshell/py-jokk
RESTful mock api server.
https://github.com/heavenshell/py-jokk
Last synced: 9 months ago
JSON representation
RESTful mock api server.
- Host: GitHub
- URL: https://github.com/heavenshell/py-jokk
- Owner: heavenshell
- License: other
- Created: 2013-01-20T11:25:39.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-06-17T14:12:40.000Z (about 10 years ago)
- Last Synced: 2025-10-11T22:29:21.498Z (9 months ago)
- Language: Python
- Homepage: https://jokk.readthedocs.org/en/latest/
- Size: 63.5 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
Jokk
====
RESTful mock api server.
`Jokk` is heavily inspiered by `EasyMock `_.
.. image:: https://travis-ci.org/heavenshell/py-jokk.png?branch=master
- `Repository `_
- `Documentation `_
Installation
------------
::
$ virtualenv --distribute jokk_sample
$ source jokk_sample/bin/activate
$ cd jokk_sample
$ pip install jokk
`Jokk` depends on `Werkzeug `_ using for WSGI Utility Library.
Usage
-----
1. Create `config.json` for configure settings such as routes, variables
2. Create `data` directory for serve response files
3. Put response file into `data` directory
4. Start Jokk server
::
$ jokk -c config.json
5. Access to jokk server client such as Web browser.
6. Jokk would return response file
Options
-------
See documantaion.
Contributing
------------
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create new Pull Request