https://github.com/hurricanemark/pasterestapiserver
Python paste server servicing PUT/GET request with JSON responses. This is a simple demonstration of REST API programming using Python3.
https://github.com/hurricanemark/pasterestapiserver
Last synced: 3 months ago
JSON representation
Python paste server servicing PUT/GET request with JSON responses. This is a simple demonstration of REST API programming using Python3.
- Host: GitHub
- URL: https://github.com/hurricanemark/pasterestapiserver
- Owner: hurricanemark
- Created: 2018-01-05T21:55:23.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-03T07:59:48.000Z (over 7 years ago)
- Last Synced: 2025-03-22T04:13:08.675Z (7 months ago)
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pasteRestApiServer
Python paste server servicing PUT/GET request with JSON response/** Assume you have installed python3 python3-dev **/
#1. clone this repository:
git clone
git status
pip install bottle paste#2. edit conf.xml and change ip, port params to your environment params
#3. run it:
python3 pasteRestApiServer#4. If you use Chrome, chances are you have RESTclient add-on,
point the browser to e.g. http://127.0.0.1:7777/restapionmarkElse if yours is Firefox, search and allow add-on for RESTclient.
Then point the browser to http://[ip:port]/restapionmark or http://[ip:port]/actionet, voila!