Skip to main content

Python

Docker Explained: How To Containerize Python Web Applications
Tutorials Docker Python Ubuntu
Status: Deprecated> Status: Deprecated # This article is deprecated and no longer maintained. Reason> Reason # The techniques in this article are outdated and may no longer reflect Docker best-practices.
How To Serve Django Applications with uWSGI and Nginx on Ubuntu 14.04
Tutorials Deployment Django Nginx Python Python Frameworks Ubuntu
Introduction> Introduction # Django is a powerful web framework that can help you get your Python application or website off the ground. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web server is required.
Understanding List Comprehensions in Python 3
Tutorials Development Python
Introduction> Introduction # List comprehensions offer a succinct way to create lists based on existing lists. When using list comprehensions, lists can be built by leveraging any iterable, including strings and tuples.