Skip to content
/ Glass Public

Object Oriented web framework Inspired by Flask

Notifications You must be signed in to change notification settings

aep000/Glass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Glass

Object Oriented Python web framework made using sockets

Example Usage

from Glass import Server, Route
s = Server()

def firstRoute(request,response):
    print request.params
    response.body = "Hello World"
    return response

r =  Route("/",firstRoute)
s.add_route(r)
s.run()

About

Object Oriented web framework Inspired by Flask

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages