Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Zato Blog: Web scraping as an API service

Link: https://zato.io/en/blog/web-scraping-api-integrations.html


Web scraping as an API service


2024-11-13, by Dariusz Suchojad


Overview
In systems-to-systems integrations, there comes an inevitable time when we have to employ some kind of a web scraping too
Real Python: Python Dictionary Comprehensions: How and When to Use Them

Link: https://realpython.com/python-dictionary-comprehension/

Dictionary comprehensions are a concise and quick way to create, transform, and filter dictionaries in Python. They can significantly enhance your code’s conciseness and readability compared to using
Bojan Mihelac: Rename uploaded files to ASCII charset in Django

Link: http://code.informatikamihelac.com/en/rename-uploaded-files-ascii-character-set-django/

Telling Django to rename all uploaded files in ASCII encoding is easy and takes only two steps.
Bojan Mihelac: Django-simpleadmindoc updated

Link: http://code.informatikamihelac.com/en/django-simpleadmindoc-updated/

create documentation for django website
Bojan Mihelac: Django app name translation in admin

Link: http://code.informatikamihelac.com/en/django-app-name-translation-admin/

"Django app name translation in admin" is small drop-in django application that overrides few admin templates thus allowing app names in Django admin to be translated.
Bojan Mihelac: Building docker images with private python packages

Link: http://code.informatikamihelac.com/en/building-docker-images-with-private-python-packages/

Installing private python packages into Docker container can be tricky because container does not have access to private repositories and you do not want to leave trace of private ssh key in docker…
PyPy: Guest Post: Final Encoding in RPython Interpreters

Link: https://www.pypy.org/posts/2024/11/guest-post-final-encoding-in-rpython.html

Introduction
This post started as a quick note summarizing a recent experiment I carried
out upon a small RPython interpreter by rewriting it in an uncommon style. It
is written for folks who have alr
Python Bytes: #409 We've moved to Hetzner write-up

Link: https://pythonbytes.fm/episodes/show/409/weve-moved-to-hetzner-write-up

<strong>Topics covered in this episode:</strong><br>

<ul>
<li><a href="https://github.com/willmcgugan/terminal-tree?featured_on=pythonbytes"><strong>terminal-tree</strong></a></li>
<li><strong><a hr
PyCharm: Inline AI Prompting, Coding Assistance for the dataclass_transform Decorator (PEP 681), and More in PyCharm 2024.3!

Link: https://blog.jetbrains.com/pycharm/2024/11/pycharm-2024-3/

Code smarter, optimize performance, and stay focused on what matters most with the latest updates in PyCharm 2024.3. From enhanced support for AI Assistant and Jupyter notebooks to new features like n
Django Weblog: Django’s technical governance challenges, and opportunities

Link: https://www.djangoproject.com/weblog/2024/nov/14/technical-governance-challenges-and-opportunities/

As of October 29th, two of four members of the Django Software Foundation Steering Council have resigned from their role, with their intentions being to trigger an election of the Steering Council ear
Python Morsels: Inspecting objects in Python

Link: https://www.pythonmorsels.com/inspecting-python-objects/

I rely on 4 functions for inspecting Python objects: type, help, dir, and vars.



Table of contents

Inspecting an object's structure and data
How to see an object's class
Looking up documentation wi
Real Python: Quiz: Basic Input and Output in Python

Link: https://realpython.com/quizzes/python-input-output/

In this quiz, you’ll test your understanding of how to use Python’s built-in functions input() and print() for basic input and output operations.
You’ll also revisit how to use readline to improve the
Real Python: The Real Python Podcast – Episode #228: Maintaining the Foundations of Python & Cautionary Tales

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

How do you build a sustainable open-source project and community? What lessons can be learned from Python's history and the current mess that the WordPress community is going through? This week on the
Real Python: Quiz: Namespaces and Scope in Python

Link: https://realpython.com/quizzes/python-namespaces-scope/

In this quiz, you’ll test your understanding of
Python Namespaces and Scope.
You’ll revisit how Python organizes symbolic names and objects in namespaces, when Python creates a new namespace, how name