Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Python import: Advanced Techniques and Tips

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

In Python, you use the import keyword to make code in one module available in another. Imports in Python are important for structuring your code effectively. Using imports properly will make you more
PSF GSoC students blogs: Weekly Check-In #6

Link: https://blogs.python-gsoc.org/en/saurabhk122s-blog/weekly-check-in-6-11/

What I did this week?
This week I added checkers for irssi and memcached libraries.
What will I be doing this week?
I will be working on adding checkers for some other libraries to the tool.
Did I get
PSF GSoC students blogs: Week 3 Blog Post

Link: https://blogs.python-gsoc.org/en/wangjls-blog/week-3-blog-post/

Sorry for the late post.
What i have done this week
During the test for the parse command function, i find that there are long whitespaces that will be parse as package name. So i use shlex to remove
Python Engineering at Microsoft: Enhance your Azure Machine Learning experience with the VS Code extension

Link: https://devblogs.microsoft.com/python/enhance-your-azure-machine-learning-experience-with-the-vs-code-extension/

Hey Python community! It’s been a while since we’ve last posted about this, but we’re excited to present new capabilities we’ve added to the VS Code Azure Machine Learning (AML) extension. From versio
pythonwise: Using module __dir__ and __getattr__ for configuration

Link: http://pythonwise.blogspot.com/2020/07/using-module-dir-and-getattr-for.html

PEP 562 added support for module level __dir__ and __getitem__. __dir__ is called when the built-in dir function is called on the module__getattr__ is called when an attribute is not found via the reg
PSF GSoC students blogs: GSoC Week 6: Begin the Phase 2

Link: https://blogs.python-gsoc.org/en/singhhrmns-blog/gsoc-week-6-begin-the-phase-2/

What I did this week?
As mentioned I worked on refactoring output_engine due to its increasing size. It will now be easy to maintain although I have not sumbitted a PR because I need the latest PR by
PyCharm: Release: PyCharm 2020.1.3

Link: http://feedproxy.google.com/~r/Pycharm/~3/_g5-RtHnEcI/

PyCharm 2020.1.3 is out with some important bug fixes. Update from within PyCharm (Help | Check for Updates), using the JetBrains Toolbox, or by downloading the new version from our website.
Highlight
Codementor: Big Data: 70 Increíbles Fuentes de Datos Gratuitas que Debes Conocer para 2020

Link: https://www.codementor.io/octoparsehola/big-data-70-increibles-fuentes-de-datos-gratuitas-que-debes-conocer-para-2020-186ye3ma78

ay miles de conjuntos de datos gratuitos disponibles en línea website, listos para ser analizados y visualizados por cualquier persona. Aquí hemos reunido 70 fuentes de datos gratuitas para 2020 sobre
Python Anywhere: Outage report 7 July 2020

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

tl; dr
We had an unplanned outage the day before yesterday; it was our first big one since July 2017. It was caused by an extremely unlikely storage system failure, but despite that it should not hav
Matt Layman: Enrolling Students - Building SaaS #64

Link: https://www.mattlayman.com/building-saas/enrolling-students/

In this episode, we worked on a view to enroll students into a grade level for the school year. I added all the context data and used Tailwind to design the form layout to pick from a list of availabl
Janusworx: A Hundred Days of Code, Day 002 - Basic Exercises

Link: https://janusworx.com/blog/a-hundred-days-of-code-day-002-basic-exercises/

Did a few exercises today.
They were simple.
Create a few classes, change them, modify them, use a list as an attribute and so on.

In a couple of ways, this was just what I needed.
One, I had an extr
Python Bytes: #189 What does str.strip() do? Are you sure?

Link: https://pythonbytes.fm/episodes/show/189/what-does-str.strip-do-are-you-sure

<p>Sponsored by us! Support our work through:</p>

<ul>
<li>Our <a href="https://training.talkpython.fm/"><strong>courses at Talk Python Training</strong></a></li>
<li><a href="https://t.co/AKfVKcveg6
Catalin George Festila: Python 3.8.3 : About aiohttp python package.

Link: http://python-catalin.blogspot.com/2020/07/python-383-about-aiohttp-python-package.html

This python package can help you to writing single-threaded concurrent code using coroutines, multiplexing I/O access over sockets and other resources, running network clients and servers, and other r
Test and Code: 121: Industrial 3D Printing & Python, Finite State Machines, and Simulating Hardware - Len Wanger

Link: https://testandcode.com/121

Len Wanger works on industrial 3D printers. And I was pleased to find out that
there's a bunch of Python in those printers as well.
In this episode we talk about:

3D printers
What are the different
Reuven Lerner: “Python Workout” is available in print!

Link: https://lerner.co.il/2020/07/10/python-workout-is-available-in-print/


If you’re like a lot of people, you’re able to get things done in Python, thanks to a combination of intuition, searching on Stack Overflow, and messing around. But you don’t feel fluent with the lan
Real Python: The Real Python Podcast – Episode #17: Linear Programming, PySimpleGUI, and More

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

Are you familiar with linear programming, and how it can be used to solve resource optimization problems? Would you like to free your Python code from a clunky command line and start making convenient
Stack Abuse: Managing Python Environments with direnv and pyenv

Link: https://stackabuse.com/managing-python-environments-with-direnv-and-pyenv/

Introduction
As Python developers, most of us are familiar with Virtual Environments. One of the first things we do when working on a new project is to create an environment. We commonly use virtualen
Janusworx: A Hundred Days of Code, Day 003 - Methods

Link: https://janusworx.com/blog/a-hundred-days-of-code-day-003-methods/

Learnt about methods today.
Notes follow …
My understanding about methods?
They are functions in classes that help me manipulate the data the objects contain when they are created.

I have been u