Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Moshe Zadka: Designing Interfaces

Link: https://orbifold.xyz/designing-interfaces.html

One of the items of feedback I got from the article about
interface immutability
is that it did not give any
concrete
feedback for how to design interfaces.
Given that they are forever,
it would be go
Matt Layman: Ripping Out Node.js - Building SaaS #30

Link: https://www.mattlayman.com/building-saas/ripping-out-nodejs/

In this episode, we removed Node.js from deployment. We had to finish off an issue with permissions first, but the deployment got simpler. Then we continued on the steps to make deployment do even les
"Menno's Musings": Python virtualenvs talk

Link: http://menno.io/posts/virtualenvs-talk/

I had the pleasure of giving a talk about Python virtual environments
at this week's Christchurch Python
meetup. It described the
problem that virtualenvs solve, some gotchas and the tools people use
Stack Abuse: Rounding Numbers in Python

Link: https://stackabuse.com/rounding-numbers-in-python/

Using a computer in order to do rather complex Math is one of the reasons this machine was originally developed. As long as integer numbers and additions, subtractions, and multiplications are exclusi
Catalin George Festila: Python 3.7.3 : Using the flask - part 012.

Link: http://python-catalin.blogspot.com/2019/08/python-373-using-flask-part-012.html

The goal of this tutorial step is to understand how the project can use the new features and implementation of the project.
Because in the last tutorial I used the flask_mail python module, now I will
Stack Abuse: Python Docstrings

Link: https://stackabuse.com/python-docstrings/

As already pointed out in a previous article titled Commenting Python Code you have learned that documentation is an essential, and a continuous step in the process of software development. The articl
ListenData: How to drop columns in Pandas Dataframe

Link: https://www.listendata.com/2019/06/pandas-drop-columns-from-dataframe.html

In this tutorial, we will cover how to drop or remove one or multiple columns from pandas dataframe.What is pandas in Python?pandas is a python package for data manipulation. It has several functions
Catalin George Festila: Python 3.7.3 : Using the flask - part 013.

Link: http://python-catalin.blogspot.com/2019/08/python-373-using-flask-part-013.html

Flask uses Jinga2 template engine.
The Jinga2 template engine uses the following delimiters for escaping from HTML.
We can use this:
{% ... %} for Statements
{{ ... }} for Expressions to print to the
Weekly Python StackOverflow Report: (cxc) stackoverflow python report

Link: http://python-weekly.blogspot.com/2019/08/cxc-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-08-10 21:33:55 GMTIs there a difference between `board[x, y]` and
TechBeamers Python: Python Map()

Link: https://www.techbeamers.com/python-map-function/

Python map() function applies another function on a given iterable (List/String/Dictionary, etc.) and returns map object. In simple words, it traverses the list, calls the function for each element, a
codingdirectional: Change python string to lower or upper case

Link: http://codingdirectional.info/2019/08/12/change-python-string-to-lower-or-upper-case/

In this article, we will create a function which will take in a string and then change the word within that string to either all uppercases if most of the words within that string are uppercase or all
Talk Python to Me: #225 Can subinterpreters free us from Python's GIL?

Link: https://talkpython.fm/episodes/show/225/can-subinterpreters-free-us-from-python-s-gil

Have you heard that Python is not good for writing concurrent asynchronous code? This is generally a misconception. But there is one class of parallel computing that Python is not good at: CPU bound w
Erik Marsja: Repeated Measures ANOVA in R and Python using afex & pingouin

Link: https://www.marsja.se/repeated-measures-anova-in-r-and-python-afex-pingouin/

In this post we will learn how to carry out repeated measures Analysis of Variance (ANOVA) in R and Python. To be specific, we will use the R package afex and the Python package pingouin to carry out
Podcast.__init__: Learning To Program In Python With CodeGrades

Link: https://www.pythonpodcast.com/codegrades-learn-to-program-episode-224/

With the increasing role of software in our world there has been an accompanying focus on teaching people to program. There are numerous approaches that have been attempted to achieve this goal with v