I use open source to help people evolve, I take pleasure in seeing people evolve

New web framework asynchronous to Python 3


I started a new project with the name nacho, asynchronous web framework for Python 3.

Nacho Python3 Web Framework

Our goals

  • It was designed to work on Python 3.x
  • Some of syntax were inspired on Tornado's syntax
  • Tornado is the default server, but Eventlet is stable as well
  • Templates are done by Jinja2
  • HTML5 as the big-main-thing
  • Work friendly with NoSQL (otherwise we should stop talking about them)
  • Handle asynchronous requests properly

Example

class MainHandler(ApplicationController):
    def get(self):
        data = {'title': 'testando lero lero'}
        self.render("home.html", **data)


r = Routers([(r"/", MainHandler),])
Read more ⟶

Open Source Contributions - August 2013


August 2013 saw 20 repositories contribute 23 events, including 19 pushes and 2 issues, showcasing significant development activity in the open-source community.
Read more ⟶

Open Source Contributions - July 2013


July 2013 saw 17 repositories, 22 issues opened, and 13 pushes, showcasing significant activity and collaboration in the development community.
Read more ⟶

Open Source Contributions - June 2013


June 2013 saw significant contributions with 12 repositories and 15 total events, including 11 pushes and 4 issues opened, showcasing ongoing development and community engagement.
Read more ⟶