Skip to main content

Torstack is a bundle for Tornado. it is designed to make getting started quick and easy, so you can focus on writing your app without needing to reinvent the wheel.

Project description

Travis CI Latest Version https://img.shields.io/pypi/wheel/torstack.svg https://img.shields.io/pypi/pyversions/torstack.svg https://img.shields.io/pypi/l/torstack.svg

Torstack is a bundle for Tornado. it is designed to make getting started quick and easy, so you can focus on writing your app without needing to reinvent the wheel.

Installing

Install and update using pip:

pip install -U torstack

A Simple Config

[application]
port : 8000
max_threads_num : 500
autoreload : True
settings = {
  'template_path' : 'website/template',
  'static_path' : 'website/static',
  'compress_response' : True,
  'cookie_secret' : '__cookie_secret__',
  'xsrf_cookies' : False,
  'login_url' : '/login',
  'debug' : True,
  'autoreload' : False
  }
log = {
  'log_level' : 'WARNING',
  'log_console' : False,
  'log_file' : True,
  'log_path' : '/tmp/logs',
  'when' : 'D',
  'interval' : '1',
  'backupCount' : '30'
  }

A Simple Example

import os
from tornado import gen
from torstack.server import TorStackServer
from torstack.handler.base import BaseHandler

class MainHandler(BaseHandler):
    def get(self):
        self.write("Hello, world")

def main():
    server = TorStackServer()
    server.config.load('./dev.conf')
    server.add_handlers([(r"/", MainHandler)])
    server.run()

if __name__ == "__main__":
    main()

Features

  • session

  • cookie

  • database

  • redis

  • taskmgr

  • websocket

  • smtp

  • elasticsearch

Python libraries

  • redis

  • aioredis

  • sqlalchemy

  • aiomysql

  • pymysql

  • asyncpg

  • motor

  • apscheduler

  • elasticsearch

  • psycopg2

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torstack-0.1.1.tar.gz (32.7 kB view details)

Uploaded Source

File details

Details for the file torstack-0.1.1.tar.gz.

File metadata

  • Download URL: torstack-0.1.1.tar.gz
  • Upload date:
  • Size: 32.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for torstack-0.1.1.tar.gz
Algorithm Hash digest
SHA256 21c7039c154b376518b56e37787a74a8279123ad1e6dcc2e17a3c16f9f615208
MD5 ddad4536116ba7e4431c37f2ba0ec7be
BLAKE2b-256 8e80616c1abca3212133c08b09f98550935ce4c45925484f3870115602becbc6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page