Skip to content

LoganLilypad/ExpressPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExpressPy

ExpressJS -- but for Python

Used to NodeJS's Express syntax and want a similar experience when using Python? Well look no further! The aim of this library is to provide a very similar feel and working to the popular NodeJS web framework Express but in the Python programming language.

Pull requests are encouraged and appreciated considering some of us have almost no idea what we are doing or have school/a job that makes this a little harder to develop fast

I think it's pretty coolio considering theres no other library that aims to do this or a library that makes web frameworks this easy


Python VS NodeJS examples

ExpressPY

@Router.get(route="/")
def test(req, res):
  print(req)

ExpressJS

app.get("/", (req, res) => {
  console.log(req)
});

Pretty similar and simple eh?

About

Its like NodeJS Express... but in Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages