Skip to content
/ nuvole Public

Simple wrapper of Python tornado web framework

License

Notifications You must be signed in to change notification settings

crogeo/nuvole

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nuvole

GitHub license

Nuvole is a simple wrapper of Python tornado web framework - crogeo.org

Installation

  • From sources
git clone https://github.com/crogeo/nuvole.git
cd nuvole
pip install .
  • From PyPi
pip install nuvole

Documentation

  • Usage
from nuvole import Server, Service


class MyService(Service):

    PATH = r'/page/*'

    def get(self):
        self.write('Hello World')


if __name__ == '__main__':
    server = Server([MyService, ])
    server.run('localhost', 8080)

License

Crogeo nuvole is MIT licensed.

About

Simple wrapper of Python tornado web framework

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages