Skip to content

Commit 62dfbd6

Browse files
committed
new web framework and learning python resources
1 parent d27c371 commit 62dfbd6

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

content/pages/01-introduction/08-best-python-resources.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,10 @@ topics.
138138
[The Elements of Python Style](https://github.com/amontalenti/elements-of-python-style)
139139
to know the Python community standards.
140140

141+
* [Essential Reads for Any Python Programmer](http://notesbyanerd.com/2017/12/29/essential-reads-for-any-python-programmer/)
142+
is a great collection of advice for developers coming to Python from another
143+
programming language ecosystem such as Java.
144+
141145
* [How to Develop Quality Python Code](https://districtdatalabs.silvrback.com/how-to-develop-quality-python-code)
142146
is a good read to begin learning about development environments,
143147
application dependencies and project structure.

content/pages/04-web-development/10-other-web-frameworks.markdown

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Flask with URL routes defined as decorators upon view functions. The
6060
[Peewee ORM](https://peewee.readthedocs.org/en/latest/) is used instead of
6161
the more common SQLAlchemy ORM.
6262

63+
6364
## Ray
6465
[Ray](https://rayframework.github.io/site/)
6566
is a framework for building RESTful APIs, similar to [Falcon](/falcon.html).
@@ -68,7 +69,14 @@ provides some initial code to get started with creating endpoints, adding
6869
authentication and protecting against malicious clients.
6970

7071

71-
## Other web framework resources
72+
## Vibora
73+
* [Vibora](https://vibora.io/) is an asynchronous model framework similar to
74+
[Sanic](/sanic.html) that was inspired by [Flask](/flask.html)'s syntax.
75+
However, the framework's author rewrote many parts like the template engine
76+
to maximize performance.
77+
78+
79+
### Other web framework resources
7280
* This [roundup of 14 minimal Python frameworks](http://codecondo.com/14-minimal-web-frameworks-for-python/)
7381
contains both familiar and less known Python libraries.
7482

0 commit comments

Comments
 (0)