Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Quansight Labs Blog: Distributed Training Made Easy with PyTorch-Ignite

Link: https://labs.quansight.org/blog/2021/06/distributed-made-easy-with-ignite/


Authors: François Cokelaer,
Priyansi, Sylvain
Desroziers, Victor
Fomin
Writing agnostic
distributed
code that
supports different platforms, hardware configurations (GPUs, TPUs) and
communication fram
Real Python: Reverse Python Lists: Beyond .reverse() and reversed()

Link: https://realpython.com/python-reverse-list/

Are you diving deeper into Python lists and wanting to learn about different ways to reverse them? If so, then this tutorial is for you. Here, you’ll learn about a few Python tools and techniques that
Python Insider: Python 3.9.6, 3.8.11, 3.7.11, and 3.6.14 are now available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/mjnsTchkg4Q/python-396-3811-3711-and-3614-are-now.html

Python 3.9.6Get it here: https://www.python.org/downloads/release/python-396/Python 3.9.6 is the newest major stable release of
the Python programming language, and it contains many new features and
Mike Driscoll: Converting MP4 to Animated GIFs with Python

Link: https://www.blog.pythonlibrary.org/2021/06/29/converting-mp4-to-animated-gifs-with-python/

Python can be used to read in the common MP4 video format and convert it to an animated GIF. Of course, you can use a pre-built piece of software if you’d rather, but it’s fun (and a good learning exp
Stack Abuse: Guide to Python's strip() Method

Link: https://stackabuse.com/guide-to-pythons-strip-method

Introduction
String manipulation in Python is achieved through a set of built-in methods, which return new strings since they're immutable. In this guide, we will look at methods to strip whitespace (
Python for Beginners: Fractions Module in Python

Link: https://www.pythonforbeginners.com/basics/fractions-module-in-python


You must have used numeric data types like integers and floating point numbers in python. But have you used fractions in their actual form? In this article we will study about fractions and will perf
Real Python: Python Inner Functions

Link: https://realpython.com/courses/python-inner-functions/

Python allows the declaration of functions inside of other functions. Inner functions, also known as nested functions, are defined within a function. This type of function has direct access to variabl
Anarcat: Another syncmaildir crash

Link: https://anarc.at/blog/2021-06-29-another-mail-crash/

So I had another major email crash
with my syncmaildir
setup. This time I was at
least able to confirm the issue, and I still haven't lost mail thanks
to backups and sheer luck (again).
The crash
It i
PyCoder’s Weekly: Issue #479 (June 29, 2021)

Link: https://pycoders.com/issues/479

#479 – JUNE 29, 2021 View in Browser » Subclassing in Python Redux Have you ever heard someone say that composition is better than inheritance? It’s an age-old conflict in object-oriented progra
Ben Cook: Development containers in VS Code: a quick start guide

Link: https://sparrow.dev/devcontainers-quickstart/

If you’re building production ML systems, dev containers are the killer feature of VS Code. Dev containers give you full VS Code functionality inside a Docker container. This lets you unify your dev a
Podcast.__init__: Lightening The Load For Deep Learning With Sparse Networks Using Neural Magic

Link: https://www.pythonpodcast.com/neural-magic-deep-learning-sparse-networks-episode-321/

Deep learning has largely taken over the research and applications of artificial intelligence, with some truly impressive results. The challenge that it presents is that for reasonable speed and perfo
Stack Abuse: Graphs in Python: Minimum Spanning Trees - Prim's Algorithm

Link: https://stackabuse.com/graphs-in-python-minimum-spanning-trees-prims-algorithm

Introduction
Graphs are a great tool for modeling relationships between objects. Graphs can be used to model complex relationships between any number of objects in a system, which makes them ideal for
Python for Beginners: Introduction to cmath module in Python

Link: https://www.pythonforbeginners.com/basics/introduction-to-cmath-module-in-python


While working on data science, machine learning or scientific calculations, we often need to perform calculations on numeric data types including  complex numbers. In this article, we will use the cm
Zero to Mastery: Python Monthly 💻🐍 June 2021

Link: https://zerotomastery.io/blog/python-monthly-june-2021/?utm_source=python-rss-feed

19th issue of Python Monthly! Read by 20,000+ Python developers every month. This monthly Python newsletter is focused on keeping you up to date with the industry and keeping your skills sharp, withou
PyCharm: PyCharm 2021.1.3 Is Out

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

The PyCharm 2021.1.3 release fixes some major issues in the IDE performance, UI, and specific features. Support for Django, frontend, and databases is only available in PyCharm Professional.
Thank you
PyCharm: Early Access PyCharm: PyCharm and Data Science

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

For a very long time, PyCharm’s Data Science tooling has not been a feature set that we’ve talked at length about. We’ve got a lot wrong, but this time around, we’ve changed the way we approach buildi
Python Anywhere: Glastonbury: a new system image, with Python 3.9 and Ubuntu 20.04

Link: https://blog.pythonanywhere.com/196/

If you signed up for an account on PythonAnywhere after 21 June 2021, you’ll have Python 3.9 available – you can use it just like any other Python version. Additionally, the underlying operating syst
STX Next: FastAPI vs. Flask: Comparing the Pros and Cons of Top Microframeworks for Building a REST API in Python

Link: https://www.stxnext.com/blog/fastapi-vs-flask-comparison/




Creating web applications such as REST APIs is the bread and butter of backend developers. Therefore, working with a web framework should be quick and easy.