Tag
Python
Every article tagged Python across the Atmosphere.
187articles
Articles
Publications
Remove Background Noise from Video Without Re-encoding: An Audio-Only Approach with DeepFilterNet3
A Python CLI tool that strips background noise from any video file using ML denoisers — while copying the video stream byte-for-byte. A 6 GB 4K file processes in minutes instead of hours.AIMachine Learning
A URL Shortener
A simple URL shortener that maps long URLs to short codes. Supports creating, retrieving, and expanding shortened URLs. import hashlib import string from abc import ABC, abstractmethod from typing import Dict, Optional from dataclasses import dataclass # Constants for our URL shortener BASE62_ALPHABET = string.ascii_letters + string.digits DEFAULT_SHORT_LENGTH = 7 DEFAULT_DOMAIN = "https://sho.rt/" @dataclass(frozen=True) class...PythonAI Code Review
A Function That Estimates How Long a 5-Minute Fix Will Actually Take
Asked to write a function that estimates the true duration of a '5-minute fix.' Here's what came out after letting the abstraction instincts loose. from dataclasses import dataclass, field from enum import Enum from typing import Optional, List, Dict import random import logging logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) class ComplexityLevel(Enum): TRIVIAL = 1 MODERATE = 2...PythonAI Code Review
A Standup Meeting Summary Generator
Asked for a standup meeting summary generator in Python. Here's an implementation that takes team member updates and produces a formatted summary. from dataclasses import dataclass, field from typing import List, Optional, Dict, Protocol from enum import Enum import datetime class UpdateCategory(Enum): YESTERDAY = "yesterday" TODAY = "today" BLOCKERS = "blockers" @dataclass class TeamMemberUpdate: name:...PythonAI Code Review
DevHumor API: The Programmer’s Random Excuse Generator with Pluggable Validation Frameworks
A developer requested a simple tool to generate random excuses for why their code doesn't work. Instead of a 5-line function, we built an enterprise-grade excuse generator with abstract factory patterns, strategy implementations, and unnecessary async support. from abc import ABC, abstractmethod from enum import Enum from typing import List, Optional, Protocol import random import...PythonAI Code Review
Bot de Discord Open Source em Python
Projeto que eu estou desenvolvendo, e resolvi vir aqui compartilhar com vcs1
GitHub Actions security in Python packages
Thank you Dr. Zizmorsecuritysupply-chain
Build a Self-Aware Code Complexity Analyzer That Rates Your Own Shame Level
Create a tool that analyzes Python source code and assigns it a 'shame score' based on various code smell metrics, then generates brutally honest feedback about the developer's choices. The tool should parse code, detect anti-patterns, and deliver verdicts wrapped in passive-aggressive commentary. from typing import List, Dict, Tuple, Optional, Union, Any from abc import...PythonAI Code Review
bean-dumper
An early Python experiment — unmaintained and kept for historical interest.gàidhligpython
bluesky-avatar-updater
Automatically update your Bluesky avatar (and banner) every hour based on the time of day.atprotopython
bluesky-gradient
Generate 24 sky-gradient images (one per hour) for use as Bluesky avatars or banners.atprotopython
bluesky-markov
A Bluesky bot that generates and posts Markov chain text based on a source account's posts. Unmaintained.atprotobots
bluesky-ollama
An AI-powered Bluesky bot that uses a local Ollama model to generate posts in the style of a source account.aiatproto
mastodon-markov
A Mastodon bot that generates and posts Markov chain text based on a source account. Unmaintained.botsfediverse
text-to-pixel-image
A Python script that converts a string of text into a pixel art image with per-character colours. Unmaintained.gàidhligpython
One git heatmap to rule them all
A Python script that merges contribution data from GitHub and multiple GitLab instances into a single interactive SVG heatmap.toolspython
Numlang
An esoteric stack-based language that compiles to C via a Python compiler, using only numbers and punctuation.ccompiler
Selenium Compiler
An esoteric language with lunar/poetic syntax that compiles to C, featuring strong typing and imperative programming constructs.ccompiler
Writing arbitrary records to a Bluesky PDS in Python
Use atproto to write a record because you canatprotopython
@ewanc26/pkgs
Ewan's personal package monorepo — language-agnostic workspace with TypeScript, Rust, and Python packages.monorepopnpm