Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Circle: Hosting Django app for free on Amazon (AWS) EC2 with Gunicorn and Nginx

Link: https://www.pythoncircle.com/post/697/hosting-django-app-for-free-on-amazon-aws-ec2-with-gunicorn-and-nginx/

Step by step guide on hosting Django application on AWS ec2 instance, How to host the Django app on AWS ec2 instance from scratch, Django on EC2, Django app hosting on AWS, Free hosting of Django App
Python Circle: How to setup Django app on EC2 instance (AWS) - Part 2

Link: https://www.pythoncircle.com/post/240/how-to-setup-django-app-on-ec2-instance-aws-part-2/

Step by step guide on hosting Django application on AWS ec2 instance, How to host the Django app on AWS ec2 instance from scratch, Django on EC2, Django app hosting on AWS, Free hosting of Django App
Python Circle: AWS EC2 Vs PythonAnyWhere for hosting Django application

Link: https://www.pythoncircle.com/post/698/aws-ec2-vs-pythonanywhere-for-hosting-django-application/

AWS EC2 Vs PythonAnyWhere for hosting Django application, hosting Django application for free on AWS EC2, Hosting Django application for free on PythonAnyWhere, comparing ec2 and pythonanywhere
John Cook: Solving Van der Pol equation with ivp_solve

Link: https://www.johndcook.com/blog/2019/12/22/van-der-pol/

Van der Pol’s differential equation is

The equation describes a system with nonlinear damping, the degree of damping given by μ. If μ = 0 the system is linear and undamped, but for positive μ the sys
IslandT: Create a python function which will merge, sort and remove duplicate values from lists

Link: https://kibiwebgeek.com/create-a-python-function-which-will-merge-sort-and-remove-duplicate-values-from-lists/

In this example, we will create a single python function that will accept unlimited lists of numbers and merges them into a single list that contains sorted values as well as no duplicated values. Thi
Chris Moffitt: Creating Interactive Dashboards from Jupyter Notebooks

Link: https://pbpython.com/interactive-dashboards.html


Introduction
I am pleased to have another guest post from Duarte O.Carmo. He wrote
series of
posts in July on report generation with Papermill
that were very well received. In this article, he will e
Catalin George Festila: Python 3.7.5 : Django admin shell by Grzegorz Tężycki.

Link: http://python-catalin.blogspot.com/2019/12/python-375-django-admin-shell-by.html

Today I tested another python package for Django named django-admin-shell.
This package created by Grzegorz Tężycki can be found on GitHub and come with the intro:
Django application can execute pytho
Catalin George Festila: Python 3.7.5 : About Django REST framework.

Link: http://python-catalin.blogspot.com/2019/12/python-375-about-django-rest-framework.html

First, let's activate my Python virtual environment:
[mythcat@desk django]$ source env/bin/activateI update my django version 3.0 up to 3.0.1.
(env) [mythcat@desk django]$ pip3 install --upgrade djang
Python Circle: Using a custom domain for Django app hosted on AWS EC2

Link: https://www.pythoncircle.com/post/699/using-a-custom-domain-for-django-app-hosted-on-aws-ec2/

Using a custom domain for Django app hosted on AWS EC2, GoDaddy DNS with EC2 instance, Django App on EC2 with GoDaddy DNS, Using domain name in Nginx and EC2, Elastic IP and DNS on EC2
Stein Magnus Jodal: 10 years of Mopidy

Link: https://jodal.no/2019/12/23/10y-of-mopidy/

Ten years ago today, on December 23, 2009, Mopidy was born. While chatting with
my friend and then-colleague Johannes Knutsen, we came up with the idea of
building an MPD server that could play music
Podcast.__init__: Python's Built In IDE Isn't Just Sitting IDLE

Link: https://www.pythonpodcast.com/idle-python-ide/

One of the first challenges that new programmers are faced with is figuring out what editing environment to use. For the past 20 years, Python has had an easy answer to that question in the form of ID
IslandT: Return an even number based on the Nth even number with python

Link: https://kibiwebgeek.com/return-an-even-number-based-on-the-nth-even-number-with-python/

In this example, we will create a python function that will return an even number based on the Nth even number given.
Let say when we enter one into that function, the function will return 0 because t
Stack Abuse: How to Get the Current Date and Time in Python

Link: https://stackabuse.com/how-to-get-the-current-date-and-time-in-python/

Introduction
Logging, saving records to the database, and accessing files are all common tasks a programmer works on. In each of those cases, date and time play an important role in preserving the mea
Quansight Labs Blog: metadsl PyData talk

Link: https://labs.quansight.org/blog/2019/12/metadsl-talk/

metadsl PyData talk
PyData NYC just ended and I thought it would be good to collect my thoughts on metadsl based on the many conversations I had there surrounding it. This is a rather long post, so if
Real Python: Python Dictionary Iteration: Advanced Tips & Tricks

Link: https://realpython.com/courses/python-dictionary-iteration/

Dictionaries are one of the most important and useful data structures in Python. They can help you solve a wide variety of programming problems. This course will take you on a deep dive into how to it