0x3d.Site
is designed for aggregating information.
Python
Python is a versatile, high-level programming language known for its simplicity and readability. It’s widely used in web development, data analysis, AI, and scientific computing, supported by a rich ecosystem of libraries.
dataclasses — Data Classes
Source code: Lib/dataclasses.py This module provides a decorator and functions for automatically adding generated special methods such as__init__() and__repr__() to user-defined classes. It was ori...
curses — Terminal handling for character-cell displays
Source code: Lib/curses The curses module provides an interface to the curses library, the de-facto standard for portable advanced terminal handling. While curses is most widely used in the Unix en...
cssutils
A CSS Cascading Style Sheets library for Python
selenium
Official Python bindings for Selenium WebDriver
GitHub - gevent/gevent: Coroutine-based concurrency library for Python
Preview
GitHub - django/daphne: Django Channels HTTP/WebSocket server
Preview
GitHub - openstack/cliff: Command Line Interface Formulation Framework. Mirror of code maintained at opendev.org.
Preview
GitHub - sloria/doitlive: Because sometimes you need to do it live
Preview
GitHub - cdgriffith/Box: Python dictionaries with advanced dot notation access
Preview
GitHub - tartley/colorama: Simple cross-platform colored terminal text in Python
Preview
asyncio — Asynchronous I/O
Hello World!: asyncio is a library to write concurrent code using the async/await syntax. asyncio is used as a foundation for multiple Python asynchronous frameworks that provide high-performance n...
difflib — Helpers for computing deltas
Source code: Lib/difflib.py This module provides classes and functions for comparing sequences. It can be used for example, for comparing files, and can produce information about file differences i...
Open Source Cloud Computing Infrastructure - OpenStack
OpenStack is an open source cloud computing infrastructure software project and is one of the three most active open source projects in the world.
multiprocessing — Process-based parallelism
Source code: Lib/multiprocessing/ Availability: not Emscripten, not WASI. This module does not work or is not available on WebAssembly platforms wasm32-emscripten and wasm32-wasi. See WebAssembly p...
GitHub - pgjones/hypercorn: Hypercorn is an ASGI and WSGI Server based on Hyper libraries and inspired by Gunicorn.
Preview
GitHub - django-cache-machine/django-cache-machine: Automatic caching and invalidation for Django models through the ORM.
Preview
GitHub - sehmaschine/django-grappelli: A jazzy skin for the Django Admin-Interface (official repository).
Preview
GitHub - sirfz/tesserocr: A Python wrapper for the tesseract-ocr API
Preview
GitHub - copier-org/copier: Library and command-line utility for rendering projects templates.
Preview
GitHub - scrapy/scrapy: Scrapy, a fast high-level web crawling & scraping framework for Python.
Preview
Python - Visual Studio Marketplace
Extension for Visual Studio Code - Python language support with extension access points for IntelliSense (Pylance), Debugging (Python Debugger), linting, formatting, refactoring, unit tests, and more.
coverage
Code coverage measurement for Python
GitHub - pennersr/django-allauth: Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
Preview
doublex
Python test doubles
configparser — Configuration file parser
Source code: Lib/configparser.py This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows ...
GitHub - bbangert/beaker: WSGI middleware for sessions and caching
Preview
GitHub - mitsuhiko/pluginbase: A simple but flexible plugin system for Python.
Preview
GitHub - nicfit/eyeD3: eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play time, etc.) is also provided. The formats supported are ID3v1 (1.0/1.1) and ID3v2 (2.3/2.4).
Preview
GitHub - sqlalchemy/dogpile.cache: dogpile.cache is a Python caching API which provides a generic interface to caching backends of any variety
dogpile.cache is a Python caching API which provides a generic interface to caching backends of any variety - sqlalchemy/dogpile.cache
Panda3D | Open Source Framework for 3D Rendering & Games
Panda3D is an open-source, cross-platform, completely free-to-use engine for realtime 3D games, visualizations, simulations, experiments — you name it! Its rich feature set readily tailors to your specific workflow and development needs.
mimetypes — Map filenames to MIME types
Source code: Lib/mimetypes.py The mimetypes module converts between a filename or URL and the MIME type associated with the filename extension. Conversions are provided from filename to MIME type a...
GitHub - beetbox/beets: music library manager and MusicBrainz tagger
Preview
GitHub - ansible/ansible: Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deployment to network configuration to cloud management, in a language that approaches plain English, using SSH, with no agents to install on remote systems. https://docs.ansible.com.
Preview
GitHub - simonw/sqlite-utils: Python CLI utility and library for manipulating SQLite databases
Preview
GitHub - miracle2k/webassets: Asset management for Python web development.
Preview
GitHub - jpadilla/pyjwt: JSON Web Token implementation in Python
Preview
GitHub - python-attrs/attrs: Python Classes Without Boilerplate
Preview
GitHub - PetrochukM/PyTorch-NLP: Basic Utilities for PyTorch Natural Language Processing (NLP)
Preview
GitHub - Instagram/MonkeyType: A Python library that generates static type annotations by collecting runtime types
Preview
GitHub - typeddjango/awesome-python-typing: Collection of awesome Python types, stubs, plugins, and tools to work with them.
Preview
GitHub - streamlit/streamlit: Streamlit — A faster way to build and share data apps.
Preview
Project Jupyter
The Jupyter Notebook is a web-based interactive computing platform. The notebook combines live code, equations, narrative text, visualizations, interactive dashboards and other media.
GitHub - carlosescri/DottedDict: Python library that provides a method of accessing lists and dicts with a dotted path notation.
Preview
GitHub - dbcli/pgcli: Postgres CLI with autocompletion and syntax highlighting
Preview
MySQL for Python
Download MySQL for Python for free. MySQL database connector for Python programming. MySQLdb is a Python DB API-2.0-compliant interface; see PEP-249 for details.
GitHub - mher/flower: Real-time monitor and web admin for Celery distributed task queue
Preview
GitHub - eventlet/eventlet: Concurrent networking library for Python
Preview
GitHub - grantjenks/python-sortedcontainers: Python Sorted Container Types: Sorted List, Sorted Dict, and Sorted Set
Preview
GitHub - tmux-python/tmuxp: 🖥️ Session manager for tmux, build on libtmux.
Preview
GitHub - datafolklabs/cement: Application Framework for Python
Preview
GitHub - grantjenks/python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.
Preview
GitHub - prompt-toolkit/python-prompt-toolkit: Library for building powerful interactive command line applications in Python
Preview
GitHub - pylint-dev/pylint: It's not just a linter that annoys you!
Preview
logging — Logging facility for Python
Source code: Lib/logging/__init__.py Important: This page contains the API reference information. For tutorial information and discussion of more advanced topics, see Basic Tutorial, Advanced Tutor...
pathlib — Object-oriented filesystem paths
Source code: Lib/pathlib.py This module offers classes representing filesystem paths with semantics appropriate for different operating systems. Path classes are divided between pure paths, which p...
subprocess — Subprocess management
Source code: Lib/subprocess.py The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace seve...
unittest — Unit testing framework
Source code: Lib/unittest/__init__.py(If you are already familiar with the basic concepts of testing, you might want to skip to the list of assert methods.) The unittest unit testing framework was ...
GitHub - DiffSK/configobj: Python 3+ compatible port of the configobj library
Preview
GitHub - dbcli/litecli: CLI for SQLite Databases with auto-completion and syntax highlighting
Preview
GitHub - libAudioFlux/audioFlux: A library for audio and music analysis, feature extraction.
Preview
GitHub - timofurrer/try: Dead simple CLI tool to try Python packages - It's never been easier!
Preview
GitHub - scottrogowski/code2flow: Pretty good call graphs for dynamic languages
Preview
GitHub - peterbrittain/asciimatics: A cross platform package to do curses-like operations, plus higher level APIs and widgets to create text UIs and ASCII art animations
Preview
GitHub - tyiannak/pyAudioAnalysis: Python Audio Analysis Library: Feature Extraction, Classification, Segmentation and Applications
Preview
GitHub - aboSamoor/polyglot: Multilingual text (NLP) processing toolkit
Preview
GitHub - facebook/PathPicker: PathPicker accepts a wide range of input -- output from git commands, grep results, searches -- pretty much anything. After parsing the input, PathPicker presents you with a nice UI to select which files you're interested in. After that you can open them in your favorite editor or execute arbitrary commands.
Preview
Kivy: Cross-platform Python Framework for NUI
Open source Python framework for rapid development of applications
that make use of innovative user interfaces, such as multi-touch apps.
GitHub - librosa/librosa: Python library for audio and music analysis
Preview
GitHub - pudo/dataset: Easy-to-use data handling for SQL data stores with support for implicit table creation, bulk loading, and transactions.
Preview
GitHub - lericson/pylibmc: A Python wrapper around the libmemcached interface from TangentOrg.
Preview
GitHub - django/channels: Developer-friendly asynchrony for Django
Preview
GitHub - buildout/buildout: Buildout is a deployment automation tool written in and extended with Python
Preview
GitHub - crossbario/autobahn-python: WebSocket and WAMP in Python for Twisted and asyncio
Preview
GitHub - dbcli/mycli: A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.
Preview
GitHub - selwin/python-user-agents: A Python library that provides an easy way to identify devices like mobile phones, tablets and their capabilities by parsing (browser) user agent strings.
Preview
GitHub - gorakhargosh/watchdog: Python library and shell utilities to monitor filesystem events.
Preview
GitHub - wagtail/wagtail: A Django content management system focused on flexibility and user experience
Preview
GitHub - oauthlib/oauthlib: A generic, spec-compliant, thorough implementation of the OAuth request-signing logic
Preview
radar
Generate random date(time).
Modularity, scalability & security for your business
TRYTON is business software, ideal for companies of any size, easy to use, complete and 100% Open Source.
unittest.mock — mock object library
Source code: Lib/unittest/mock.py unittest.mock is a library for testing in Python. It allows you to replace parts of your system under test with mock objects and make assertions about how they hav...
GitHub - pymssql/pymssql: Official home for the pymssql source code.
Preview
GitHub - ajenti/ajenti: Ajenti Core and stock plugins
Preview
GitHub - gleitz/howdoi: instant coding answers via the command line
Preview
GitHub - pypa/bandersnatch: A PyPI mirror client according to PEP 381 http://www.python.org/dev/peps/pep-0381/
Preview
GitHub - indico/indico: Indico - A feature-rich event management system, made @ CERN, the place where the Web was born.
Preview
concurrent.futures — Launching parallel tasks
Source code: Lib/concurrent/futures/thread.py and Lib/concurrent/futures/process.py The concurrent.futures module provides a high-level interface for asynchronously executing callables. The asynchr...
HermesCache
Python caching library with tag-based invalidation and dogpile effect prevention
Unidecode
ASCII transliterations of Unicode text
GitHub - lorien/grab: Web Scraping Framework
Preview
GitHub - zopefoundation/ZODB: Python object-oriented database
Preview
GitHub - python/cpython: The Python programming language
Preview
GitHub - keon/algorithms: Minimal examples of data structures and algorithms in Python
Preview
GeoDjango | Django documentation
The web framework for perfectionists with deadlines.
GitHub - PyCQA/flake8: flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.
Preview
datetime — Basic date and time types
Source code: Lib/datetime.py The datetime module supplies classes for manipulating dates and times. While date and time arithmetic is supported, the focus of the implementation is on efficient attr...
sqlite3 — DB-API 2.0 interface for SQLite databases
Source code: Lib/sqlite3/ SQLite is a C library that provides a lightweight disk-based database that doesn’t require a separate server process and allows accessing the database using a nonstandard ...
GitHub - sebastien/cuisine: Chef-like functionality for Fabric
Preview
GitHub - jmcnamara/XlsxWriter: A Python module for creating Excel XLSX files.
Preview
GitHub - ibayer/fastFM: fastFM: A Library for Factorization Machines
Preview
GitHub - sergree/matchering: 🎚️ Open Source Audio Matching and Mastering
Preview
GitHub - pyca/cryptography: cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.
Preview
pytz
World timezone definitions, modern and historical
GitHub - gawel/pyquery: A jquery-like library for python
Preview
GitHub - paramiko/paramiko: The leading native Python SSHv2 protocol library.
Preview
GitHub - laixintao/iredis: Interactive Redis: A Terminal Client for Redis with AutoCompletion and Syntax Highlighting.
Preview
PyPy / pypy · GitLab
PyPy is a very fast and compliant implementation of the Python language.
GitHub - facebook/pyre-check: Performant type-checking for python.
Preview
GitHub - faif/python-patterns: A collection of design patterns/idioms in Python
Preview
GitHub - dylanaraps/pywal: 🎨 Generate and change color-schemes on the fly.
Preview
GitHub - SCons/scons: SCons - a software construction tool
Preview
GitHub - beetbox/audioread: cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding for Python
Preview
GitHub - jazzband/django-taggit: Simple tagging for django
Preview
GitHub - jazzband/django-pipeline: Pipeline is an asset packaging library for Django.
Preview
GitHub - wooey/Wooey: A Django app that creates automatic web UIs for Python scripts.
Preview
GitHub - lepture/authlib: The ultimate Python library in building OAuth, OpenID Connect clients and servers. JWS,JWE,JWK,JWA,JWT included.
Preview
GitHub - google/python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.
Preview
GitHub - keunwoochoi/kapre: kapre: Keras Audio Preprocessors
Preview
GitHub - openembedded/bitbake: The official bitbake Git is at https://git.openembedded.org/bitbake/. Do not open issues or file pull requests here.
Preview
Apache Kafka
Apache Kafka: A Distributed Streaming Platform.
PyCharm: the Python IDE for data science and web development
The Python IDE for data science and web development with intelligent code completion, on-the-fly error checking, quick-fixes, and much more.
GitHub - WhyNotHugo/python-barcode: ㊙️ Create standard barcodes with Python. No external dependencies. 100% Organic Python.
Preview
GitHub - html5lib/html5lib-python: Standards-compliant library for parsing and serializing HTML documents and fragments in Python
Preview
GitHub - dhamaniasad/awesome-postgres: A curated list of awesome PostgreSQL software, libraries, tools and resources, inspired by awesome-mysql
Preview
GitHub - glamp/bashplotlib: plotting in the terminal
Preview
GitHub - facebookresearch/hydra: Hydra is a framework for elegantly configuring complex applications
Preview
GitHub - TheAlgorithms/Python: All Algorithms implemented in Python
Preview
GitHub - Parisson/TimeSide: scalable audio processing framework and server written in Python
Preview
GitHub - psf/black: The uncompromising Python code formatter
Preview
GitHub - pallets/click: Python composable command line interface toolkit
Preview
GitHub - locustio/locust: Write scalable load tests in plain Python 🚗💨
Preview
GitHub - encode/uvicorn: An ASGI web server, for Python. 🦄
Preview
GitHub - python/typeshed: Collection of library stubs for Python, with static types
Preview
GitHub - gabrielfalcao/HTTPretty: Intercept HTTP requests at the Python socket level. Fakes the whole socket module
Preview
GitHub - worldveil/dejavu: Audio fingerprinting and recognition in Python
Preview
GitHub - Textualize/rich: Rich is a Python library for rich text and beautiful formatting in the terminal.
Preview
Bowler · Safe code refactoring for modern Python
Safe code refactoring for modern Python
GitHub - hi-primus/optimus: :truck: Agile Data Preparation Workflows made easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark
Preview
GitHub - pyca/pynacl: Python binding to the Networking and Cryptography (NaCl) library
Preview
GitHub - micropython/micropython: MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Preview
GitHub - jiaaro/pydub: Manipulate audio with a simple and easy high level interface
Preview
GitHub - twisted/twisted: Event-driven networking engine written in Python.
Preview
Qt | Tools for Each Stage of Software Development Lifecycle
All the essential Qt tools for all stages of Software Development Lifecycle: planning, design, development, testing, and deployment.
spaCy · Industrial-strength Natural Language Processing in Python
spaCy is a free open-source library for Natural Language Processing in Python. It features NER, POS tagging, dependency parsing, word vectors and more.
GitHub - rsalmei/alive-progress: A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
Preview
team-simpy / simpy · GitLab
GitLab.com
GitHub - pyeve/cerberus: Lightweight, extensible data validation library for Python
Preview
GitHub - tylerlaberge/PyPattyrn: A simple library for implementing common design patterns.
Preview
GitHub - HBNetwork/python-decouple: Strict separation of config from code.
Preview
GitHub - feincms/feincms: A Django-based CMS with a focus on extensibility and concise code
Preview
GitHub - pytorch/pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration
Preview
GitHub - pybuilder/pybuilder: Software build automation tool for Python.
Preview
GitHub - kornia/kornia: Geometric Computer Vision Library for Spatial AI
Preview
GitHub - jendrikseipp/vulture: Find dead Python code
Preview
GitHub - quodlibet/mutagen: Python module for handling audio metadata
Preview
GitHub - google/pytype: A static type analyzer for Python code
Preview
GitHub - pythonnet/pythonnet: Python for .NET is a package that gives Python programmers nearly seamless integration with the .NET Common Language Runtime (CLR) and provides a powerful application scripting tool for .NET developers.
Preview
GitHub - tmux/tmux: tmux source code
Preview
GitHub - MagicStack/uvloop: Ultra fast asyncio event loop.
Preview
GitHub - mongodb/motor: Motor - the async Python driver for MongoDB and Tornado or asyncio
Preview
GitHub - s3tools/s3cmd: Official s3cmd repo -- Command line tool for managing S3 compatible storage services (including Amazon S3 and CloudFront).
Preview
GitHub - dfunckt/django-rules: Awesome Django authorization, without the database
Preview
GitHub - JaidedAI/EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.
Preview
GitHub - aws/aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).
Preview
GitHub - python/mypy: Optional static typing for Python
Preview
GitHub - mpdavis/python-jose: A JOSE implementation in Python
Preview
GitHub - errbotio/errbot: Errbot is a chatbot, a daemon that connects to your favorite chat service and bring your tools and some fun into the conversation.
Preview
GitHub - prabhupant/python-ds: No non-sense and no BS repo for how data structure code should be in Python - simple and elegant.
Preview
GitHub - jazzband/django-oauth-toolkit: OAuth2 goodies for the Djangonauts!
Preview
GitHub - robinhood/faust: Python Stream Processing
Preview
Apache Libcloud is a standard Python library that abstracts away differences among multiple cloud provider APIs
Python library for interacting with many of the popular cloud service providers using a unified API.
GitHub - fxsjy/jieba: 结巴中文分词
Preview
GitHub - jab/bidict: The bidirectional mapping library for Python.
Preview
GitHub - timofurrer/awesome-asyncio: A curated list of awesome Python asyncio frameworks, libraries, software and resources
Preview
GitHub - httpie/cli: 🥧 HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more.
Preview
GitHub - DmytroLitvinov/awesome-flake8-extensions: :octocat: A curated awesome list of flake8 extensions. Feel free to contribute! :mortar_board:
Preview
GitHub - humiaozuzu/awesome-flask: A curated list of awesome Flask resources and plugins
Preview
GitHub - nvbn/thefuck: Magnificent app which corrects your previous console command.
Preview
GitHub - twisted/treq: Python requests like API built on top of Twisted's HTTP client.
Preview
GitHub - mingrammer/diagrams: :art: Diagram as Code for prototyping cloud system architectures
Preview
SQLAlchemy
The Database Toolkit for Python
GitHub - sanic-org/sanic: Accelerate your web app development | Build fast. Run fast.
Preview
structlog
Simple. Powerful. Fast. Pick three. Release 24.4.0( What’s new?) structlog is the production-ready logging solution for Python: Simple: Everything is about functions that take and return dictionari...
GitHub - mhammond/pywin32: Python for Windows (pywin32) Extensions
Preview
GitHub - PyMySQL/PyMySQL: MySQL client library for Python
Preview
GitHub - platformio/platformio-core: Your Gateway to Embedded Software Development Excellence :alien:
Preview
Build software better, together
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
GitHub - simonw/datasette: An open source multi-tool for exploring and publishing data
Preview
GitHub - yoloseem/awesome-sphinxdoc: A curated list of awesome tools for Sphinx Python Documentation Generator
Preview
GitHub - cookiecutter/cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.
Preview
GitHub - python-trio/trio: Trio – a friendly Python library for async concurrency and I/O
Preview
GitHub - vinta/pangu.py: Paranoid text spacing in Python
Paranoid text spacing in Python. Contribute to vinta/pangu.py development by creating an account on GitHub.
GitHub - pyinvoke/invoke: Pythonic task management & command execution.
Preview
GitHub - microsoft/PTVS: Python Tools for Visual Studio
Preview
GitHub - jet-admin/jet-bridge: Jet Admin – No-code Business App builder
Preview
Home
OpenCV provides a real-time optimized Computer Vision library, tools, and hardware. It also supports model execution for Machine Learning (ML) and Artificial Intelligence (AI).
HARFANG® 3D - Real Time Visualization Tools
Software framework for modern multimedia application development.
GitHub - mailgun/flanker: Python email address and Mime parsing library
Preview
GitHub - linkedin/shiv: shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.
Preview
GitHub - ray-project/ray: Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a set of AI Libraries for accelerating ML workloads.
Preview
GitHub - PyMySQL/mysqlclient: MySQL database connector for Python (with Python 3 support)
Preview
GitHub - justquick/django-activity-stream: Generate generic activity streams from the actions on your site. Users can follow any actors' activities for personalized streams.
Preview
GitHub - planetopendata/awesome-sqlite: A collection of awesome sqlite tools, scripts, books, etc
Preview
GitHub - dry-python/returns: Make your functions return something meaningful, typed, and safe!
Preview
GitHub - ultrajson/ultrajson: Ultra fast JSON decoder and encoder written in C with Python bindings
Preview
GitHub - fastapi/fastapi: FastAPI framework, high performance, easy to learn, fast to code, ready for production
Preview
GitHub - ycm-core/YouCompleteMe: A code-completion engine for Vim
Preview
Build software better, together
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
GitHub - Pylons/colander: A serialization/deserialization/validation library for strings, mappings and lists.
Preview
GitHub - patx/pickledb: pickleDB is an open source key-value store using Python's json module.
Preview
GitHub - isnowfy/snownlp: Python library for processing Chinese text
Preview
GitHub - benfred/implicit: Fast Python Collaborative Filtering for Implicit Feedback Datasets
Preview
GitHub - clips/pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.
Preview
GitHub - lancopku/pkuseg-python: pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation
Preview
GitHub - Manisso/fsociety: fsociety Hacking Tools Pack – A Penetration Testing Framework
Preview
GitHub - sphinx-doc/sphinx: The Sphinx documentation generator
Preview
GitHub - fabric/fabric: Simple, Pythonic remote execution and deployment.
Preview
GitHub - flask-restful/flask-restful: Simple framework for creating REST APIs
Preview
GitHub - keras-team/keras: Deep Learning for humans
Preview
GitHub - redis/redis-py: Redis Python client
Preview
GitHub - spotify/luigi: Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in.
Preview
GitHub - akfamily/akshare: AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库
Preview
GitHub - madmaze/pytesseract: A Python wrapper for Google Tesseract
Preview
GitHub - pynamodb/PynamoDB: A pythonic interface to Amazon's DynamoDB
Preview
GitHub - Suor/django-cacheops: A slick ORM cache with automatic granular event-driven invalidation.
Preview
Home
Platform created by the community to programmatically author, schedule and monitor workflows.
GitHub - davidhalter/jedi-vim: Using the jedi autocompletion library for VIM.
Preview
GitHub - pydantic/pydantic: Data validation using Python type hints
Preview
GitHub - lyst/lightfm: A Python implementation of LightFM, a hybrid recommendation algorithm.
Preview
GitHub - bpython/bpython: bpython - A fancy curses interface to the Python interactive interpreter
Preview
GitHub - schematics/schematics: Python Data Structures for Humans™.
Preview
GitHub - pallets/itsdangerous: Safely pass trusted data to untrusted environments and back.
Preview
GitHub - Kozea/pygal: PYthon svg GrAph plotting Library
Preview
GitHub - cython/cython: The most widely used Python to C compiler
Preview
GitHub - dask/dask: Parallel computing with task scheduling
Preview
GitHub - hoffstadt/DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies
Preview
GitHub - pyston/pyston: (No longer maintained) A faster and highly-compatible implementation of the Python programming language.
Preview
GitHub - matplotlib/matplotlib: matplotlib: plotting with Python
Preview
GitHub - pyglet/pyglet: pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.
Preview
GitHub - python-mode/python-mode: Vim python-mode. PyLint, Rope, Pydoc, breakpoints from box.
Preview
GitHub - stanfordnlp/stanza: Stanford NLP Python library for tokenization, sentence segmentation, NER, and parsing of many human languages
Preview
GitHub - sqlmapproject/sqlmap: Automatic SQL injection and database takeover tool
Preview
GitHub - mongodb/mongo-python-driver: PyMongo - the Official MongoDB Python driver
Preview
GitHub - arrow-py/arrow: 🏹 Better dates & times for Python
Preview
GitHub - ahupp/python-magic: A python wrapper for libmagic
Preview
GitHub - gruns/icecream: 🍦 Never use print() to debug again.
Preview
GitHub - beeware/toga: A Python native, OS native GUI toolkit.
Preview
GitHub - elliotgao2/toapi: Every web site provides APIs.
Preview
GitHub - python-poetry/poetry: Python packaging and dependency management made easy
Preview
GitHub - sixpack/sixpack: Sixpack is a language-agnostic a/b-testing framework
Preview
GitHub - jaraco/path: Object-oriented file system path manipulation
Object-oriented file system path manipulation. Contribute to jaraco/path development by creating an account on GitHub.
GitHub - devpi/devpi: Python PyPi staging server and packaging, testing, release tool
Preview
GitHub - python-jsonschema/jsonschema: An implementation of the JSON Schema specification for Python
Preview
GitHub - spotify/annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk
Preview
GitHub - IronLanguages/ironpython3: Implementation of Python 3.x for .NET Framework that is built on top of the Dynamic Language Runtime.
Preview
GitHub - 0rpc/zerorpc-python: zerorpc for python
Preview
GitHub - pyinstaller/pyinstaller: Freeze (package) Python programs into stand-alone executables
Preview
GitHub - landscapeio/prospector: Inspects Python source files and provides information about type and location of classes, methods etc
Preview
GitHub - Python-Markdown/markdown: A Python implementation of John Gruber’s Markdown with Extension support.
Preview
GitHub - secdev/scapy: Scapy: the Python-based interactive packet manipulation program & library.
Preview
GitHub - numba/numba: NumPy aware dynamic Python compiler using LLVM
Preview
GitHub - inducer/pudb: Full-screen console debugger for Python
Preview
GitHub - trustedsec/social-engineer-toolkit: The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here.
Preview
Build software better, together
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
GitHub - py2exe/py2exe: Create standalone Windows programs from Python code
Preview
GitHub - magenta/magenta: Magenta: Music and Art Generation with Machine Intelligence
Preview
GitHub - bcbio/bcbio-nextgen: Validated, scalable, community developed variant calling, RNA-seq and small RNA analysis
Preview
GitHub - berinhard/model_mommy: No longer maintained, please migrate to model_bakery
Preview
GitHub - piskvorky/gensim: Topic Modelling for Humans
Preview
GitHub - xlwings/xlwings: xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web.
Preview
Build software better, together
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
GitHub - google/yapf: A formatter for Python files
Preview
GitHub - evhub/coconut: Simple, elegant, Pythonic functional programming.
Preview
GitHub - noxrepo/pox: The POX network software platform
Preview
GitHub - flexxui/flexx: Write desktop and web apps in pure Python
Preview
GitHub - ronaldoussoren/py2app: py2app is a Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins from Python scripts.
Preview
GitHub - stephenmcd/hot-redis: Rich Python data types for Redis
Preview
GitHub - pytransitions/transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions
Preview
GitHub - moggers87/salmon: A Python Mail Server
Preview
GitHub - dpkp/kafka-python: Python client for Apache Kafka
Preview
GitHub - sartography/SpiffWorkflow: A powerful workflow engine implemented in pure Python
Preview
GitHub - schemathesis/schemathesis: Supercharge your API testing, catch bugs, and ensure compliance
Preview
GitHub - django/django: The Web framework for perfectionists with deadlines.
Preview
GitHub - tqdm/tqdm: :zap: A Fast, Extensible Progress Bar for Python and CLI
Preview
GitHub - dbader/schedule: Python job scheduling for humans.
Preview
GitHub - nvdv/vprof: Visual profiler for Python
Preview
GitHub - encode/orm: An async ORM. 🗃
Preview
GitHub - modoboa/modoboa: Mail hosting made simple
Preview
GitHub - conda/conda: A system-level, binary package and environment manager running on all major operating systems and platforms.
Preview
GitHub - tinytag/tinytag: Python library for reading audio file metadata
Preview
GitHub - jeffknupp/sandman2: Automatically generate a RESTful API service for your legacy database. No code required!
Preview
GitHub - NicolasHug/Surprise: A Python scikit for building and analyzing recommender systems
Preview
ICU - International Components for Unicode
News
2024-04-17: ICU 75 is now available. It updates to CLDR 45 (beta blog) locale data with new locales and various additions and corrections. C++ code now requires C++17 and is being made more robust. The CLDR MessageFormat 2.0 specification is now in technology preview, together with a
GitHub - sympy/sympy: A computer algebra system written in pure Python
Preview
GitHub - jcarbaugh/django-wordpress: WordPress models and views for Django.
Preview
GitHub - pallets-eco/flask-admin: Simple and extensible administrative interface framework for Flask
Preview
GitHub - pypa/virtualenv: Virtual Python Environment builder
Preview
GitHub - pallets/flask: The Python micro framework for building web applications.
Preview
GitHub - mitmproxy/pdoc: API Documentation for Python Projects
Preview
GitHub - martinrusev/imbox: Python IMAP for Human beings
Preview
GitHub - Supervisor/supervisor: Supervisor process control system for Unix (supervisord)
Preview
GitHub - mymarilyn/clickhouse-driver: ClickHouse Python Driver with native interface support
Preview
GitHub - ponyorm/pony: Pony Object Relational Mapper
Preview
GitHub - Maratyszcza/PeachPy: x86-64 assembler embedded in Python
Preview
GitHub - chapmanb/bcbb: Incubator for useful bioinformatics code, primarily in Python and R
Preview
GitHub - dahlia/awesome-sqlalchemy: A curated list of awesome tools for SQLAlchemy
Preview
GitHub - msiemens/tinydb: TinyDB is a lightweight document oriented database optimized for your happiness :)
Preview
GitHub - apache/spark: Apache Spark - A unified analytics engine for large-scale data processing
Preview
GitHub - tornadoweb/tornado: Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
Preview
GitHub - python-websockets/websockets: Library for building WebSocket servers and clients in Python
Preview
GitHub - pytoolz/cytoolz: Cython implementation of Toolz: High performance functional utilities
Preview
GitHub - python-happybase/happybase: A developer-friendly Python library to interact with Apache HBase
Preview
GitHub - django-guardian/django-guardian: Per object permissions for Django
Preview
GitHub - eliben/pyelftools: Parsing ELF and DWARF in Python
Preview
GitHub - dashingsoft/pyarmor: A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts.
Preview
GitHub - lincolnloop/python-qrcode: Python QR Code image generator
Preview
GitHub - web2py/pydal: A pure Python Database Abstraction Layer
Preview
GitHub - elapouya/python-docx-template: Use a docx as a jinja2 template
Preview
GitHub - ycjuan/libffm: A Library for Field-aware Factorization Machines
Preview
GitHub - prompt-toolkit/ptpython: A better Python REPL
Preview
GitHub - Suor/funcy: A fancy and practical functional tools
Preview
GitHub - amitt001/delegator.py: Subprocesses for Humans 2.0.
Subprocesses for Humans 2.0. Contribute to amitt001/delegator.py development by creating an account on GitHub.
GitHub - jorgenschaefer/elpy: Emacs Python Development Environment
Preview
Build software better, together
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
GitHub - fogleman/Quads: Computer art based on quadtrees.
Preview
GitHub - pallets-eco/flask-debugtoolbar: A toolbar overlay for debugging Flask applications
Preview
GitHub - benedekrozemberczki/karateclub: Karate Club: An API Oriented Open-source Python Framework for Unsupervised Learning on Graphs (CIKM 2020)
Preview
GitHub - more-itertools/more-itertools: More routines for operating on iterables, beyond itertools
Preview
GitHub - PySimpleGUI/PySimpleGUI: Python GUIs for Humans! PySimpleGUI is the top-rated Python application development environment. Launched in 2018 and actively developed, maintained, and supported in 2024. Transforms tkinter, Qt, WxPython, and Remi into a simple, intuitive, and fun experience for both hobbyists and expert users.
Preview
GitHub - PrefectHQ/prefect: Prefect is a workflow orchestration framework for building resilient data pipelines in Python.
Preview
GitHub - tomerfiliba-org/rpyc: RPyC (Remote Python Call) - A transparent and symmetric RPC library for python
Preview
GitHub - py-pdf/pypdf: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files
Preview
Models | Django documentation
The web framework for perfectionists with deadlines.
GitHub - Cornices/cornice: Build Web Services with Pyramid.
Preview
GitHub - borgbackup/borg: Deduplicating archiver with compression and authenticated encryption.
Preview
GitHub - Theano/Theano: Theano was a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. It is being continued as PyTensor: www.github.com/pymc-devs/pytensor
Preview
GitHub - metawilm/cl-python: An implementation of Python in Common Lisp
Preview
GitHub - josephreisinger/vowpal_porpoise: lightweight python wrapper for vowpal wabbit
Preview
GitHub - gotcha/ipdb: Integration of IPython pdb
Preview
GitHub - vispy/vispy: Main repository for Vispy
Preview
GitHub - sdispater/pendulum: Python datetimes made easy
Preview
GitHub - encode/django-rest-framework: Web APIs for Django. 🎸
Preview
GitHub - mvantellingen/localshop: local pypi server (custom packages and auto-mirroring of pypi)
Preview
GitHub - pypi/warehouse: The Python Package Index
Preview
GitHub - pytoolz/toolz: A functional standard library for Python.
Preview
GitHub - openai/gym: A toolkit for developing and comparing reinforcement learning algorithms.
Preview
GitHub - SciTools/cartopy: Cartopy - a cartographic python library with matplotlib support
Preview
GitHub - python-rope/rope: a python refactoring library
Preview
GitHub - amoffat/sh: Python process launching
Preview
GitHub - mwaskom/seaborn: Statistical data visualization in Python
Preview
GitHub - pyqtgraph/pyqtgraph: Fast data visualization and GUI tools for scientific / engineering applications
Preview
GitHub - scanny/python-pptx: Create Open XML PowerPoint documents in Python
Preview
GitHub - nucleic/enaml: Declarative User Interfaces for Python
Preview
GitHub - numenta/nupic-legacy: Numenta Platform for Intelligent Computing is an implementation of Hierarchical Temporal Memory (HTM), a theory of intelligence based strictly on the neuroscience of the neocortex.
Preview
GitHub - PyCQA/isort: A Python utility / library to sort imports.
Preview
GitHub - pystorm/streamparse: Run Python in Apache Storm topologies. Pythonic API, CLI tooling, and a topology DSL.
Preview
GitHub - vega/altair: Declarative statistical visualization library for Python
Preview
GitHub - fengsp/plan: Crontab jobs management in Python
Preview
GitHub - thauber/django-schedule: A calendaring app for Django. It is now stable, Please feel free to use it now. Active development has been taken over by bartekgorny.
Preview
GitHub - MongoEngine/mongoengine: A Python Object-Document-Mapper for working with MongoDB
Preview
Build software better, together
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
GitHub - psycopg/psycopg: New generation PostgreSQL database adapter for the Python programming language
Preview
Build software better, together
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
GitHub - python-pillow/Pillow: Python Imaging Library (Fork)
Preview
GitHub - tschellenbach/Stream-Framework: Stream Framework is a Python library, which allows you to build news feed, activity streams and notification systems using Cassandra and/or Redis. The authors of Stream-Framework also provide a cloud service for feed technology:
Preview
GitHub - thumbor/thumbor: thumbor is an open-source photo thumbnail service by globo.com
Preview
GitHub - pyeve/eve: REST API framework designed for human beings
Preview
GitHub - dmlc/xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow
Preview
GitHub - canonical/cloud-init: Official upstream for the cloud-init: cloud instance initialization
Preview
GitHub - emirozer/fake2db: create custom test databases that are populated with fake data
Preview
GitHub - rspeer/python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.
Preview
GitHub - VowpalWabbit/vowpal_wabbit: Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.
Preview
GitHub - saltstack/salt: Software to automate the management and configuration of any infrastructure or application at scale. Get access to the Salt software package repository here:
Preview
GitHub - bqplot/bqplot: Plotting library for IPython/Jupyter notebooks
Preview
GitHub - pygraphviz/pygraphviz: Python interface to Graphviz graph drawing package
Preview
GitHub - mahmoud/boltons: 🔩 Like builtins, but boltons. 250+ constructs, recipes, and snippets which extend (and rely on nothing but) the Python standard library. Nothing like Michael Bolton.
Preview
Selenium
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
Primarily it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should) also be automated as well. Getting Started Selenium WebDriver Selenium WebDriver If you want to create robust, browser-based regression automation suites and tests, scale and distribute scripts across many environments, then you want to use Selenium WebDriver, a collection of language specific bindings to drive a browser - the way it is meant to be driven.
GitHub - benhamner/Metrics: Machine learning evaluation metrics, implemented in Python, R, Haskell, and MATLAB / Octave
Preview
GitHub - datastax/python-driver: DataStax Python Driver for Apache Cassandra
Preview
GitHub - jazzband/django-debug-toolbar: A configurable set of panels that display various debug information about the current request/response.
Preview
GitHub - django-tastypie/django-tastypie: Creating delicious APIs for Django apps since 2010.
Preview
GitHub - has2k1/plotnine: A Grammar of Graphics for Python
Preview
GitHub - mindsdb/mindsdb: The platform for building AI from enterprise data
Preview
GitHub - markusschanta/awesome-jupyter: A curated list of awesome Jupyter projects, libraries and resources
Preview
GitHub - dateutil/dateutil: Useful extensions to the standard Python datetime features
Preview
GitHub - ionelmc/python-manhole: Debugging manhole for python applications.
Preview
GitHub - pallets/werkzeug: The comprehensive WSGI web application library.
Preview
GitHub - python-eel/Eel: A little Python library for making simple Electron-like HTML/JS GUI apps
Preview
GitHub - voronind/awesome-slugify: Python flexible slugify function
Preview
GitHub - pymc-devs/pymc: Bayesian Modeling and Probabilistic Programming in Python
Preview
GitHub - jazzband/pip-tools: A set of tools to keep your pinned Python dependencies fresh.
Preview
GitHub - flask-api/flask-api: Browsable web APIs for Flask.
Preview
GitHub - getsentry/sentry-python: The official Python SDK for Sentry.io
Preview
GitHub - gunnery/gunnery: Remote task execution tool
Preview
GitHub - statsmodels/statsmodels: Statsmodels: statistical modeling and econometrics in Python
Preview
GitHub - pyinfra-dev/pyinfra: pyinfra turns Python code into shell commands and runs them on your servers. Execute ad-hoc commands and write declarative operations. Target SSH servers, local machine and Docker containers. Fast and scales from one server to thousands.
Preview
GitHub - bokeh/bokeh: Interactive Data Visualization in the browser, from Python
Preview
GitHub - kootenpv/yagmail: Send email in Python conveniently for gmail using yagmail
Preview
GitHub - pallets-eco/blinker: A fast Python in-process signal/event dispatching system.
Preview
GitHub - googleapis/google-api-python-client: 🐍 The official Python client library for Google's discovery based APIs.
Preview
GitHub - life4/textdistance: 📐 Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.
Preview
Programming Tips & Tricks
Code smarter, not harder—insider tips and tricks for developers.
Using Lua's Garbage Collector for Fine-Tuned Memory Management in Large Applications
#1
Leveraging Lua's Environment for Dynamic Code Execution and Security
#2
Mastering Lua's Table Manipulation: Advanced Techniques for Handling Large Data Sets
#3
Enhancing Code Readability and Debugging with Lua's Debug Library
#4
Leveraging Lua's Coroutines for Efficient Concurrency and Asynchronous Programming
#5
Leveraging Lua's Tail Call Optimization for Efficient Recursion and Avoiding Stack Overflow in Deep Recursive Functions
#6
Creating Custom Iterators in Lua for Traversing Complex Data Structures Like Graphs or Trees
#7
How to Maximize the Speed of Data Lookup in Lua Using Hash Tables and Optimized Table Management
#8
Advanced Techniques for Asynchronous Programming in Lua Using Coroutines for High-Performance Systems
#9
Mastering Efficient Memory Management in Lua with Weak Tables for Optimal Resource Utilization
#10
Error Solutions
Turn frustration into progress—fix errors faster than ever.
Visual Studio Crashes When Opening a File or Debugging a Project
#1
Visual Studio Cannot Connect to GitHub or Other Version Control System
#2
Visual Studio Freezes During Build or Debug Process
#3
Visual Studio Fails to Build Project with "Unable to Start Program" Error
#4
Visual Studio Shows "Cannot Open the Solution" Error Message When Opening a Project
#5
Visual Studio Crashes on Startup with "The application has encountered an error" Message
#6
Visual Studio Fails to Detect Changes in Files When Using Git Integration
#7
Visual Studio Crashes with "Unknown Exception" When Trying to Build Solution
#8
Visual Studio Hangs During Debugging with "Unable to Start Program" Error
#9
Visual Studio Fails to Load Solution with "The system cannot find the file specified" Error
#10
Shortcuts
The art of speed—shortcuts to supercharge your workflow.
Maximize Your Code Navigation with Cmd + Option + Left Arrow!
#1
Feel Like a Pro with Cmd + Control + D: Quickly View Definitions Like Never Before!
#2
Unlock Speed and Precision with Cmd + Shift + M: Maximize Your Productivity!
#3
Don’t Panic, Use Cmd + Option + I to Open the Developer Tools Now!
#4
Stop Wasting Time and Jump to Your File in an Instant with Cmd + Shift + O!
#5
Quickly Fix Your Code with ‘Cmd + Option + L’ for Instant Code Formatting!
#6
Transform Your Workflow with ‘Cmd + Shift + N’ to Open a New Window in No Time!
#7
Say Goodbye to Mouse: Master ‘Cmd + Shift + F’ to Search Your Entire Codebase!
#8
Struggling to Find Files? Hit ‘Cmd + P’ and Jump Right to Your File!
#9
Never Lose Your Progress Again: Use ‘Cmd + Z’ to Undo Mistakes Instantly!
#10
Made with ❤️
to provide resources in various ares.