An open API service indexing awesome lists of open source software.

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

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! 🌟