Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Pointers and Objects in Python

Link: https://realpython.com/courses/pointers-python/

If you’ve ever worked with lower-level languages like C or C++, then you may have heard of pointers. Pointers are essentially variables that hold the memory address of another variable. They allow you
Mike Driscoll: Python 101 – Debugging Your Code with pdb

Link: https://www.blog.pythonlibrary.org/2020/07/07/python-101-debugging-your-code-with-pdb/

Mistakes in your code are known as “bugs”. You will make mistakes. You will make many mistakes, and that’s totally fine. Most of the time, they will be simple mistakes such as typos. But since compute
Doug Hellmann: beagle 0.3.0

Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/2sdNpc_KCK8/

beagle is a command line tool for querying a hound code search service such as http://codesearch.openstack.org What’s new in 0.3.0? Add repo-pattern usages examples in the doc (contributed by Hervé Be
PSF GSoC students blogs: Week 5 Check-in

Link: https://blogs.python-gsoc.org/en/joaosferreiras-blog/week-5-check-in-2/

What did you do this week?
I continued the PR started in the previous week by adding more multimethods for array manipulation. The following multimethods were added:
Tiling arrays

tile
repeat

Adding
PSF GSoC students blogs: Weekly Check-in #6

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

<meta charset="utf-8">
What did I do this week?
Completed the chatbot example and added documentation for the same.
 

<meta charset="utf-8">
What's next?
I'll start working on the second phase of the
Matt Layman: Django Testing Toolbox

Link: https://www.mattlayman.com/blog/2020/django-testing-toolbox/

What are the tools that I use to test a Django app? Let’s find out!
You might say I’m test obsessed. I like having very high automated test coverage. This is especially true when I’m working on solo a
PSF GSoC students blogs: Week 6 Blog

Link: https://blogs.python-gsoc.org/en/imaj_ashwinis-blog/week-6-blog/

Hello everyone!
So its the beginning of the sixth week. The first evaluation results are out and fortunately, I made it till here. :D
This week I implemented the query functions present in DetourNavMe
PyCoder’s Weekly: Issue #428 (July 7, 2020)

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

#428 – JULY 7, 2020 View in Browser » Announcing Pylance: Fast, Feature-Rich Language Support for Python in Visual Studio Code Pylance is a new Python language server for VS Code based on Micros
Quansight Labs Blog: Writing docs is not just writing docs

Link: https://labs.quansight.org/blog/2020/07/writing-docs-is-not-just-writing-docs/

I joined the Spyder team almost two years ago, and I never thought I was going to end up working on docs. Six months ago I started a project with CAM Gerlach and Carlos Cordoba to improve Spyder’s doc
Janusworx: A Hundred Days of Code, Day 000 - Begin Again

Link: https://janusworx.com/blog/a-hundred-days-of-code-day-000-begin-again/

How do I begin this post?
By simply beginning :) Again!
This probably is the fourth (or is it fifth) time, I’ll be attempting to learn how to program.
And probably the same number of attempts at
Spyder IDE: Writing docs is not just writing docs

Link: https://www.spyder-ide.org/blog/tutorial-docs/

This blogpost was originally published on the Quansight Labs website.
I joined the Spyder team almost two years ago, and I never thought I was going to end up working on docs.
Six months ago I starte
Codementor: Object Oriented Programming in Python: Complete Tutorial

Link: https://www.codementor.io/samwatt/object-oriented-programming-in-python-complete-tutorial-185uiy6vpn

Object Oriented Programming (OOP) plays a fundamental role in structuring the program in Python development. Here’s an introduction to OOP principles in Python programming.
Janusworx: A Hundred Days of Code, Day 001 - Beginning With Classes

Link: https://janusworx.com/blog/a-hundred-days-of-code-day-001-beginning-with-classes/

Notes I’ve taken from the videos I watched, today.
This is my attempt at Feynman-ing (below), what I learnt so far.
Classes and Object Oriented Programming started to come together for me, when I s
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