Planet Python RSS
215 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Getting the Most Out of a Python Traceback

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

Python prints a traceback when an exception is raised in your code. The traceback output can be a bit overwhelming if you’re seeing it for the first time or you don’t know what it’s telling you. But t
PyCoder’s Weekly: Issue #424 (June 9, 2020)

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

#424 – JUNE 9, 2020 View in Browser » Web Scraping in Python: Tools, Techniques, and Legality Do you want to get started with web scraping using Python? Are you concerned about the potential leg
Janusworx: A Hundred Days of Code, Day 041

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

Started to very slowly do the Mega Flask Tutorial.
This real world project-cum-tutorial, should let me learn more real-world-esque Python and expand beyond the tiny vocabulary, I have.
Setup my envi
CubicWeb: Report of June 10th Cubicweb Meeting

Link: http://feedproxy.google.com/~r/cubicweborg/~3/9jlSQfdxJj0/17326288

Hi everyone,
We've just published the RC1 for CubicWeb https://pypi.org/project/cubicweb/3.28.0rc1/ and a new version 1.7.0 for logilab-common https://pypi.org/project/logilab-common/1.7.0/
Our curren
Real Python: SettingWithCopyWarning in Pandas: Views vs Copies

Link: https://realpython.com/pandas-settingwithcopywarning/

NumPy and Pandas are very comprehensive, efficient, and flexible Python tools for data manipulation. An important concept for proficient users of these two libraries to understand is how data are refe
Peter Bengtsson: ./bin/huey-isnt-running.sh - A bash script to prevent lurking ghosts

Link: https://www.peterbe.com/plog/huey-isnt-running.sh

tl;dr; Here's a useful bash script to avoid starting something when its already running as a ghost process.
PSF GSoC students blogs: GSoC week 1

Link: https://blogs.python-gsoc.org/en/ars-blog/gsoc-week-1-1/

This week I've been largely focused on blog posting bugs, notably #394 and #396. These two bugs are not actually part of the python-blogs codebase, but the now-abandoned aldryn newsblog projected whic
Nathan Piccini Data Science Dojo Blog: Building an AI-based Chatbot in Python

Link: https://blog.datasciencedojo.com/building-an-ai-based-chatbot-in-python/

Chatbots have become extremely popular in recent years and their use in the industry has skyrocketed. The chatbot market is projected to grow from $2.6 billion in 2019 to $9.4 billion by 2024. This re
PSF GSoC students blogs: Weekly Check In - 1

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

What did I do till now?
As the Community Bonding phase finished I started coding the HTTP/2 Client Protocol. I started simple with adding support for GET requests.
Whats coming up next? 
Next week I p
PSF GSoC students blogs: [Week 1] Build A Calculation Graph

Link: https://blogs.python-gsoc.org/en/sangyxs-blog/week-1-build-a-calculation-graph/

1. What did you do this week?
This week's main job is to build a calculation graph. The core of the automatic differential system is vjp, which is composed of calculation graph construction and gradie
PSF GSoC students blogs: [Week 1] Check-in

Link: https://blogs.python-gsoc.org/en/sangyxs-blog/week-1-check-in-6/

1. What did you do this week?
This week's main job is to build a calculation graph. The core of the automatic differential system is vjp, which is composed of calculation graph construction and gradie
Fabio Zadrozny: PyDev 7.6.0 (Python 3.8 parsing fixes and debugger improvements)

Link: http://feedproxy.google.com/~r/blogspot/pydev/~3/ijuzjLe8paQ/pydev-760-python-38-parsing-fixes-and.html

PyDev 7.6.0 is now available for download.This release brings multiple fixes to parsing the Python 3.8 grammar (in particular, dealing with f-strings and iterable unpacking had some corner cases that
Janusworx: A Hundred Days of Code, Day 042

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

Second day with the Flask course.
Beginning to realise that Flask is not a monolithic thing, but consists of a lot of moving parts.
Looking forward to learning what they are as I progress along.
T
Matt Layman: A View From Start To Finish - Building SaaS #60

Link: https://www.mattlayman.com/building-saas/view-from-start-to-finish/

In this episode, I created a view to add students from beginning to the end. I used Error Driven Development to guide what I needed to do next to make the view, then wrote tests, and finished it all o
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).
Janusworx: A Hundred Days of Code, Day 043

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

Continuing with the Flask course.
Today I learnt about how to loop, using Jinja loop blocks.
The syntax is slowly becoming clear to me.
Everything python related in enclosed is {% … %} blocks, excep
Real Python: The Real Python Podcast – Episode #13: PDFs in Python and Projects on the Raspberry Pi

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

Have you wanted to work with PDF files in Python? Maybe you want to extract text, merge and concatenate files, or even create PDFs from scratch. Are you interested in building hardware projects using
Stack Abuse: any() and all() in Python with Examples

Link: https://stackabuse.com/any-and-all-in-python-with-examples/

Introduction to any() and all()
In this tutorial, we'll be covering the any() and all() functions in Python.
The any(iterable) and all(iterable) are built-in functions in Python and have been around s