atlas news
    
Reddit : Python
18  janvier     00h00
Sunday Daily Thread: What’s everyone working on this week?
   Weekly Thread: What's Everyone Working On This Week? Hello r Python It's time to share what you've been working on Whether it's a work-in-progress, a completed masterpiece, or just a rough idea, let us know what you're up to How it Works: Show & Tell: Share your current...
20  janvier     00h00
Tuesday Daily Thread: Advanced questions
   Weekly Wednesday Thread: Advanced Questions Dive deep into Python with our Advanced Questions thread This space is reserved for questions about more advanced Python topics, frameworks, and best practices. How it Works: Ask Away: Post your advanced Python questions here. Expert Insights: Get answers...
21  janvier     10h39
Convert your bear images into bear images: Bear Right Back
   What My Project Does bearrb is a Python CLI tool that takes two images of bears (a source and a target) and transforms the source into a close approximation of the target by only rearranging pixel coordinates. No pixel values are modified, generated, blended, or recolored, every original pixel is...
20  janvier     22h06
Tracking 13,000 satellites in under 3 seconds from Python
   I've been working on https: github.com ATTron astroz, an orbital mechanics toolkit with Python bindings. The core is written in Zig with SIMD vectorization. What My Project Does astroz is an astrodynamics toolkit, including propagating satellite orbits using the SGP4 algorithm. It writes...
21  janvier     07h48
I really enjoy Python compared to other coding I’ve done
   I've been using Python for a while now and it's my main language. It is such a wonderful language. Guido had wonderful design choices in forcing whitespace to disallow curly braces and discouraging semicolons so much I almost didn't know they existed. There's even a synonym for...
    15h30
A refactor-safety tool for Python projects - Arbor v1.4 adds a GUI
   Arbor is a static impact-analysis tool for Python. It builds a call import graph so you can see what breaks before a refactor especially in large, dynamic codebases where types tests don’t always catch structural changes. What it does: Indexes Python files and builds a dependency graph Shows direct...
    14h14
dltype v0.9.0 now with jax support
   Hey all, just wanted to give a shout out to my project dltype. I posted on here about it a while back and have made a number of improvements. What my project does: Dltype is a lightweight runtime shape and datatype checking library that supports numpy arrays, torch tensors, and now Jax arrays. It...
    14h03
Deb Nicholson of PSF on Funding Python’s Future
   In this talk, Deb Nicholson, Executive Director of the r python Software Foundation, explores what it takes to fund Python’s future amid explosive growth, economic uncertainty, and rising demands on r opensource infrastructure. She explains why traditional nonprofit funding models no longer fit...
    13h57
chithi-dev,an Encrypted file sharing platform with zero trust server mindset
   I kept on running into an issue where i needed to host some files on my server and let others download at their own time, but the files should not exist on the server for an indefinite amount of time. So i built an encrypted file folder sharing platform with automatic file eviction logic. What My...
    05h38
I’ve been working on an information-aware compiler for neural networks (with a Python CLI)
   I’ve been working on a research project called Information Transform Compression (ITC), a compiler that treats neural networks as information systems, not parameter graphs, and optimises them by preserving information value rather than numerical fidelity. Github Repo: https: github.com...
    13h08
I built a runtime to sandbox untrusted Python code using WebAssembly
   Hi everyone, I've been working on a runtime to isolate untrusted Python code using WebAssembly sandboxes. What My Project Does Basically, it protects your host system from problems that untrusted code can cause. You can set CPU limits (with compute), memory, filesystem access, and retries for...
20  janvier     15h49
Network monitoring dashboard built with Flask, scapy, and nmap
   built a home network monitor as a learning project useful to anyone. - what it does: monitors local network in real time, tracks devices, bandwidth usage per device, and detects anomalies like new unknown devices or suspicious traffic patterns. - target audience: educational homelab project, not...
    15h25
I built a local-first file metadata extraction library with a CLI (Python Pydantic Typer)
   Hi all, I've been working on a project called Dorsal for the last 18 months. It's a way to make unstructured data more queryable and organized, without having to upload files to a cloud bucket or pay for remote compute (my CPU GPU can almost always handle my workloads). What my Project Does...
    17h41
Ty setup for pyright mimic
   Hi all, For company restriction rules I cannot install pyright for typecheking, but I can install ty (from Astral). Opening it on the terminal with watch option is a great alternative, but I prefer to have a strict type checking which seems not to be the default for ty. Do you a similar config how...
21  janvier     13h36
python venv problems
   In the folder: ComfyUI windows portable Wan2GP> I type: python --version and returns... Python 3.12.10 then python -m venv -h returns.... No module named venv Any idea what is happening? submitted by u gargamel9a [link] [comments]
20  janvier     10h39
I built a Python DSL for creating C4 models and diagrams
   Hello Last year, I started writing a Python C4 model authoring tool, and it has come to a point where I feel good enough to share it with you guys so you can start playing around with it locally and render the C4 model views with PlantUML. GitHub repo: https: github.com amirulmenjeni buildzr...
19  janvier     19h20
When did destructive criticism become normalized on this sub?
   It’s been a while since this sub popped up on my feed. It’s coming up more recently. I’m noticing a shocking amount of toxicity on people’s project shares that I didn’t notice in the past. Any attempt to call out this toxicity is met with a wave of downvotes. For those of you who have been in the...
20  janvier     19h21
hololinked: pythonic beginner friendly IoT and data acquisition runtime written fully in python
   Hi guys, I would like to introduce the Python community to my pythonic IoT and data acquisition runtime fully written in python - https: github.com hololinked-dev hololinked What My Project Does You can expose your hardware on the network, in a systematic manner over multiple protocols for multiple...
    15h51
plissken - Documentation generator for Rust Python hybrid projects
   What My Project Does I've got a few PyO3 Maturin projects and got frustrated that my Rust internals and Python API docs lived in completely separate worlds; making documentation manual and a general maintenance burden. So I built plissken. Point it at a project with Rust and Python code, and it...
    10h30
fastjsondiff - High-performance JSON comparison with a Zig-powered core
   Hey reddit I built a JSON diff library that uses Zig under the hood for speed. Zero runtime dependencies. What My Project Does fastjsondiff is a Python library for comparing JSON payloads. It detects added, removed, and changed values with full path reporting. The core comparison engine is written...
    16h57
CondaNest: A native GTK4 GUI to manage and clean Conda environments
   Source Code: https: github.com aradar46 condanest Demo: CondaNest Demo What My Project Does CondaNest is a lightweight, native Linux GUI application designed to manage Conda and Mamba environments. I built this using Python and PyGObject (GTK4 Libadwaita) to provide a modern "Settings"...
19  janvier     23h53
Opticol: memory optimized python collections
   Hi everyone, I just created a new library called opticol (which stands for optimized collections), which I wanted to share with the community. The idea of the library is to create space optimized versions of Sequence, Set, and Mapping for small collections leveraging the collections.ABC vocabulary....
    14h52
I built a Python UI framework inspired by Streamlit, but with O(1) state updates
   Hey r Python, I love Streamlit's simplicity, but the "full script rerun" on every interaction drove me crazy. It gets super slow once your app grows, and using st.cache everywhere felt like a band-aid. So I spent the last few weeks building Violit. I wanted something that feels like...
20  janvier     14h43
Who should I interview about the state of Python in 2026?
   Hey everyone Quick question: who would you recommend as a great guest for a Python interview? Context: I'm working on a YouTube video exploring where Python stands in 2025 2026. Looking for someone who can speak to: where Python is actually being used today across different industries real...
    03h37
Built an open-source Streamlit app to visualize confusion matrices
   What my project does? This is a simple Streamlit web app that generates clean confusion matrices from CSV files or manual inputs. It supports binary and multi-class classification, including string labels, shows common metrics like accuracy and F1-score, and lets you export the matrix as an image....