Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCharm: PyCharm 2021.2 EAP 3

Link: http://feedproxy.google.com/~r/Pycharm/~3/sFcDamr0yuE/

PyCharm 2021.2 EAP 3 is available with some nice new features!
As usual, our main goal for the EAP is to give you a sense of what to expect in the upcoming PyCharm 2021.2 release. We are hoping to get
Łukasz Langa: Why does `Black` insist on reformatting my entire project?

Link: https://lukasz.langa.pl/36380f86-6d28-4a55-962e-91c2c959db7a/

Some thoughts about why Black recommends adopting it by reformatting your entire codebase in one go and refuses to do “region reformatting”. This started as a tweet but there’s a bit too much content
Python Bytes: #240 This is GitHub, your pilot speaking...

Link: https://pythonbytes.fm/episodes/show/240/this-is-github-your-pilot-speaking...

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=CQ1w2Xu6MT8' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
Talk Python to Me: #323: Best practices for Docker in production

Link: https://talkpython.fm/episodes/show/323/best-practices-for-docker-in-production

You've got your Python API or app running in a Docker container. Great! Are you ready to ship it to that hosted cluster service and head off to production? Not so fast. Have you considered how you'll
Real Python: The Real Python Podcast – Episode #67: Securing Your Python Software Supply Chain With Dustin Ingram

Link: https://realpython.com/podcasts/rpp/67/

How well do you know your software supply chain? When you PIP install a package, what steps can you take to minimize the risk of installing something malicious? This week on the show, we have Dustin I
Test and Code: 159: Python, pandas, and Twitter Analytics - Matt Harrison

Link: https://testandcode.com/159

When learning data science and machine learning techniques, you need to work on a data set.
Matt Harrison had a great idea: Why not use your own Twitter analytics data?
So, he did that with his own da
Weekly Python StackOverflow Report: (cclxxxii) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/07/cclxxxii-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-07-03 15:07:28 GMTUnderstand Python swapping: why is a, b = b, a n
Sumana Harihareswara - Cogito, Ergo Sumana: Some Novel Python Packaging/Distribution/Inspection/Installation Projects

Link: https://www.harihareswara.net/sumana/2021/07/03/1

People who program in Python have an easier time hearing about package-related tools that have been around for a while and that are under the banner of the Python Packaging Authority, or that are comm
John Ludhi/nbshare.io: How To Install Python TensorFlow On Centos 8

Link:
https://www.nbshare.io/notebook/803324513/How-To-Install-Python-TensorFlow-On-Centos-8/

How To Install Python TensorFlow On Centos 8

Make sure you have Python 3.5+ installed on your system.

In [ ]:

python --version
Python 3.6.8

Let us first update the syst
Tomaž Muraus: Making StackStorm Fast

Link: https://www.tomaz.me/2021/07/04/making-stackstorm-fast.html

Making StackStorm Fast
In this post I will describe changes to the StackStorm database abstraction layer which landed in StackStorm v3.5.0. Those changes will substantially speed up action executions
Matthew Wright: Parameterizing and automating Jupyter notebooks with papermill

Link: https://www.wrighters.io/parameters-jupyter-notebooks-with-papermill/

Have you ever created a Jupyter notebook and wished you could generate the notebook with a different set of parameters? If so, you've probably done at least one of the following: Edited the variables
Mike Driscoll: PyDev of the Week: Adam Hopkins

Link: https://www.blog.pythonlibrary.org/2021/07/05/pydev-of-the-week-adam-hopkins/

This week we welcome Adam Hopkins (@AdmHpkns) as our PyDev of the Week! Adam is a core developer on Sanic, a Python server / web framework. You can see what Adam has been up to over on GitHub.
Let’s s
Made With Mu: Announcing Mu version 1.1.0-beta.5

Link: https://madewith.mu/mu/users/2021/07/05/beta5.html


Beta 5 is here (get it from the download page)!
Since this is a beta release and may contain bugs or unfinished features.
Please provide bug reports or feedback via GitHub.
We had hoped for a regular
Real Python: Python's Counter: The Pythonic Way to Count Objects

Link: https://realpython.com/python-counter/

Counting several repeated objects at once is a common problem in programming. Python offers a bunch of tools and techniques you can use to approach this problem. However, Python’s Counter from collect
Kushal Das: Reproducible wheel buidling failure on CircleCI container

Link: https://kushaldas.in/posts/reproducible-wheel-buidling-failure-on-circleci-container.html


At SecureDrop project we have
Python wheels built for Python 3.7 on Buster in a reproducible way. We use the
same wheels inside of the Debian packages. The whole process has checks to
verify the sha2
Python Pool: Python Increment Dictionary Value: 5 Ways to Achieve

Link: https://www.pythonpool.com/python-increment-dictionary-value/?utm_source=rss&utm_medium=rss&utm_campaign=python-increment-dictionary-value

The post Python Increment Dictionary Value: 5 Ways to Achieve appeared first on Python Pool.
A dictionary in python is a built-in data structure that consists of a collection of items. The data is sto
Python Pool: Traverse Trees Using Level Order Traversal in Python

Link: https://www.pythonpool.com/level-order-traversal-python/?utm_source=rss&utm_medium=rss&utm_campaign=level-order-traversal-python

The post Traverse Trees Using Level Order Traversal in Python appeared first on Python Pool.
Trees are a type of non – linear data structure. The trees are made up of nodes that are arranged in a hier
Python Pool: 6 Best Ways to Get Filename Without Extension in Python

Link: https://www.pythonpool.com/python-get-filename-without-extension/?utm_source=rss&utm_medium=rss&utm_campaign=python-get-filename-without-extension

The post 6 Best Ways to Get Filename Without Extension in Python appeared first on Python Pool.
Files are used for storing information with the ability to read and write on them. The operations which