NeuroAI is a Python suite developed by Facebook Research for neuroscience research across all modalities. It provides tools and frameworks to analyze and model neural data from various sources and measurement techniques.
#python
30 items
Magicbind is a tool that automatically builds Python extension modules directly from C++ code, streamlining the process of creating Python bindings for C++ libraries without manual wrapper code.
Geneva MCP is a time-series forecasting tool for Claude Desktop that enables predictive analytics on temporal data. It provides forecasting capabilities through Claude's interface for analyzing trends and patterns in time-based datasets.
Cohorte AI open-sourced a six-library Python governance stack for AI agents under Apache 2.0, covering reliability certification, policy enforcement, context routing, knowledge orchestration, monitoring, and identity management. The stack was built from 60+ enterprise deployments and includes a free playbook.
The author discusses switching from Uv to PDM for Python dependency management, noting PDM's advantages in handling monorepos and its plugin ecosystem. The transition involved adapting workflows and configuration files to the new tool.
Chat-py is a Python port of Vercel's chat SDK, enabling developers to build conversational AI applications using Python. The project provides Python implementations of Vercel's chat components and utilities.
Pixi is a package manager that handles both Python and C/C++ libraries, offering a unified solution for managing dependencies across these programming languages. It aims to simplify development workflows by providing a single tool for multiple language ecosystems.
CLI-use is a Python tool that converts any MCP server into a native command-line interface. It eliminates JSON-RPC overhead and allows MCP tools to be used like regular shell commands, with persistent aliases and agent compatibility. The tool works with various MCP servers and reduces token usage by 60-80% compared to standard MCP implementations.
HushBee is an open-source Python engine designed to redact personally identifiable information (PII) from images, PDFs, and spreadsheets. The tool helps protect sensitive data by automatically detecting and obscuring PII in various document formats.
A 2015 Python developer email discusses reactions to type hints from a mediocre programmer's perspective, expressing concerns about complexity and learning curves while acknowledging potential benefits for large codebases.
Pydantic Monty has launched a $5,000 bug bounty program to identify security vulnerabilities in their software. The program offers rewards for responsibly disclosed security issues found in their codebase.
Sprag is a full-stack Python framework that allows developers to write both backend and browser code in Python without requiring JavaScript. The framework compiles Python to JavaScript for the browser and maintains everything in a single model including state, actions, and realtime functionality.
Anvil-uplink-cli is a command-line interface for Anvil.works apps that allows querying, calling functions, and accessing data tables. It features multi-app profiles and a security-focused dotenv system designed to keep uplink keys safe from AI coding agents by preventing key exposure in transcripts.
Scryptian is a tool that allows users to run local AI skills using Ctrl and Alt keyboard shortcuts with Python and Ollama integration. The project enables local AI functionality through keyboard commands.
Goempy is a tool that embeds a CPython interpreter within Go binaries, allowing developers to ship Python code alongside Go applications. This enables running Python scripts directly from compiled Go programs without requiring external Python installations.
Plotnine is a Python implementation of the grammar of graphics, providing a declarative API for creating statistical graphics. It is based on the same principles as ggplot2 in R, allowing users to build complex visualizations by combining simple components.
Agent-consistency is a Python library that provides a consistency layer for multi-agent workflows. It helps coordinate and synchronize interactions between different AI agents in complex systems.
Envcore is a Python tool that tracks dependencies through runtime import tracing. It monitors which modules are imported during execution to provide dependency information.
The article details the implementation of MikroTik's binary API protocol in Python, covering the protocol's structure, encoding methods, and practical usage examples. It explains how to establish connections, send commands, and parse responses using custom Python code.
The article discusses how Python notebooks need to evolve for the AI era, suggesting they should become more interactive and collaborative tools. It explores new approaches to notebook design that better support modern AI workflows and development practices.
PydanticAI is running a "Hack Monty" challenge where participants can win $5,000 by hacking a simulated Monty Hall problem environment. The challenge tests AI agents' ability to solve the classic probability puzzle through strategic decision-making.
Pelican 4.12 has been released with several improvements including support for Python 3.13, enhanced documentation, and various bug fixes. The update also includes new features for theme developers and improvements to the plugin system.
The PyTexas 2026 conference featured presentations on Python development, community discussions, and networking opportunities for attendees. Key topics included software engineering practices, open-source contributions, and emerging Python technologies.
Faceoff is a terminal UI application written in Python for following live NHL games and browsing standings and statistics. The app was developed using Claude Code and can be installed via the command 'uvx faceoff'.
A Python API for controlling backlit keyboards currently supports Linux, with macOS support in development. The package enables custom notification systems like blinking alerts for website monitoring. Windows compatibility hasn't been tested yet.
This talk introduces Python programming language basics, covering fundamental concepts and practical applications for beginners. It provides an overview of Python's syntax, core features, and common use cases in software development.
A Python program that displays Linux cgroup memory information evolved from showing two fields to needing three. The author considered creating a general solution for any number of fields but opted for a simpler hard-coded three-field version with a new command line option. This pragmatic approach provided immediate functionality without requiring a major redesign.
Python docstrings are attached to functions and scattered throughout code, making them local documentation. They work well for summarizing individual functions but poorly for providing overviews or documenting complex interactions between components.
The author describes a brute-force approach to map IPv4 addresses to Autonomous System Numbers in Python 2 using a sparse file. By storing ASN data for each /24 network block in a file, the method allows efficient lookups with minimal memory usage. The implementation proved straightforward and created a 53 MB data file covering about 16.5 million /24 networks.
The author discusses whether mmap() would perform better than plain read() for their Python code that maps IPv4 subnets to ASNs. They conclude mmap() would likely be worse due to Python's limitations and single-lookup use case, though performance depends on access patterns. The author recommends using mmap() primarily for code simplicity rather than performance.