IT-новости про Python, которые стоит знать

Собрали в одном месте самые важные ссылки
читайте нас в Twitter

     24.07.2024       Статьи

When Generators Get Cleaned Up

When playing with generators in asynchronous code, Sam ran into some things he didn’t quite expect with how and when resources get cleaned up. This article shows you what you can and can’t control, and in some cases whether you should.

     19.07.2024       Выпуск 553 (15.07.2024 - 21.07.2024)       Статьи
     17.07.2024       Выпуск 553 (15.07.2024 - 21.07.2024)       Статьи

Using HTMX With FastAPI

This tutorial looks at how use HTMX with FastAPI by creating a simple todo web app and deploying it on Render.

     12.07.2024       Выпуск 552 (08.07.2024 - 14.07.2024)       Статьи
     05.07.2024       Выпуск 551 (01.07.2024 - 07.07.2024)       Статьи
     03.07.2024       Выпуск 551 (01.07.2024 - 07.07.2024)       Статьи

Quickstart for Playing With LLMs Locally

This is a simple, quick guide to getting started running LLMs on your local computer. It covers the basics of the powerful libraries Ollama and LangChain for controlling these AI models.

     03.07.2024       Выпуск 551 (01.07.2024 - 07.07.2024)       Статьи

Satellites Spotting Ships

Umbra Space has released a data set consisting of satellite based radar images of shipping. This article from Mark shows you how to grab the data, visualize, and annotate it.

     02.07.2024       Выпуск 551 (01.07.2024 - 07.07.2024)       Статьи
     23.06.2024       Выпуск 549 (17.06.2024 - 23.06.2024)       Статьи

Django SQLite Production Config

SQLite! Учитывайте ограничение SQLite - блокировку при записи.

     24.06.2024       Выпуск 550 (24.06.2024 - 30.06.2024)       Статьи
     19.06.2024       Выпуск 549 (17.06.2024 - 23.06.2024)       Статьи

How I Built a Bot Publishing Italian Paintings on Bluesky

This article describes Nicolò’s project to build a bot that retrieves images from Wikimedia, selecting the best ones, and deploying it to the cloud.

     19.06.2024       Выпуск 549 (17.06.2024 - 23.06.2024)       Статьи

Starting and Stopping uvicorn in the Background

Learn how to start and stop uvicorn in the background using a randomly selected free port number. Useful for running test suites that require live-webservers.

     18.06.2024       Выпуск 549 (17.06.2024 - 23.06.2024)       Статьи
     14.06.2024       Выпуск 548 (10.06.2024 - 16.06.2024)       Статьи
     05.06.2024       Выпуск 547 (03.06.2024 - 09.06.2024)       Статьи
     28.05.2024       Выпуск 546 (27.05.2024 - 02.06.2024)       Статьи

How to Create Pivot Tables With pandas

In this tutorial, you'll learn how to create pivot tables using pandas. You'll explore the key features of DataFrame's pivot_table() method and practice using them to aggregate your data in different ways.

     26.05.2024       Выпуск 545 (20.05.2024 - 26.05.2024)       Статьи

Export Journal Feature - Building SaaS with Python and Django #191

In this episode, I started with cleaning up a few small items. After those warmups, we moved on to building an export feature that will allow users to take their journal entries if they want to leave the service.

     24.05.2024       Выпуск 545 (20.05.2024 - 26.05.2024)       Статьи

GraphQL-like features in Django Rest Framework

Add GraphQL-inspired flexible fields to Django REST Framework.