Web

Episode 21 – Sanic – The Async Python Web Framework

Python has many remarkable web frameworks to choose from. Sanic is another excellent web framework and one of the first to support async programming. Sanic is built to be able to build fast and run fast. In this episode, we talk to Adam Hopkins, one of the maintainers of the Sanic web framework. We discuss the following […]

Episode 21 – Sanic – The Async Python Web Framework Read More »

An Intro to Python Web Frameworks (Video)

Learn about some of the many Python web frameworks that are available to you in this video. Web frameworks mentioned in this video Django – https://www.djangoproject.com/ Flask – https://flask.palletsprojects.com/en/2.1.x/ Pyramid – https://trypyramid.com/ FastAPI – https://fastapi.tiangolo.com/ CherryPy – https://docs.cherrypy.dev/en/latest/ TurboGears – https://turbogears.org/ Web2py – http://www.web2py.com/ Bottle – https://bottlepy.org/docs/dev/ Python Content Management Systems Plone – https://plone.org/ Django

An Intro to Python Web Frameworks (Video) Read More »

A new Python Kickstarter Project: Advanced Web Development, featuring Django 1.6

Last night I received an email about a new Python-related Kickstarter. The Real Python crew added a new author to write a book entirely about Django 1.6. This is a subject that I keep meaning to get into and haven’t had the opportunity to do so. Hopefully by backing this project, I’ll finally learn Django.

A new Python Kickstarter Project: Advanced Web Development, featuring Django 1.6 Read More »

Bottle – Adding SQLAlchemy to the Todo List Web App

In this article we will be taking the code from the previous article on Bottle and changing it such that it uses SQLAlchemy instead of just normal SQLite code. This will require you to download the bottle-sqlalchemy package from PyPI. You can also install it using “pip install bottle-sqlalchemy”, assuming you have pip installed. You

Bottle – Adding SQLAlchemy to the Todo List Web App Read More »

Bottle – Creating a Python Todo List Web App

Python has lots of web frameworks. Bottle is one of them and is considered a WSGI Framework. It’s also sometimes called a “micro-framework”, probably because Bottle consists of just one Python file and has no dependencies besides Python itself. I’ve been trying to learn it and I was using the official Todo-list tutorial on their

Bottle – Creating a Python Todo List Web App Read More »