https://github.com/rexlow/tornado-server-boilerplate
Python Tornado Server Boilerplate
https://github.com/rexlow/tornado-server-boilerplate
boilerplate python3 server tornado
Last synced: over 1 year ago
JSON representation
Python Tornado Server Boilerplate
- Host: GitHub
- URL: https://github.com/rexlow/tornado-server-boilerplate
- Owner: rexlow
- License: mit
- Created: 2019-01-19T15:26:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-01T23:18:18.000Z (about 5 years ago)
- Last Synced: 2025-01-23T11:23:52.904Z (over 1 year ago)
- Topics: boilerplate, python3, server, tornado
- Language: Python
- Size: 10.7 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# Tornado Server Boilerplate
This boilerplate is made to provide guide and accelerate setup time for developers that need an out-of-the-box server solution.
## Get Started
### Install Required Packages
```
pip3 install -r requirements.txt
```
### Run The Server ☄️🔥
```
python3 src/Server.py
```
## Stuff You Ought To Know
- Possible to create individual routes inside the `src/routes` folder.
- Request parameters from `GET` requests are automatically parsed.
- All request and response objects are treated as `JSON` object.
Have fun! 🌟