Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Programiz: Python RegEx

Link: https://www.programiz.com/python-programming/regex

In this tutorial, you will learn about regular expressions (RegEx), and use Python's re module to work with RegEx (with the help of examples).
PyCharm: Webinar: “Demystifying Python’s async and await Keywords” with Michael Kennedy

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

Python has long had a variety of approaches for parallelism, with async/await and asyncio being the modern approach. These topics, though, are difficult to grasp and compare. Want to get to the bottom
Python Software Foundation: Python Developers Survey 2018 Results: Learn about the community

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/S5UQDdinac4/python-developers-survey-2018-results.html

In the fall of 2018, the Python Software Foundation together with JetBrains conducted the official annual Python Developers Survey for the second time. Much like the previous survey, we set out to ide
Mike Driscoll: Getting Started with JupyterLab

Link: http://www.blog.pythonlibrary.org/2019/02/05/getting-started-with-jupyterlab/


JupyterLab is the latest package from Project Jupyter. In some ways, it is kind of a replacement for Jupyter Notebook. However the Jupyter Notebook is a separate project from JupyterLab. I like to th
PyCoder’s Weekly: Issue #354 (Feb. 5, 2019)

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

#354 – FEBRUARY 5, 2019 View in Browser » Wow, so much has happened in the Python world last week! I don’t even know where to begin here… This issue is chock-full of actual Python news and, as us
Anarcat: Debian build helpers: dh dominates

Link: https://anarc.at/blog/2019-02-05-debian-build-systems/

It's been a while since someone did this. Back in 2009, Joey Hess
made a talk at Debconf 9 about debhelper and mentioned in
his slides (PDF) that it was used in most Debian packages. Here
was the rati
Codementor: Odoo v13 Roadmap

Link: https://www.codementor.io/vvgediya/odoo-v13-roadmap-rwsja19bw

The Key Point that comes to the Odoo 13 Roadmap are:
1) Odoo Bank
2) OCR
3) The accountant as a service
4) Integration with recruitment
5) Internet of things
6) Stock Management Enhancement
7)...
gamingdirectional: Further modifying the enemy class

Link: http://gamingdirectional.com/blog/2019/02/06/further-modifying-the-enemy-class/

In the previous article, we have successfully created the animation effect for the enemy object, in this article, we will add in the switch direction method which will switch the direction of the enem
Real Python: The Ultimate List of Data Science Podcasts

Link: https://realpython.com/data-science-podcasts/

Podcasts are a great way to immerse yourself in an industry, especially when it comes to data science. The field moves extremely quickly, and it can be difficult to keep up with all the new developmen
Vasudev Ram: Exploring the /proc filesystem: an article by me in Linux Pro Magazine

Link: http://jugad2.blogspot.com/2019/02/exploring-proc-filesystem-article-i.html

- By Vasudev Ram - Online Python training / SQL training / Linux trainingHi, readers,Somewhat recently, I wrote this article which was published in Linux Pro Magazine:Exploring the /proc filesystem wi
gamingdirectional: Move the enemy object with pygame

Link: http://gamingdirectional.com/blog/2019/02/06/move-the-enemy-object-with-pygame/

Hi, here is another quick post on the latest pygame project which I have developed lately. In the previous article, we have created an animated enemy object which can switch direction using the timer
Matt Layman: Building SaaS in January

Link: https://www.mattlayman.com/blog/2019/building-saas-january/

Here’s a recap of what happened on the Building SaaS with Python and Django stream this past month.
If some of these topics interest you, check them out! If you want to join live in the future, I stre
Python Software Foundation: Python Brasil – People > Technology

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/tdocQg_vxAg/python-brasil-people-technology.html



It's October 17th, 2018. I've arrived at Natal, a beautiful coastal city in Brazil's northeast region. Known for its beaches and hotness, it's surprising how I'm not thinking about all the Caipirinh
PyCharm: PyCharm 2019.1 EAP 3

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

Our third Early Access Program (EAP) version for PyCharm 2019.1 is now available on our website.
New in This Version
Inspect Large Collections in the Debugger

In previous versions of PyCharm, collect
Anarcat: January 2019 report: LTS, Mailman 3, Vero 4k, Kubernetes, Undertime, Monkeysign, oh my!

Link: https://anarc.at/blog/2019-02-06-report/

January is often a long month in our northern region. Very cold, lots
of snow, which can mean a lot of fun as well. But it's also a great
time to cocoon (or maybe hygge?) in front of the computer and
Stack Abuse: Relative vs Absolute Imports in Python

Link: https://stackabuse.com/relative-vs-absolute-imports-in-python/

While you can put simple projects in a single file, most Python development projects will require multiple files to keep them manageable. That means you need a way to import one file into another. How