https://github.com/arskom/jmapd
https://github.com/arskom/jmapd
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arskom/jmapd
- Owner: arskom
- License: bsd-3-clause
- Created: 2020-01-10T05:15:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-10T15:36:26.000Z (over 5 years ago)
- Last Synced: 2024-04-26T14:45:23.419Z (over 1 year ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jmapd
A Pure-python server implementation for JMAP (https://jmap.io).
https://github.com/arskom/jmapd
To get started:
$ virtualenv venv
$ source venv/bin/activate
$ python setup.py developTo run the daemon:
$ source venv/bin/activate
$ jmapdYou can use ``jmapd --autoreload`` to have code changes reflect instantly.
The server listens on TCP4:localhost:8100 by default. You may need to start it
twice to let it generate a config file first.Once the server is up and running, run:
$ curl localhost:8100/jmap | python3 -m json.tool
to get the capabilities object.