Planet Python RSS
213 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Introduction to Python FTP

Link: https://stackabuse.com/introduction-to-python-ftp/

Introduction
In this tutorial, we will explore how to use FTP with Python to send and receive files from a server over TCP/IP connections.
To make things easier and more abstract, we will be using Pyt
Paolo Melchiorre: How to use 🇺 uWSGI with 🐍 Python 3.7 in 👥 Ubuntu 18.x

Link: https://www.paulox.net/2019/03/13/how-to-use-uwsgi-with-python-3-7-in-ubuntu-18-x/

Step-by-step how-to guide to use uWSGI with Python 3.7 for Ubuntu 18.04 and 18.10.
eRambler: Using Pipfile in Binder

Link: https://erambler.co.uk/blog/pipfile-binder-two-lines/





Photo by Sear Greyson on Unsplash



I recently attended a workshop, organised by the excellent team of the Turing Way project, on a tool called BinderHub. BinderHub, along w
Matt Layman: Python Testing 101 with pytest

Link: https://www.mattlayman.com/blog/2019/python-testing-101-with-pytest/

For Python Frederick’s March presentation,
I presented on Python testing.
In the presentation,
I used pytest to show how quickly
you can get started
with testing your code.
We covered the what, why, a
codingdirectional: Count the number of audiences around you in the theater

Link: http://codingdirectional.info/2019/03/15/count-the-number-of-audiences-around-you-in-the-theater/

Hello and welcome back. In this chapter, we are going to create the python method which will count the number of audiences around you in the theater based on the column and the row you are sitting on
gamingdirectional: Online Game Manual and Sound On Off

Link: http://gamingdirectional.com/blog/2019/03/15/online-game-manual-and-sound-on-off/

Hello and in this chapter, we will wrap up the features on the main manual page so we can move on to the last feature on the game page which is the power bar display. We will edit two files to finish
leftmouseclickin: Plot the technical data for a stock

Link: http://leftmouseclickin.com/2019/03/15/plot-the-technical-data-for-a-stock/


Our Own Score




Welcome back, in this chapter we will continue to develop our stock and Forex application by plotting the technical data for any stock which has been selected from the stock symbol
The Digital Cat: Clean Architectures in Python: the book

Link: http://www.thedigitalcatonline.com/blog/2018/12/20/cabook/

UPDATE: a Russian translation is in the works!
UPDATE: version 1.0.7 is out, the book reached 7,400 downloads. Thanks!
I'm excited to announce that the success of the post on clean architectures encou
Low Kian Seong: DevOps for corporate ?

Link: https://blog.lowkster.com/2019/03/devops-for-corporate.html

Implementing a DevOps strategy with your army of one team is most of the the time easy. It's just dependent on the sweat on your brow. A matter of experimentation, glue the pieces together push it out
Guido van Rossum: Why operators are useful

Link: http://neopythonic.blogspot.com/2019/03/why-operators-are-useful.html

This is something I posted on python-ideas, but I think it's interesting to a wider audience.There's been a lot of discussion recently about an operator to merge two dicts.It prompted me to think abou
Techiediaries - Django: Django Authentication — Login, Logout and Password Change/Reset

Link: https://www.techiediaries.com/django-authentication/

In this tutorial, you'll learn how to easily add a complete authentication system to your Django application with login, logout and password change and reset functionalities.
We'll be using Django wit
leftmouseclickin: Plot the sector performance graph

Link: http://leftmouseclickin.com/2019/03/16/plot-the-sector-performance-graph/


Our Own Score




In this chapter, we will continue to develop our Forex/ Stock application by introducing another button which after it has been clicked will call a method to make an API call to ret
gamingdirectional: The final adjustment of the main menu page buttons

Link: http://gamingdirectional.com/blog/2019/03/16/the-final-adjustment-of-the-main-menu-page-buttons/

In this chapter, we will make a final adjustment of the main menu page buttons so they will be positioned nicely on the game scene. We need to edit three files in this chapter. We will adjust the butt
codingdirectional: Remove exclamation mark from a string with python

Link: http://codingdirectional.info/2019/03/16/remove-exclamation-mark-from-a-string-with-python/

In this article, we will create a simple python program which will remove the exclamation mark from a string based on the second parameter which specifies how many exclamation marks should be removed
codingdirectional: Return a reverse order list for a number with python

Link: http://codingdirectional.info/2019/03/16/return-a-reverse-order-list-for-a-number-with-python/

Hello people, this will be the last article which we will solve a simple question in CodeWars, in the next chapter we will start our next python project. In this chapter, we will solve one of the ques
codingdirectional: Create a new Python Project with Visual Studio 2019 RC IDE

Link: http://codingdirectional.info/2019/03/16/create-a-new-python-project-with-visual-studio-2019-rc-ide/

Hello people, after a while of rest I have started a new python project today which I believe will take almost a month to complete. I will update the progress of this project at least a few times per
Nick Coghlan: What does "x = a + b" mean?

Link: https://www.curiousefficiency.org/posts/2019/03/what-does-x-equals-a-plus-b-mean.html


Making sense of "x = a + b"

Shorthand notations and shared context
The original shared context: Algebra
The corresponding Python context: Numbers
Another mathematical context: Matrix algebra
The cor