Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Eli Bendersky: ML in Go with a Python sidecar

Link: https://eli.thegreenplace.net/2024/ml-in-go-with-a-python-sidecar/

Machine learning models are rapidly becoming more capable; how can we make
use of these powerful new tools in our Go applications?
For top-of-the-line commercial LLMs like ChatGPT, Gemini or Claude, t
Python⇒Speed: Using portable SIMD in stable Rust

Link: https://pythonspeed.com/articles/simd-stable-rust/

In a previous post we saw that you can speed up code significantly on a single core using SIMD: Single Instruction Multiple Data.
These specialized CPU instructions allow you to, for example, add 4 va
Real Python: Formatting Floats Inside Python F-Strings

Link: https://realpython.com/courses/format-floats-f-strings/

You’ll often need to format and round a Python float to display the results of your calculations neatly within strings. In earlier versions of Python, this was a messy thing to do because you needed t
PyCoder’s Weekly: Issue #655 (Nov. 12, 2024)

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

#655 – NOVEMBER 12, 2024 View in Browser » Introduction to Web Scraping With Python In this video course, you’ll learn all about web scraping in Python. You’ll see how to parse data from website
Bojan Mihelac: Django cookie consent application

Link: http://code.informatikamihelac.com/en/django-cookie-consent-application/

django-cookie-consent is a reusable application for managing various cookies and visitors consent for their use in Django project.
Bojan Mihelac: Django import export

Link: http://code.informatikamihelac.com/en/django-import-export/

Importing and exporting data with included admin integration.
Bojan Mihelac: Django set language for admin

Link: http://code.informatikamihelac.com/en/django-set-language-for-admin/

Middleware that intialize specific locale for admin pages.
Bojan Mihelac: Django-simpleadmindoc

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

Simpleadmindoc is django application that allows you to quickly create help for modules in Django admin. Goal is to be flexible enough, fast to create and easy to integrate.
eGenix.com: eGenix PyRun - One file Python Runtime 2.6.0 GA

Link: https://www.egenix.com/company/news/eGenix-PyRun-2.6.0-GA.html

Introduction
eGenix PyRun
is our open source, one file, no installation version of Python, making
the distribution of a Python interpreter to run Python based scripts
and applications to Unix base
Mike Driscoll: ANN – The textual-cogs Package – Creating Reusable Dialogs for Textual

Link: https://www.blog.pythonlibrary.org/2024/11/13/ann-the-textual-cogs-package-creating-reusable-dialogs-for-textual/

Textual-cogs is a collection of Textual dialogs that you can use in your Textual application. You can see a quick demo of the dialogs below:

Dialogs included so far:

Generic MessageDialog – shows me
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.