Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Perform OCR on a Scanned PDF in Python Using borb

Link: https://stackabuse.com/applying-ocr-to-a-scanned-pdf-in-python-using-borb/

The Portable Document Format (PDF) is not a WYSIWYG (What You See is What You Get) format. It was developed to be platform-agnostic, independent of the underlying operating system and rendering engine
Real Python: The Real Python Podcast – Episode #81: Exploring the New Features of Python 3.10

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

Python 3.10 is here! This week on the show, two former guests and Real Python authors return to talk about the new version. Geir Arne Hjelle's article was posted to the site Monday, and it's titled "P
Zero-with-Dot (Oleg Żero): Aggregations on time-series data with Pandas

Link: https://zerowithdot.com/time-series-aggregations-pandas/

Introduction
Working with time-series data is often a challenge on its own.
It is a special kind of data, where data points depend on each other across time.
When analyzing it, your productivity at ga
Trey Hunner: What's great about Python 3.10?

Link: https://treyhunner.com/2021/10/whats-great-about-python-3-dot-10/

What changed in Python 3.10 and which of those changes matter for you?
I’ve spent this week playing with Python 3.10.
I’ve primarily been working on solutions to Python Morsels exercises that embrace
Podcast.__init__: Build Better Machine Learning Models By Understanding Their Decisions With SHAP

Link: https://www.pythonpodcast.com/shap-explainable-machine-learning-episode-335/

Machine learning and deep learning techniques are powerful tools for a large and growing number of applications. Unfortunately, it is difficult or impossible to understand the reasons for the answers
Talk Python to Me: #337: Kedro for Maintainable Data Science

Link: https://talkpython.fm/episodes/show/337/kedro-for-maintainable-data-science

Have you heard of Kedro? It's a Python framework for creating reproducible, maintainable and modular data science code.
<br/>

<br/>
We all know that reproducibility and related topics are important
Weekly Python StackOverflow Report: (ccxcvi) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/10/ccxcvi-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-10-09 22:24:26 GMTWhat is this odd sorting algorithm? - [61/5]pyth
Łukasz Langa: Weekly Report, October 4 - 10

Link: https://lukasz.langa.pl/9f43819d-e9a5-4237-9ef6-a1f3b9a60b08/

This week Pablo released Python 3.10.0. I was part of the “small” release party that ended up bringing a live audience of 400 people on YouTube, Guido included. It was a pleasure.
Daniel Roy Greenfeld: Exploring the Bunch Class

Link: https://daniel.feldroy.com/posts/exploring-the-bunch-class


Warning
Be careful with how you use bunch classes. It is possible to overwrite critical methods and attributes. Please don't use these in anything important or you may regret it.

Every play with a b
Awesome Python Applications: SQLFluff

Link: https://github.com/sqlfluff/sqlfluff


SQLFluff: Dialect-flexible and configurable SQL linter, designed with ELT applications in mind, with support for templating and autofixing errors.
Links:

Repo
Home
Fund
PyPI
Mike Driscoll: PyDev of the Week: Pedro Pregueiro

Link: https://www.blog.pythonlibrary.org/2021/10/11/pydev-of-the-week-pedro-pregueiro/

This week we welcome Pedro Pregueiro (@pedropregueiro) as our PyDev of the Week! Pedro is an entrepreneur who has co-founded several companies. He is also an author and contributor at Real Python.
If
Quansight Labs Blog: Re-Engineering CI/CD pipelines for SciPy

Link: https://labs.quansight.org/blog/2021/10/re-engineering-cicd-pipelines-for-scipy/

In this blog post I talk about the projects and my work during my internship at Quansight Labs. My efforts were geared towards re-engineering CI/CD pipelines for SciPy to make them more efficient to
TestDriven.io: Basic and Full-text Search with Django and Postgres

Link: https://testdriven.io/blog/django-search/

This tutorial looks at how to add basic and full-text search to a Django app with Postgres.
Python Engineering at Microsoft: Python in Visual Studio Code – October 2021 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-october-2021-release/

We are pleased to announce that the October 2021 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it dire
Real Python: Representing Rational Numbers With Python Fractions

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

The fractions module in Python is arguably one of the most underused elements of the standard library. Even though it may not be well-known, it’s a useful tool to have under your belt because it can h
Python Morsels: Reading files line-by-line

Link: https://www.pythonmorsels.com/topics/reading-files-line-line/




Transcript
Let's talk about reading files line-by-line in Python.
Looping over file objects to read line-by-line
Here we're calling the read method on a file object (for a file called diary980.md):
Stack Abuse: Scikit-Learn's train_test_split() - Training, Testing and Validation Sets

Link: https://stackabuse.com/scikit-learns-traintestsplit-training-testing-and-validation-sets/

Introduction
Scikit-Learn is one of the most widely-used Machine Learning library in Python. It's optimized and efficient - and its high-level API is simple and easy to use.
Scikit-Learn has a plethor
Real Python: Using Pygame to Build an Asteroids Game in Python

Link: https://realpython.com/courses/asteroids-game-python-pygame/

Do you want to create your own computer games but like Python too much to abandon it for a career as a game developer? There’s a solution for that! With the Pygame module, you can use your amazing Pyt