From 93c18d44f630030b4e23f180a6becea2cdb235d0 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Sat, 4 Aug 2018 12:39:44 +0100 Subject: [PATCH 001/154] add pyvips pyvips is a binding for the libvips image processing library. It's fast and only needs a little memory. For example, on this benchmark: https://github.com/jcupitt/libvips/wiki/Speed-and-memory-use It's 3x faster than ImageMagick and needs 5x less memory. pyvips works on all python versions on all platforms, is LGPL, can be simply installed with pip, has complete documentation, has a large test suite and has no memory leaks. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 303de20d3..a23b021a5 100644 --- a/README.md +++ b/README.md @@ -720,6 +720,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. * [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images. * [wand](https://github.com/dahlia/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick. +* [pyvips](https://github.com/jcupitt/pyvips/) - A fast image processing library with low memory needs. ## Implementations From 7a89993e8fac796c8d66edf839604491c1896553 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Tue, 8 Jan 2019 17:51:42 +0000 Subject: [PATCH 002/154] update URL since pyvips has a new home --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a23b021a5..5cc47b225 100644 --- a/README.md +++ b/README.md @@ -720,7 +720,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. * [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images. * [wand](https://github.com/dahlia/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick. -* [pyvips](https://github.com/jcupitt/pyvips/) - A fast image processing library with low memory needs. +* [pyvips](https://github.com/libvips/pyvips) - A fast image processing library with low memory needs. ## Implementations From 097603169fe5a7149b44628be278a97b1838da10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roge=CC=81rio?= Date: Wed, 4 Sep 2019 03:17:46 -0300 Subject: [PATCH 003/154] add cool alive-progress bar --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d9510375a..3d76db250 100644 --- a/README.md +++ b/README.md @@ -247,6 +247,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [bashplotlib](https://github.com/glamp/bashplotlib) - Making basic plots in the terminal. * [colorama](https://pypi.org/project/colorama/) - Cross-platform colored terminal text. * [tqdm](https://github.com/tqdm/tqdm) - Fast, extensible progress bar for loops and CLI. + * [alive-progress](https://github.com/rsalmei/alive-progress) - An animated and smart Progress Bar for python REPL and command lines. ## Command-line Tools From b1e4d962d7f43400a79307c3917fbfa9017c304f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Sampaio=20de=20Almeida?= Date: Wed, 4 Sep 2019 12:48:53 -0300 Subject: [PATCH 004/154] new project description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d76db250..ef58c10fb 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [bashplotlib](https://github.com/glamp/bashplotlib) - Making basic plots in the terminal. * [colorama](https://pypi.org/project/colorama/) - Cross-platform colored terminal text. * [tqdm](https://github.com/tqdm/tqdm) - Fast, extensible progress bar for loops and CLI. - * [alive-progress](https://github.com/rsalmei/alive-progress) - An animated and smart Progress Bar for python REPL and command lines. + * [alive-progress](https://github.com/rsalmei/alive-progress) - A new kind of Progress Bar, with real-time throughput, eta and very cool animations. ## Command-line Tools From 32facd21149afbfaa6a37ed96a9f1178b3b9b314 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Fri, 20 Sep 2019 12:53:06 +0100 Subject: [PATCH 005/154] insert pyvips alphabetically I just noticed that modules are sorted alphabetically within sections. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cc47b225..f34a3c98e 100644 --- a/README.md +++ b/README.md @@ -716,11 +716,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyBarcode](https://pythonhosted.org/pyBarcode/) - Create barcodes in Python without needing PIL. * [pygram](https://github.com/ajkumar25/pygram) - Instagram-like image filters. * [python-qrcode](https://github.com/lincolnloop/python-qrcode) - A pure Python QR Code generator. +* [pyvips](https://github.com/libvips/pyvips) - A fast image processing library with low memory needs. * [Quads](https://github.com/fogleman/Quads) - Computer art based on quadtrees. * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. * [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images. * [wand](https://github.com/dahlia/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick. -* [pyvips](https://github.com/libvips/pyvips) - A fast image processing library with low memory needs. ## Implementations From 18212eef2a4f78f6546f606bf5ad3ed2ae100874 Mon Sep 17 00:00:00 2001 From: Juan-Pablo Scaletti Date: Wed, 11 Sep 2019 14:56:44 -0500 Subject: [PATCH 006/154] Add copier --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d9510375a..68f8edc9d 100644 --- a/README.md +++ b/README.md @@ -253,6 +253,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Useful CLI-based tools for productivity.* * Productivity Tools + * [copier](https://github.com/pykong/copier) - A library and command-line utility for rendering projects templates. * [cookiecutter](https://github.com/audreyr/cookiecutter) - A command-line utility that creates projects from cookiecutters (project templates). * [doitlive](https://github.com/sloria/doitlive) - A tool for live presentations in the terminal. * [howdoi](https://github.com/gleitz/howdoi) - Instant coding answers via the command line. @@ -261,6 +262,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [thefuck](https://github.com/nvbn/thefuck) - Correcting your previous console command. * [tmuxp](https://github.com/tony/tmuxp) - A [tmux](https://github.com/tmux/tmux) session manager. * [try](https://github.com/timofurrer/try) - A dead simple CLI to try out python packages - it's never been easier. + * CLI Enhancements * [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement. * [kube-shell](https://github.com/cloudnativelabs/kube-shell) - An integrated shell for working with the Kubernetes CLI. From 4eb1e3a4b39d4db4cbd59736a7ee49ca3185be1f Mon Sep 17 00:00:00 2001 From: Aliaksei Urbanski Date: Fri, 11 Oct 2019 02:16:50 +0300 Subject: [PATCH 007/154] Add indico --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index ded142745..f95a19ffe 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Editor Plugins and IDEs](#editor-plugins-and-ides) - [Email](#email) - [Environment Management](#environment-management) + - [Event Management](#event-management) - [Files](#files) - [Foreign Function Interface](#foreign-function-interface) - [Forms](#forms) @@ -555,6 +556,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [poetry](https://github.com/sdispater/poetry) - Python dependency management and packaging made easy. * [virtualenv](https://github.com/pypa/virtualenv) - A tool to create isolated Python environments. +## Event Management + +*Tools and libraries for managing events.* + +* [indico](https://github.com/indico/indico) - A feature-rich event management system, made @ [CERN](https://en.wikipedia.org/wiki/CERN). + ## Files *Libraries for file manipulation and MIME type detection.* From ba66af950287fdb28a459040a509341d0e31841c Mon Sep 17 00:00:00 2001 From: Sebastian Steins Date: Sun, 13 Oct 2019 16:02:16 +0200 Subject: [PATCH 008/154] Add news.python.sc --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ded142745..4b9d1cc04 100644 --- a/README.md +++ b/README.md @@ -1281,6 +1281,7 @@ Where to discover new Python libraries. * [Real Python](https://realpython.com) * [Trending Python repositories on GitHub today](https://github.com/trending?l=python) * [Сообщество Python Программистов](https://python-scripts.com/) +* [Pythonic News](https://news.python.sc/) ## Weekly From 41b7d0140eb9aa02bfa343cf3000111a44d639c1 Mon Sep 17 00:00:00 2001 From: "dmitry.dygalo" Date: Wed, 13 Nov 2019 16:15:39 +0100 Subject: [PATCH 009/154] Add Schemathesis --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 664cd3147..aaabcc33c 100644 --- a/README.md +++ b/README.md @@ -1054,6 +1054,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * GUI / Web Testing * [locust](https://github.com/locustio/locust) - Scalable user load testing tool written in Python. * [PyAutoGUI](https://github.com/asweigart/pyautogui) - PyAutoGUI is a cross-platform GUI automation Python module for human beings. + * [Schemathesis](https://github.com/kiwicom/schemathesis) - A tool for automatic property-based testing of web applications built with Open API / Swagger specifications. * [Selenium](https://pypi.org/project/selenium/) - Python bindings for [Selenium](http://www.seleniumhq.org/) WebDriver. * [sixpack](https://github.com/seatgeek/sixpack) - A language-agnostic A/B Testing framework. * [splinter](https://github.com/cobrateam/splinter) - Open source tool for testing web applications. From f543332dfce33097b7972cf0a79d140f87b28ca3 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 22 Nov 2019 22:44:29 +0300 Subject: [PATCH 010/154] Adds dry-python/returns Link: https://github.com/dry-python/returns Currently it is the only typed monads implementation I know. Related: - https://returns.readthedocs.io/en/latest/ - https://github.com/dry-python/classes - https://sobolevn.me/2019/02/python-exceptions-considered-an-antipattern - https://sobolevn.me/2019/03/enforcing-srp - https://github.com/typeddjango/awesome-python-typing --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 664cd3147..a1f9bd01e 100644 --- a/README.md +++ b/README.md @@ -599,6 +599,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [fn.py](https://github.com/kachayev/fn.py) - Functional programming in Python: implementation of missing features to enjoy FP. * [funcy](https://github.com/Suor/funcy) - A fancy and practical functional tools. * [Toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. +* [returns](https://github.com/dry-python/returns) - A set of type-safe monads, tranformers, and composition utilities. ## GUI Development From 6c7c78f96bfdb096eb3df51b140870dba260c4b0 Mon Sep 17 00:00:00 2001 From: eaxcmd <59303119+eaxcmd@users.noreply.github.com> Date: Tue, 14 Jan 2020 10:14:41 +0300 Subject: [PATCH 011/154] Add docxtpl, loguru Add docxtpl Add loguru --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4510dd251..d823a6f52 100644 --- a/README.md +++ b/README.md @@ -772,6 +772,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [logbook](http://logbook.readthedocs.io/en/stable/) - Logging replacement for Python. * [logging](https://docs.python.org/3/library/logging.html) - (Python standard library) Logging facility for Python. * [raven](https://github.com/getsentry/raven-python) - Python client for Sentry, a log/error tracking, crash reporting and aggregation platform for web applications. +* [loguru](https://github.com/Delgan/loguru) - Library which aims to bring enjoyable logging in Python. ## Machine Learning @@ -1016,6 +1017,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [XlsxWriter](https://github.com/jmcnamara/XlsxWriter) - A Python module for creating Excel .xlsx files. * [xlwings](https://github.com/ZoomerAnalytics/xlwings) - A BSD-licensed library that makes it easy to call Python from Excel and vice versa. * [xlwt](https://github.com/python-excel/xlwt) / [xlrd](https://github.com/python-excel/xlrd) - Writing and reading data and formatting information from Excel files. + * [docxtpl](https://github.com/elapouya/python-docx-template) - Editing a docx document by jinja2 template * PDF * [PDFMiner](https://github.com/euske/pdfminer) - A tool for extracting information from PDF documents. * [PyPDF2](https://github.com/mstamy2/PyPDF2) - A library capable of splitting, merging and transforming PDF pages. From c041ba4117b9f3ed8137f7a32bf2b6bbf111b108 Mon Sep 17 00:00:00 2001 From: Benedek Rozemberczki Date: Sat, 25 Jan 2020 21:27:10 +0000 Subject: [PATCH 012/154] Add Karate Club Karate Club is an unsupervised machine learning extension library for NetworkX. Karate Club consists of state-of-the-art methods to do unsupervised learning on graph structured data. To put it simply it is a Swiss Army knife for small-scale graph mining research. First, it provides network embedding techniques at the node and graph level. Second, it includes a variety of overlapping and non-overlapping community detection methods. Implemented methods cover a wide range of network science (NetSci, Complenet), data mining (ICDM, CIKM, KDD), artificial intelligence (AAAI, IJCAI) and machine learning (NeurIPS, ICML, ICLR) conferences, workshops, and pieces from prominent journals. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index af3a62782..3768627e1 100644 --- a/README.md +++ b/README.md @@ -961,6 +961,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Biopython](http://biopython.org/wiki/Main_Page) - Biopython is a set of freely available tools for biological computation. * [cclib](http://cclib.github.io/) - A library for parsing and interpreting the results of computational chemistry packages. * [Colour](http://colour-science.org/) - Implementing a comprehensive number of colour theory transformations and algorithms. +* [Karate Club](https://github.com/benedekrozemberczki/karateclub) - Unsupervised machine learning toolbox for graph structured data. * [NetworkX](https://networkx.github.io/) - A high-productivity software for complex networks. * [NIPY](http://nipy.org) - A collection of neuroimaging toolkits. * [NumPy](http://www.numpy.org/) - A fundamental package for scientific computing with Python. From ee12e1fa52efffe1473b042a8d24fdebe587a3bf Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 27 Jan 2020 00:16:15 -0700 Subject: [PATCH 013/154] Added Arrow to Dates & Times My personal favorite datetime module --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index af3a62782..2dbc46ff8 100644 --- a/README.md +++ b/README.md @@ -401,6 +401,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with dates and times.* +* [Arrow](https://arrow.readthedocs.io/en/latest/) - A Python library that offers a sensible and human-friendly approach to creating, manipulating, formatting and converting dates, times and timestamps. * [Chronyk](https://github.com/KoffeinFlummi/Chronyk) - A Python 3 library for parsing human-written times and dates. * [dateutil](https://github.com/dateutil/dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/3/library/datetime.html) module. * [delorean](https://github.com/myusuf3/delorean/) - A library for clearing up the inconvenient truths that arise dealing with datetimes. From 7776f72f029d76f5224f246ca41d8f4f0db5a776 Mon Sep 17 00:00:00 2001 From: Prabhu Pant Date: Wed, 29 Jan 2020 14:23:00 +0530 Subject: [PATCH 014/154] Add python-ds --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index af3a62782..284bce94c 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. * [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types. +* [python-ds](https://github.com/prabhupant/python-ds) - Clean and simple collection of data structure and algorithms in Python for coding interviews. ## ASGI Servers From d219b8749a81e044ac6c20c8a6b03eb7d5a5fe43 Mon Sep 17 00:00:00 2001 From: mingrammer Date: Fri, 7 Feb 2020 01:56:26 +0900 Subject: [PATCH 015/154] Add diagrams --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..923b6754e 100644 --- a/README.md +++ b/README.md @@ -358,6 +358,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [bqplot](https://github.com/bloomberg/bqplot) - Interactive Plotting Library for the Jupyter Notebook * [Dash](https://plot.ly/products/dash/) - Built on top of Flask, React and Plotly aimed at analytical web applications. * [awesome-dash](https://github.com/Acrotrend/awesome-dash) +* [diagrams](https://github.com/mingrammer/diagrams) - Diagram as Code. * [plotnine](https://github.com/has2k1/plotnine) - A grammar of graphics for Python based on ggplot2. * [Matplotlib](http://matplotlib.org/) - A Python 2D plotting library. * [Pygal](http://www.pygal.org/en/latest/) - A Python SVG Charts Creator. From e5fede966c2fd254efbbd24ec9df54c5e54576dc Mon Sep 17 00:00:00 2001 From: Andy Challis Date: Fri, 7 Feb 2020 12:36:49 +1100 Subject: [PATCH 016/154] Added tesserocr --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..44ecb9efb 100644 --- a/README.md +++ b/README.md @@ -298,6 +298,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. * [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. * [pytesseract](https://github.com/madmaze/pytesseract) - Another wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). +* [tesserocr](https://github.com/sirfz/tesserocr) - A simple, Pillow-friendly, wrapper around the tesseract-ocr API for Optical Character Recognition (OCR). * [SimpleCV](http://simplecv.org/) - An open source framework for building computer vision applications. ## Concurrency and Parallelism From d6b358ea97b80c6e8fce9873e36faef1af0d85cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Cl=C3=A9ment=20Tosi?= <36663670+PiCT0@users.noreply.github.com> Date: Fri, 7 Feb 2020 21:41:57 +0000 Subject: [PATCH 017/154] add more-itertools > In `more-itertools` we collect additional building blocks, recipes, and routines for working with iterables. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..25ea7d54f 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Python implementation of algorithms and design patterns.* * [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms in Python. +* [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. * [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. * [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types. From 426ca147d69fcf71102683f2a80afa7bad3be47c Mon Sep 17 00:00:00 2001 From: xatier Date: Sat, 8 Feb 2020 14:05:04 -0800 Subject: [PATCH 018/154] Add rich --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..0a12dd35e 100644 --- a/README.md +++ b/README.md @@ -261,6 +261,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [asciimatics](https://github.com/peterbrittain/asciimatics) - A package to create full-screen text UIs (from interactive forms to ASCII animations). * [bashplotlib](https://github.com/glamp/bashplotlib) - Making basic plots in the terminal. * [colorama](https://pypi.org/project/colorama/) - Cross-platform colored terminal text. + * [rich](https://github.com/willmcgugan/rich) - Python library for rich text and beautiful formatting in the terminal. Also provides a great `RichHandler` log handler. * [tqdm](https://github.com/tqdm/tqdm) - Fast, extensible progress bar for loops and CLI. ## Command-line Tools From 58cc68aac6ccb9bf307429ed807769f5a5396cdb Mon Sep 17 00:00:00 2001 From: James Stronz Date: Sun, 9 Feb 2020 00:28:50 -0600 Subject: [PATCH 019/154] Added RPyC to RPC Servers section of REAME.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..bcb1684c7 100644 --- a/README.md +++ b/README.md @@ -950,6 +950,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *RPC-compatible servers.* * [zeroRPC](https://github.com/0rpc/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/). +* [RPyC](https://github.com/tomerfiliba/rpyc) (Remote Python Call) - A transparent and symmetric RPC library for Python ## Science From 93398588026915f5faa5c98d7e7ae79fa81a33cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hermann?= Date: Wed, 12 Feb 2020 19:12:59 +0100 Subject: [PATCH 020/154] Add Invoke --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..7ce8e82da 100644 --- a/README.md +++ b/README.md @@ -271,6 +271,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [cookiecutter](https://github.com/audreyr/cookiecutter) - A command-line utility that creates projects from cookiecutters (project templates). * [doitlive](https://github.com/sloria/doitlive) - A tool for live presentations in the terminal. * [howdoi](https://github.com/gleitz/howdoi) - Instant coding answers via the command line. + * [Invoke](https://github.com/pyinvoke/invoke#readme) - A tool for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks. * [PathPicker](https://github.com/facebook/PathPicker) - Select files out of bash output. * [percol](https://github.com/mooz/percol) - Adds flavor of interactive selection to the traditional pipe concept on UNIX. * [thefuck](https://github.com/nvbn/thefuck) - Correcting your previous console command. From 1f28974f5c220b00100239817dee8f11d7c92732 Mon Sep 17 00:00:00 2001 From: Sergey Grishakov Date: Fri, 14 Feb 2020 13:44:44 +0300 Subject: [PATCH 021/154] Add matchering --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..5eaa30aa4 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [eyeD3](https://github.com/nicfit/eyeD3) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. * [mutagen](https://github.com/quodlibet/mutagen) - A Python module to handle audio metadata. * [tinytag](https://github.com/devsnd/tinytag) - A library for reading music meta data of MP3, OGG, FLAC and Wave files. + * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. ## Authentication From c0ef6425ef81000c5a8101148f7ad7f992adb619 Mon Sep 17 00:00:00 2001 From: Sergey Grishakov Date: Fri, 14 Feb 2020 17:00:51 +0300 Subject: [PATCH 022/154] Correct category --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5eaa30aa4..7c2e57946 100644 --- a/README.md +++ b/README.md @@ -148,12 +148,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. * [TimeSide](https://github.com/Parisson/TimeSide) - Open web audio processing framework. + * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. * Metadata * [beets](https://github.com/beetbox/beets) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger. * [eyeD3](https://github.com/nicfit/eyeD3) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. * [mutagen](https://github.com/quodlibet/mutagen) - A Python module to handle audio metadata. * [tinytag](https://github.com/devsnd/tinytag) - A library for reading music meta data of MP3, OGG, FLAC and Wave files. - * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. ## Authentication From b1b23335be6933a8b66b2925dd6e2cf9fcc92648 Mon Sep 17 00:00:00 2001 From: Sergey Grishakov Date: Sat, 15 Feb 2020 16:02:38 +0300 Subject: [PATCH 023/154] Add matchering Alphabet order + correct category --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c2e57946..57dcda679 100644 --- a/README.md +++ b/README.md @@ -144,11 +144,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Audio * [audioread](https://github.com/beetbox/audioread) - Cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding. * [dejavu](https://github.com/worldveil/dejavu) - Audio fingerprinting and recognition. + * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. * [mingus](http://bspaans.github.io/python-mingus/) - An advanced music theory and notation package with MIDI file and playback support. * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. * [TimeSide](https://github.com/Parisson/TimeSide) - Open web audio processing framework. - * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. * Metadata * [beets](https://github.com/beetbox/beets) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger. * [eyeD3](https://github.com/nicfit/eyeD3) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. From 7d90feb70c1a5a611cf5437b317de52374f804f4 Mon Sep 17 00:00:00 2001 From: "Michele \"Ubik\" De Simoni" Date: Tue, 18 Feb 2020 14:10:29 +0100 Subject: [PATCH 024/154] PyPy moved to https://foss.heptapod.net/pypy/pypy --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f8837937..5c975b8ff 100644 --- a/README.md +++ b/README.md @@ -730,7 +730,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Numba](http://numba.pydata.org/) - Python JIT compiler to LLVM aimed at scientific Python. * [PeachPy](https://github.com/Maratyszcza/PeachPy) - x86-64 assembler embedded in Python. * [Pyjion](https://github.com/Microsoft/Pyjion) - A JIT for Python based upon CoreCLR. -* [PyPy](https://bitbucket.org/pypy/pypy) - A very fast and compliant implementation of the Python language. +* [PyPy](https://foss.heptapod.net/pypy/pypy) - A very fast and compliant implementation of the Python language. * [Pyston](https://github.com/dropbox/pyston) - A Python implementation using JIT techniques. * [Stackless Python](https://github.com/stackless-dev/stackless) - An enhanced version of the Python programming language. From 4b8a874f5cdd4c6f747f8cd24d22a008e34ccde9 Mon Sep 17 00:00:00 2001 From: Piotr Makal Date: Fri, 28 Feb 2020 08:16:02 +0100 Subject: [PATCH 025/154] add litecli to Command-line Tools --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..230366409 100644 --- a/README.md +++ b/README.md @@ -281,6 +281,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [kube-shell](https://github.com/cloudnativelabs/kube-shell) - An integrated shell for working with the Kubernetes CLI. * [mycli](https://github.com/dbcli/mycli) - A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting. * [pgcli](https://github.com/dbcli/pgcli) - Postgres CLI with autocompletion and syntax highlighting. + * [litecli](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. * [saws](https://github.com/donnemartin/saws) - A Supercharged [aws-cli](https://github.com/aws/aws-cli). ## Compatibility From 872ae341aed62eb5ae87a3a751b6ae6ee0354d59 Mon Sep 17 00:00:00 2001 From: Albert King Date: Sun, 1 Mar 2020 22:03:36 +0800 Subject: [PATCH 026/154] Add akshare Add akshare to downloader item --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..dbc673146 100644 --- a/README.md +++ b/README.md @@ -510,6 +510,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [s4cmd](https://github.com/bloomreach/s4cmd) - Super S3 command line tool, good for higher performance. * [you-get](https://you-get.org/) - A YouTube/Youku/Niconico video downloader written in Python 3. * [youtube-dl](https://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube. +* [akshare](https://github.com/jindaxiang/akshare) - A financial data interface library, built for human beings! ## E-commerce From 556245051180f263b40c050c1b56fdc7b463aa96 Mon Sep 17 00:00:00 2001 From: xnuinside Date: Wed, 4 Mar 2020 05:12:41 +0300 Subject: [PATCH 027/154] fix url to profig documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f8837937..d349d9339 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [configobj](https://github.com/DiffSK/configobj) - INI file parser with validation. * [configparser](https://docs.python.org/3/library/configparser.html) - (Python standard library) INI file parser. -* [profig](https://profig.readthedocs.io/en/default/) - Config from multiple formats with value conversion. +* [profig](https://profig.readthedocs.io/en/latest/) - Config from multiple formats with value conversion. * [python-decouple](https://github.com/henriquebastos/python-decouple) - Strict separation of settings from code. ## Cryptography From 7f25d17baaece640e4a6791275888a2fa4572ea8 Mon Sep 17 00:00:00 2001 From: iacopo Date: Sat, 28 Mar 2020 00:26:56 +0100 Subject: [PATCH 028/154] Cosmetic: minor fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f8837937..9bbb2e832 100644 --- a/README.md +++ b/README.md @@ -814,7 +814,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [gensim](https://github.com/RaRe-Technologies/gensim) - Topic Modeling for Humans. * [langid.py](https://github.com/saffsd/langid.py) - Stand-alone language identification system. * [nltk](http://www.nltk.org/) - A leading platform for building Python programs to work with human language data. - * [pattern](https://github.com/clips/pattern) - A web mining module for the Python. + * [pattern](https://github.com/clips/pattern) - A web mining module. * [polyglot](https://github.com/aboSamoor/polyglot) - Natural language pipeline supporting hundreds of languages. * [pytext](https://github.com/facebookresearch/pytext) - A natural language modeling framework based on PyTorch. * [PyTorch-NLP](https://github.com/PetrochukM/PyTorch-NLP) - A toolkit enabling rapid deep learning NLP prototyping for research. From d7a3a1fec30b081cc9e2e37e35e918145b07e9c9 Mon Sep 17 00:00:00 2001 From: iacopo Date: Sat, 28 Mar 2020 00:23:38 +0100 Subject: [PATCH 029/154] Update stanfordnlp to the new repo "[Deprecated] This library has been renamed to "Stanza". Latest development at: https://github.com/stanfordnlp/stanza" Also update the number of supported languages. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bbb2e832..1620a9d61 100644 --- a/README.md +++ b/README.md @@ -819,7 +819,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pytext](https://github.com/facebookresearch/pytext) - A natural language modeling framework based on PyTorch. * [PyTorch-NLP](https://github.com/PetrochukM/PyTorch-NLP) - A toolkit enabling rapid deep learning NLP prototyping for research. * [spacy](https://spacy.io/) - A library for industrial-strength natural language processing in Python and Cython. - * [stanfordnlp](https://github.com/stanfordnlp/stanfordnlp) - The Stanford NLP Group's official Python library, supporting 50+ languages. + * [Stanza](https://github.com/stanfordnlp/stanza) - The Stanford NLP Group's official Python library, supporting 60+ languages. - Chinese * [jieba](https://github.com/fxsjy/jieba) - The most popular Chinese text segmentation library. * [pkuseg-python](https://github.com/lancopku/pkuseg-python) - A toolkit for Chinese word segmentation in various domains. From a9a5fafab35a30a9ceee27e372773b0a952ec056 Mon Sep 17 00:00:00 2001 From: Dan Bader Date: Mon, 30 Mar 2020 12:52:39 -0700 Subject: [PATCH 030/154] Add Real Python Podcast --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..71f2a3c4f 100644 --- a/README.md +++ b/README.md @@ -1249,6 +1249,7 @@ Where to discover new Python libraries. * [Radio Free Python](http://radiofreepython.com/) * [Talk Python To Me](https://talkpython.fm/) * [Test and Code](https://testandcode.com/) +* [The Real Python Podcast](https://realpython.com/podcasts/rpp/) ## Twitter From 6226b887d198a7f06f23ef80c3de577ee2d4bc7a Mon Sep 17 00:00:00 2001 From: Jondy Date: Thu, 2 Apr 2020 09:39:13 +0800 Subject: [PATCH 031/154] Add pyarmor --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f8837937..da515636a 100644 --- a/README.md +++ b/README.md @@ -492,6 +492,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [py2exe](http://www.py2exe.org/) - Freezes Python scripts (Windows). * [PyInstaller](https://github.com/pyinstaller/pyinstaller) - Converts Python programs into stand-alone executables (cross-platform). * [pynsist](http://pynsist.readthedocs.io/en/latest/) - A tool to build Windows installers, installers bundle Python itself. +* [pyarmor](https://github.com/dashingsoft/pyarmor) - A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts. ## Documentation From 30ddeab24d5009217b6092ddf0d798828062808e Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 7 Apr 2020 21:04:28 +0800 Subject: [PATCH 032/154] add iredis Fixes #1504 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 25e315e7b..355a93250 100644 --- a/README.md +++ b/README.md @@ -284,6 +284,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [mycli](https://github.com/dbcli/mycli) - A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting. * [pgcli](https://github.com/dbcli/pgcli) - Postgres CLI with autocompletion and syntax highlighting. * [litecli](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. + * [iredis](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. * [saws](https://github.com/donnemartin/saws) - A Supercharged [aws-cli](https://github.com/aws/aws-cli). ## Compatibility From 9f597b4bae3d1c4613bd882e97a736b1e32bcea5 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 7 Apr 2020 21:04:36 +0800 Subject: [PATCH 033/154] refine --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 355a93250..1f5d36aae 100644 --- a/README.md +++ b/README.md @@ -281,9 +281,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * CLI Enhancements * [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement. * [kube-shell](https://github.com/cloudnativelabs/kube-shell) - An integrated shell for working with the Kubernetes CLI. - * [mycli](https://github.com/dbcli/mycli) - A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting. - * [pgcli](https://github.com/dbcli/pgcli) - Postgres CLI with autocompletion and syntax highlighting. - * [litecli](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. + * [mycli](https://github.com/dbcli/mycli) - MySQL CLI with autocompletion and syntax highlighting. + * [pgcli](https://github.com/dbcli/pgcli) - PostgreSQL CLI with autocompletion and syntax highlighting. + * [litecli](https://github.com/laixintao/iredis) - Redis CLI with autocompletion and syntax highlighting. * [iredis](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. * [saws](https://github.com/donnemartin/saws) - A Supercharged [aws-cli](https://github.com/aws/aws-cli). From 76c9643c8fc99a92e7c0f61ab4bc96264bfa6e50 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 7 Apr 2020 21:06:19 +0800 Subject: [PATCH 034/154] add shiv Fixes #1478 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1f5d36aae..b36924d88 100644 --- a/README.md +++ b/README.md @@ -497,6 +497,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [PyInstaller](https://github.com/pyinstaller/pyinstaller) - Converts Python programs into stand-alone executables (cross-platform). * [pynsist](http://pynsist.readthedocs.io/en/latest/) - A tool to build Windows installers, installers bundle Python itself. * [pyarmor](https://github.com/dashingsoft/pyarmor) - A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts. +* [shiv](https://github.com/linkedin/shiv) - A command line utility for building fully self-contained zipapps (PEP 441), but with all their dependencies included. ## Documentation From e19096a523c905db9e52e00c834ab5b53535c50d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=96=E4=BF=A1=E6=B6=9B?= Date: Tue, 7 Apr 2020 21:42:35 +0800 Subject: [PATCH 035/154] Fix iredis link and litecli link. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 981a0d0bb..2e9ba38f0 100644 --- a/README.md +++ b/README.md @@ -283,8 +283,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [kube-shell](https://github.com/cloudnativelabs/kube-shell) - An integrated shell for working with the Kubernetes CLI. * [mycli](https://github.com/dbcli/mycli) - MySQL CLI with autocompletion and syntax highlighting. * [pgcli](https://github.com/dbcli/pgcli) - PostgreSQL CLI with autocompletion and syntax highlighting. - * [litecli](https://github.com/laixintao/iredis) - Redis CLI with autocompletion and syntax highlighting. - * [iredis](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. + * [iredis](https://github.com/laixintao/iredis) - Redis CLI with autocompletion and syntax highlighting. + * [litecli](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. * [saws](https://github.com/donnemartin/saws) - A Supercharged [aws-cli](https://github.com/aws/aws-cli). ## Compatibility From b747d2b8849eec0823fde00f72329ae87b42e089 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 8 Apr 2020 20:22:05 +0800 Subject: [PATCH 036/154] change the wording --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 8feada4e8..fdacb788a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -8,4 +8,4 @@ Enumerate comparisons. -- -Anyone who agrees with this pull request could vote for it by adding a :+1: to it, and usually, the maintainer will merge it when votes reach **20**. +Anyone who agrees with this pull request could submit an *Approve* review to it. From af8b20cfa529961ef0e926736d0e1ebfa45dc95c Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 8 Apr 2020 20:23:54 +0800 Subject: [PATCH 037/154] move indico --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 0801ad425..797a4cefe 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Editor Plugins and IDEs](#editor-plugins-and-ides) - [Email](#email) - [Environment Management](#environment-management) - - [Event Management](#event-management) - [Files](#files) - [Foreign Function Interface](#foreign-function-interface) - [Forms](#forms) @@ -200,6 +199,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [wagtail](https://wagtail.io/) - A Django content management system. * [django-cms](https://www.django-cms.org/en/) - An Open source enterprise CMS based on the Django. * [feincms](https://github.com/feincms/feincms) - One of the most advanced Content Management Systems built on Django. +* [indico](https://github.com/indico/indico) - A feature-rich event management system, made @ [CERN](https://en.wikipedia.org/wiki/CERN). * [Kotti](https://github.com/Kotti/Kotti) - A high-level, Pythonic web application framework built on Pyramid. * [mezzanine](https://github.com/stephenmcd/mezzanine) - A powerful, consistent, and flexible content management platform. * [plone](https://plone.org/) - A CMS built on top of the open source application server Zope. @@ -576,12 +576,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyenv](https://github.com/pyenv/pyenv) - Simple Python version management. * [virtualenv](https://github.com/pypa/virtualenv) - A tool to create isolated Python environments. -## Event Management - -*Tools and libraries for managing events.* - -* [indico](https://github.com/indico/indico) - A feature-rich event management system, made @ [CERN](https://en.wikipedia.org/wiki/CERN). - ## Files *Libraries for file manipulation and MIME type detection.* From 3bf644ee75cbba85b2472a47519cf816c7f0a2ad Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 8 Apr 2020 20:26:56 +0800 Subject: [PATCH 038/154] refine --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 797a4cefe..add335835 100644 --- a/README.md +++ b/README.md @@ -299,13 +299,13 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). ## Computer Vision -*Libraries for computer vision.* +*Libraries for Computer Vision.* * [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. * [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. * [pytesseract](https://github.com/madmaze/pytesseract) - Another wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). -* [tesserocr](https://github.com/sirfz/tesserocr) - A simple, Pillow-friendly, wrapper around the tesseract-ocr API for Optical Character Recognition (OCR). -* [SimpleCV](http://simplecv.org/) - An open source framework for building computer vision applications. +* [tesserocr](https://github.com/sirfz/tesserocr) - A simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. +* [SimpleCV](https://github.com/sightmachine/SimpleCV) - An open source framework for building computer vision applications. ## Concurrency and Parallelism From bc30375e7df2bbb7b1e224abb81790afca02e34a Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 8 Apr 2020 20:38:37 +0800 Subject: [PATCH 039/154] add transitions Fixes #1474 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eb66d65ec..bdc54ea4a 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. * [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types. * [python-ds](https://github.com/prabhupant/python-ds) - Clean and simple collection of data structure and algorithms in Python for coding interviews. +* [transitions](https://github.com/pytransitions/transitions) - A lightweight, object-oriented finite state machine implementation in Python. ## ASGI Servers From c15f7fada36ab7d59718901dd406e96ba8146281 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 8 Apr 2020 20:38:43 +0800 Subject: [PATCH 040/154] refine --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bdc54ea4a..e6a62643a 100644 --- a/README.md +++ b/README.md @@ -120,11 +120,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Python implementation of algorithms and design patterns.* * [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms in Python. -* [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. * [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. +* [python-ds](https://github.com/prabhupant/python-ds) - Clean and simple collection of data structure and algorithms in Python for coding interviews. * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. * [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types. -* [python-ds](https://github.com/prabhupant/python-ds) - Clean and simple collection of data structure and algorithms in Python for coding interviews. * [transitions](https://github.com/pytransitions/transitions) - A lightweight, object-oriented finite state machine implementation in Python. ## ASGI Servers @@ -616,12 +615,13 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Functional Programming with Python.* -* [Coconut](http://coconut-lang.org/) - Coconut is a variant of Python built for simple, elegant, Pythonic functional programming. -* [CyToolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of Toolz: High performance functional utilities. +* [Coconut](https://github.com/evhub/coconut) - A variant of Python built for simple, elegant, Pythonic functional programming. * [fn.py](https://github.com/kachayev/fn.py) - Functional programming in Python: implementation of missing features to enjoy FP. * [funcy](https://github.com/Suor/funcy) - A fancy and practical functional tools. -* [Toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. +* [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. * [returns](https://github.com/dry-python/returns) - A set of type-safe monads, tranformers, and composition utilities. +* [Toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. +* [CyToolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of `Toolz`: High performance functional utilities. ## GUI Development @@ -965,7 +965,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *RPC-compatible servers.* * [zeroRPC](https://github.com/0rpc/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/). -* [RPyC](https://github.com/tomerfiliba/rpyc) (Remote Python Call) - A transparent and symmetric RPC library for Python +* [RPyC](https://github.com/tomerfiliba/rpyc) (Remote Python Call) - A transparent and symmetric RPC library for Python ## Science From a4d99bc969707dccbe96ef8eaf21816ef35fd13c Mon Sep 17 00:00:00 2001 From: Mitchell Date: Sun, 12 Apr 2020 21:56:31 -0500 Subject: [PATCH 041/154] Fixed broken link for pymssql --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13042be6a..d93069dd4 100644 --- a/README.md +++ b/README.md @@ -395,7 +395,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for Python. * [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL. * Other Relational Databases - * [pymssql](http://www.pymssql.org/en/latest/) - A simple database interface to Microsoft SQL Server. + * [pymssql](https://pymssql.readthedocs.io/en/latest/) - A simple database interface to Microsoft SQL Server. * [SuperSQLite](https://github.com/plasticityai/supersqlite) - A supercharged SQLite library built on top of [apsw](https://github.com/rogerbinns/apsw). * NoSQL Databases * [cassandra-driver](https://github.com/datastax/python-driver) - The Python Driver for Apache Cassandra. From dfdc47e4d61d1e4e4a7bd9a2f38c90248e25aa9f Mon Sep 17 00:00:00 2001 From: Igor Tavares Date: Wed, 15 Apr 2020 13:06:29 -0300 Subject: [PATCH 042/154] Add aws-data-wrangler --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 13042be6a..3c4b8fb01 100644 --- a/README.md +++ b/README.md @@ -345,6 +345,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Orange](https://orange.biolab.si/) - Data mining, data visualization, analysis and machine learning through visual programming or scripts. * [Pandas](http://pandas.pydata.org/) - A library providing high-performance, easy-to-use data structures and data analysis tools. * [Optimus](https://github.com/ironmussa/Optimus) - Agile Data Science Workflows made easy with PySpark. +* [AWS Data Wrangler](https://github.com/awslabs/aws-data-wrangler) - Pandas on AWS. ## Data Validation From c5e77ef5950512396187d63a015b7c003d58f6e0 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 15 May 2020 19:42:17 +0800 Subject: [PATCH 043/154] add another awesome-django --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1270188bc..64542be55 100644 --- a/README.md +++ b/README.md @@ -1228,6 +1228,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Synchronous * [Django](https://www.djangoproject.com/) - The most popular web framework in Python. + * [awesome-django](https://github.com/wsvincent/awesome-django) * [awesome-django](https://github.com/shahraizali/awesome-django) * [Flask](http://flask.pocoo.org/) - A microframework for Python. * [awesome-flask](https://github.com/humiaozuzu/awesome-flask) From 1cc7b7c4fe7e9132fdfe82b4943e10a77f5ef9e8 Mon Sep 17 00:00:00 2001 From: Nikita Barskov Date: Mon, 25 May 2020 17:39:53 +0200 Subject: [PATCH 044/154] Adding `hydra` configuration library. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 64542be55..28b886cd1 100644 --- a/README.md +++ b/README.md @@ -328,6 +328,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [configparser](https://docs.python.org/3/library/configparser.html) - (Python standard library) INI file parser. * [profig](https://profig.readthedocs.io/en/latest/) - Config from multiple formats with value conversion. * [python-decouple](https://github.com/henriquebastos/python-decouple) - Strict separation of settings from code. +* [hydra](https://github.com/facebookresearch/hydra) - Hydra is a framework for elegantly configuring complex applications. ## Cryptography From 87b3ffcfe254654e67a0f6f428687f765b20b846 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sat, 6 Jun 2020 01:34:14 +0800 Subject: [PATCH 045/154] refine Algorithms and Design Patterns --- README.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 64542be55..062076a5a 100644 --- a/README.md +++ b/README.md @@ -117,14 +117,17 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). ## Algorithms and Design Patterns -*Python implementation of algorithms and design patterns.* - -* [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms in Python. -* [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. -* [python-ds](https://github.com/prabhupant/python-ds) - Clean and simple collection of data structure and algorithms in Python for coding interviews. -* [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. -* [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types. -* [transitions](https://github.com/pytransitions/transitions) - A lightweight, object-oriented finite state machine implementation in Python. +*Python implementation of data structures, algorithms and design patterns.* + +* Algorithms + * [TheAlgorithms](https://github.com/TheAlgorithms/Python) - All Algorithms implemented in Python. + * [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms. + * [python-ds](https://github.com/prabhupant/python-ds) - A collection of data structure and algorithms for coding interviews. + * [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast and pure-Python implementation of sorted collections. +* Design Patterns + * [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. + * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. + * [transitions](https://github.com/pytransitions/transitions) - A lightweight, object-oriented finite state machine implementation. ## ASGI Servers From c8117f5ab01e293f928786fb0b49bfe074b5602e Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sat, 6 Jun 2020 01:38:32 +0800 Subject: [PATCH 046/154] add daphne --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 062076a5a..030d3151d 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *ASGI-compatible web servers.* -* [uvicorn](https://github.com/encode/uvicorn) - Uvicorn is a lightning-fast ASGI server implementation, using uvloop and httptools. +* [uvicorn](https://github.com/encode/uvicorn) - A lightning-fast ASGI server implementation, using uvloop and httptools. +* [daphne](https://github.com/django/daphne) - A HTTP, HTTP2 and WebSocket protocol server for ASGI and ASGI-HTTP. ## Asynchronous Programming From 0b2ac53cf6025287f8041b367cf6339152a87203 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sat, 6 Jun 2020 01:40:53 +0800 Subject: [PATCH 047/154] add the link to asgi project --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 030d3151d..09a6d7d5d 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). ## ASGI Servers -*ASGI-compatible web servers.* +*[ASGI](https://asgi.readthedocs.io/en/latest/)-compatible web servers.* * [uvicorn](https://github.com/encode/uvicorn) - A lightning-fast ASGI server implementation, using uvloop and httptools. * [daphne](https://github.com/django/daphne) - A HTTP, HTTP2 and WebSocket protocol server for ASGI and ASGI-HTTP. From 78a913531c2c0e07aaa91af4b3feeebf49d12d07 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 7 Jun 2020 03:03:21 +0800 Subject: [PATCH 048/154] add learning resources Fixes #1535 --- README.md | 61 ++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index 09a6d7d5d..8f3f65e54 100644 --- a/README.md +++ b/README.md @@ -93,10 +93,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [WebSocket](#websocket) - [WSGI Servers](#wsgi-servers) - [Resources](#resources) + - [Books](#books) + - [Websites](#websites) + - [Newsletters](#newsletters) - [Podcasts](#podcasts) - [Twitter](#twitter) - - [Websites](#websites) - - [Weekly](#weekly) - [Contributing](#contributing) --- @@ -1262,15 +1263,36 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). # Resources -Where to discover new Python libraries. +Where to discover learning resources or new Python libraries. + +## Books + +- [Fluent Python](https://www.oreilly.com/library/view/fluent-python/9781491946237/) + +## Websites + +* Tutorials + * [Full Stack Python](https://www.fullstackpython.com/) + * [Python Cheatsheet](https://www.pythoncheatsheet.org/) + * [Real Python](https://realpython.com) + * [The Hitchhiker’s Guide to Python](https://docs.python-guide.org/) +* Libraries + * [Awesome Python @LibHunt](https://python.libhunt.com/) +* Others + * [Python ZEEF](https://python.zeef.com/alan.richmond) + * [Pythonic News](https://news.python.sc/) + +## Newsletters + +* [Awesome Python Newsletter](http://python.libhunt.com/newsletter) +* [Pycoder's Weekly](http://pycoders.com/) +* [Python Weekly](http://www.pythonweekly.com/) +* [Python Tricks](https://realpython.com/python-tricks/) ## Podcasts -* [From Python Import Podcast](http://frompythonimportpodcast.com/) -* [Podcast.init](https://podcastinit.com/) +* [Podcast.__init__](https://podcastinit.com/) * [Python Bytes](https://pythonbytes.fm) -* [Python Testing](http://pythontesting.net) -* [Radio Free Python](http://radiofreepython.com/) * [Talk Python To Me](https://talkpython.fm/) * [Test and Code](https://testandcode.com/) * [The Real Python Podcast](https://realpython.com/podcasts/rpp/) @@ -1280,37 +1302,12 @@ Where to discover new Python libraries. * [@codetengu](https://twitter.com/codetengu) * [@getpy](https://twitter.com/getpy) * [@importpython](https://twitter.com/importpython) -* [@planetpython](https://twitter.com/planetpython) * [@pycoders](https://twitter.com/pycoders) -* [@pypi](https://twitter.com/pypi) * [@pythontrending](https://twitter.com/pythontrending) * [@PythonWeekly](https://twitter.com/PythonWeekly) * [@TalkPython](https://twitter.com/talkpython) * [@realpython](https://twitter.com/realpython) -## Websites - -* [/r/CoolGithubProjects](https://www.reddit.com/r/coolgithubprojects/) -* [/r/Python](https://www.reddit.com/r/python) -* [Awesome Python @LibHunt](https://python.libhunt.com/) -* [Django Packages](https://djangopackages.org/) -* [Full Stack Python](https://www.fullstackpython.com/) -* [Python Cheatsheet](https://www.pythoncheatsheet.org/) -* [Python ZEEF](https://python.zeef.com/alan.richmond) -* [Python 开发社区](https://www.ctolib.com/python/) -* [Real Python](https://realpython.com) -* [Trending Python repositories on GitHub today](https://github.com/trending?l=python) -* [Сообщество Python Программистов](https://python-scripts.com/) -* [Pythonic News](https://news.python.sc/) - -## Weekly - -* [CodeTengu Weekly 碼天狗週刊](https://weekly.codetengu.com/) -* [Import Python Newsletter](http://importpython.com/newsletter/) -* [Pycoder's Weekly](http://pycoders.com/) -* [Python Weekly](http://www.pythonweekly.com/) -* [Python Tricks](https://realpython.com/python-tricks/) - # Contributing Your contributions are always welcome! Please take a look at the [contribution guidelines](https://github.com/vinta/awesome-python/blob/master/CONTRIBUTING.md) first. From f7c87f328618dc64620daf2100008de830102c37 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 7 Jun 2020 03:08:21 +0800 Subject: [PATCH 049/154] fix double underscores --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f3f65e54..a3bffc806 100644 --- a/README.md +++ b/README.md @@ -1291,7 +1291,7 @@ Where to discover learning resources or new Python libraries. ## Podcasts -* [Podcast.__init__](https://podcastinit.com/) +* [Podcast.\_\_init__](https://podcastinit.com/) * [Python Bytes](https://pythonbytes.fm) * [Talk Python To Me](https://talkpython.fm/) * [Test and Code](https://testandcode.com/) From a4e197ba01da156c1499ffb5d644d0b195a1bd1f Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 7 Jun 2020 03:10:37 +0800 Subject: [PATCH 050/154] delete Twitter section --- README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/README.md b/README.md index a3bffc806..05ad3c196 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Websites](#websites) - [Newsletters](#newsletters) - [Podcasts](#podcasts) - - [Twitter](#twitter) - [Contributing](#contributing) --- @@ -1297,17 +1296,6 @@ Where to discover learning resources or new Python libraries. * [Test and Code](https://testandcode.com/) * [The Real Python Podcast](https://realpython.com/podcasts/rpp/) -## Twitter - -* [@codetengu](https://twitter.com/codetengu) -* [@getpy](https://twitter.com/getpy) -* [@importpython](https://twitter.com/importpython) -* [@pycoders](https://twitter.com/pycoders) -* [@pythontrending](https://twitter.com/pythontrending) -* [@PythonWeekly](https://twitter.com/PythonWeekly) -* [@TalkPython](https://twitter.com/talkpython) -* [@realpython](https://twitter.com/realpython) - # Contributing Your contributions are always welcome! Please take a look at the [contribution guidelines](https://github.com/vinta/awesome-python/blob/master/CONTRIBUTING.md) first. From 80a827a1ac84049ee41230e61550f2410727a332 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 7 Jun 2020 03:13:12 +0800 Subject: [PATCH 051/154] add missing periods --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05ad3c196..847de4ae8 100644 --- a/README.md +++ b/README.md @@ -975,7 +975,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). ## Science -*Libraries for scientific computing. Also see [Python-for-Scientists](https://github.com/TomNicholas/Python-for-Scientists)* +*Libraries for scientific computing. Also see [Python-for-Scientists](https://github.com/TomNicholas/Python-for-Scientists).* * [astropy](http://www.astropy.org/) - A community Python library for Astronomy. * [bcbio-nextgen](https://github.com/chapmanb/bcbio-nextgen) - Providing best-practice pipelines for fully automated high throughput sequencing analysis. @@ -1228,7 +1228,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). ## Web Frameworks -*Traditional full stack web frameworks. Also see [RESTful API](https://github.com/vinta/awesome-python#restful-api)* +*Traditional full stack web frameworks. Also see [RESTful API](https://github.com/vinta/awesome-python#restful-api).* * Synchronous * [Django](https://www.djangoproject.com/) - The most popular web framework in Python. From fe147d52876d9b4228bd458581b7d038efbc0091 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 7 Jun 2020 03:16:26 +0800 Subject: [PATCH 052/154] fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 847de4ae8..f22cfa0ac 100644 --- a/README.md +++ b/README.md @@ -1304,4 +1304,4 @@ I will keep some pull requests open if I'm not sure whether those libraries are - - - -If you have any question about this opinionated list, do not hesitate to contact me [@vinta](https://twitter.com/vinta) on Twitter or open an issue on GitHub. +If you have any question about this opinionated list, do not hesitate to contact me [@VintaChen](https://twitter.com/VintaChen) on Twitter or open an issue on GitHub. From 1273ceb3f546b9e91bcb0c5660c32d608c51038e Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 7 Jun 2020 03:22:04 +0800 Subject: [PATCH 053/154] add two podcasts --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f22cfa0ac..96af248db 100644 --- a/README.md +++ b/README.md @@ -1290,8 +1290,10 @@ Where to discover learning resources or new Python libraries. ## Podcasts +* [Django Chat](https://djangochat.com/) * [Podcast.\_\_init__](https://podcastinit.com/) * [Python Bytes](https://pythonbytes.fm) +* [Running in Production](https://runninginproduction.com/) * [Talk Python To Me](https://talkpython.fm/) * [Test and Code](https://testandcode.com/) * [The Real Python Podcast](https://realpython.com/podcasts/rpp/) From 63f70753e9ad3a7b75e9e9cfba5154436484074c Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 7 Jun 2020 04:03:24 +0800 Subject: [PATCH 054/154] add a reminder to the contributing guideline --- CONTRIBUTING.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0c835c55f..4838636e1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,13 +2,13 @@ Your contributions are always welcome! -## Guidelines +## Guideline * Add one link per Pull Request. * Make sure the PR title is in the format of `Add project-name`. * Write down the reason why the library is awesome. * Add the link: `* [project-name](http://example.com/) - A short description ends with a period.` - * Keep descriptions concise. + * Keep descriptions concise and **short**. * Add a section if needed. * Add the section description. * Add the section title to Table of Contents. @@ -17,3 +17,4 @@ Your contributions are always welcome! * Check your spelling and grammar. * Remove any trailing whitespace. +Just a gentle reminder: **Try not to submit your own project. Instead, wait for someone finds it useful and submit it for you.** From b025cd3cc23635ab185d9e94b4a2b6e09dfe4ca0 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 12 Jun 2020 03:11:47 +0800 Subject: [PATCH 055/154] add borg Fixes #1553 --- README.md | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index dad62acef..1ae504592 100644 --- a/README.md +++ b/README.md @@ -473,18 +473,24 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Software and libraries for DevOps.* -* [ansible](https://github.com/ansible/ansible) - A radically simple IT automation platform. -* [cloudinit](https://cloudinit.readthedocs.io/en/latest/) - A multi-distribution package that handles early initialization of a cloud instance. -* [cuisine](https://github.com/sebastien/cuisine) - Chef-like functionality for Fabric. -* [docker-compose](https://docs.docker.com/compose/) - Fast, isolated development environments using [Docker](https://www.docker.com/). -* [fabric](https://github.com/fabric/fabric) - A simple, Pythonic tool for remote execution and deployment. -* [fabtools](https://github.com/fabtools/fabtools) - Tools for writing awesome Fabric files. -* [honcho](https://github.com/nickstenning/honcho) - A Python clone of [Foreman](https://github.com/ddollar/foreman), for managing Procfile-based applications. -* [OpenStack](https://www.openstack.org/) - Open source software for building private and public clouds. -* [pexpect](https://github.com/pexpect/pexpect) - Controlling interactive programs in a pseudo-terminal like GNU expect. -* [psutil](https://github.com/giampaolo/psutil) - A cross-platform process and system utilities module. -* [saltstack](https://github.com/saltstack/salt) - Infrastructure automation and management system. -* [supervisor](https://github.com/Supervisor/supervisor) - Supervisor process control system for UNIX. +* Configuration Management + * [ansible](https://github.com/ansible/ansible) - A radically simple IT automation platform. + * [saltstack](https://github.com/saltstack/salt) - Infrastructure automation and management system. + * [cloudinit](https://cloudinit.readthedocs.io/en/latest/) - A multi-distribution package that handles early initialization of a cloud instance. + * [OpenStack](https://www.openstack.org/) - Open source software for building private and public clouds. +* SSH-style Deployment + * [fabric](https://github.com/fabric/fabric) - A simple, Pythonic tool for remote execution and deployment. + * [fabtools](https://github.com/fabtools/fabtools) - Tools for writing awesome Fabric files. + * [cuisine](https://github.com/sebastien/cuisine) - Chef-like functionality for Fabric. +* Process Management + * [supervisor](https://github.com/Supervisor/supervisor) - Supervisor process control system for UNIX. + * [honcho](https://github.com/nickstenning/honcho) - A Python clone of [Foreman](https://github.com/ddollar/foreman), for managing Procfile-based applications. +* Monitoring + * [psutil](https://github.com/giampaolo/psutil) - A cross-platform process and system utilities module. +* Backup + * [BorgBackup](https://www.borgbackup.org/) - A deduplicating archiver with compression and encryption. +* Others + * [docker-compose](https://docs.docker.com/compose/) - Fast, isolated development environments using [Docker](https://www.docker.com/). ## Distributed Computing From c11ea42781f82d71c4889f0f84106e6602afa1cb Mon Sep 17 00:00:00 2001 From: Tupteq Date: Tue, 16 Jun 2020 16:52:37 +0200 Subject: [PATCH 056/154] Updated pyglet site link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ae504592..c2b079b34 100644 --- a/README.md +++ b/README.md @@ -647,7 +647,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Flexx](https://github.com/zoofIO/flexx) - Flexx is a pure Python toolkit for creating GUI's, that uses web technology for its rendering. * [Gooey](https://github.com/chriskiehl/Gooey) - Turn command line programs into a full GUI application with one line. * [kivy](https://kivy.org/) - A library for creating NUI applications, running on Windows, Linux, Mac OS X, Android and iOS. -* [pyglet](https://bitbucket.org/pyglet/pyglet/wiki/Home) - A cross-platform windowing and multimedia library for Python. +* [pyglet](https://github.com/pyglet/pyglet) - A cross-platform windowing and multimedia library for Python. * [PyGObject](https://wiki.gnome.org/Projects/PyGObject) - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3). * [PyQt](https://riverbankcomputing.com/software/pyqt/intro) - Python bindings for the [Qt](https://www.qt.io/) cross-platform application and UI framework. * [PySimpleGUI](https://github.com/PySimpleGUI/PySimpleGUI) - Wrapper for tkinter, Qt, WxPython and Remi. From f156c2b8253a7de2dca40e5a28b3001a973bc180 Mon Sep 17 00:00:00 2001 From: FooBarQuaxx Date: Tue, 23 Jun 2020 12:24:48 +0200 Subject: [PATCH 057/154] added pyinfra to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2b079b34..f9214767c 100644 --- a/README.md +++ b/README.md @@ -478,6 +478,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [saltstack](https://github.com/saltstack/salt) - Infrastructure automation and management system. * [cloudinit](https://cloudinit.readthedocs.io/en/latest/) - A multi-distribution package that handles early initialization of a cloud instance. * [OpenStack](https://www.openstack.org/) - Open source software for building private and public clouds. + * [pyinfra](https://github.com/Fizzadar/pyinfra) - A versatile CLI tools and python libraries to automate infrastructure. * SSH-style Deployment * [fabric](https://github.com/fabric/fabric) - A simple, Pythonic tool for remote execution and deployment. * [fabtools](https://github.com/fabtools/fabtools) - Tools for writing awesome Fabric files. From d79176ea3673c852a38ff3ef9603999a342f5aef Mon Sep 17 00:00:00 2001 From: Tobias Uelwer Date: Wed, 24 Jun 2020 12:18:44 +0200 Subject: [PATCH 058/154] Add PyMatting --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2b079b34..722b7740f 100644 --- a/README.md +++ b/README.md @@ -739,6 +739,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pillow](https://github.com/python-pillow/Pillow) - Pillow is the friendly [PIL](http://www.pythonware.com/products/pil/) fork. * [pyBarcode](https://pythonhosted.org/pyBarcode/) - Create barcodes in Python without needing PIL. * [pygram](https://github.com/ajkumar25/pygram) - Instagram-like image filters. +* [PyMatting](http://github.com/pymatting/pymatting) - A library for alpha matting. * [python-qrcode](https://github.com/lincolnloop/python-qrcode) - A pure Python QR Code generator. * [Quads](https://github.com/fogleman/Quads) - Computer art based on quadtrees. * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. From c6846637c423bada8e992a660d015008e1258bf5 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 25 Jun 2020 09:33:24 +0800 Subject: [PATCH 059/154] fix typo --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4838636e1..a46dfefee 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,4 +17,4 @@ Your contributions are always welcome! * Check your spelling and grammar. * Remove any trailing whitespace. -Just a gentle reminder: **Try not to submit your own project. Instead, wait for someone finds it useful and submit it for you.** +Just a gentle reminder: **Try not to submit your own project. Instead, wait for someone finds it useful and submits it for you.** From 1f87db9ba8a623251f16c4d056db8c3ca657ee7c Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sat, 4 Jul 2020 18:16:01 +0800 Subject: [PATCH 060/154] add trio --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ac3777810..db18171c8 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [asyncio](https://docs.python.org/3/library/asyncio.html) - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks. - [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio) * [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast asyncio event loop. +* [trio](https://github.com/python-trio/trio) - A friendly library for async concurrency and I/O. * [Twisted](https://twistedmatrix.com/trac/) - An event-driven networking engine. ## Audio From 386259a11f0d7102345002f19fa403476af8ecac Mon Sep 17 00:00:00 2001 From: JungGeun Ahn Date: Mon, 6 Jul 2020 18:38:14 +0900 Subject: [PATCH 061/154] Update README.md add [librosa] in audio --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index db18171c8..e1503cb89 100644 --- a/README.md +++ b/README.md @@ -156,6 +156,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. * [TimeSide](https://github.com/Parisson/TimeSide) - Open web audio processing framework. + * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis + * Metadata * [beets](https://github.com/beetbox/beets) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger. * [eyeD3](https://github.com/nicfit/eyeD3) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. From eef65b923db3d193fdcae9f092428dc077632614 Mon Sep 17 00:00:00 2001 From: JungGeun Ahn Date: Mon, 6 Jul 2020 18:39:17 +0900 Subject: [PATCH 062/154] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1503cb89..10f193742 100644 --- a/README.md +++ b/README.md @@ -151,12 +151,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Audio * [audioread](https://github.com/beetbox/audioread) - Cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding. * [dejavu](https://github.com/worldveil/dejavu) - Audio fingerprinting and recognition. + * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. * [mingus](http://bspaans.github.io/python-mingus/) - An advanced music theory and notation package with MIDI file and playback support. * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. * [TimeSide](https://github.com/Parisson/TimeSide) - Open web audio processing framework. - * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis * Metadata * [beets](https://github.com/beetbox/beets) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger. From bed042d3b0c1704b95c9450c8d315b68fe2619a9 Mon Sep 17 00:00:00 2001 From: JungGeun Ahn Date: Tue, 7 Jul 2020 17:08:54 +0900 Subject: [PATCH 063/154] Update README.md add kapre that is Keras Audio Preprocessors --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 10f193742..7172889d1 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Audio * [audioread](https://github.com/beetbox/audioread) - Cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding. * [dejavu](https://github.com/worldveil/dejavu) - Audio fingerprinting and recognition. + * [kapre](https://github.com/keunwoochoi/kapre) - Keras Audio Preprocessors * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. * [mingus](http://bspaans.github.io/python-mingus/) - An advanced music theory and notation package with MIDI file and playback support. From c0902c1801ef2e3c8ca54fd084469bfc4b695a2c Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 7 Jul 2020 16:18:46 +0800 Subject: [PATCH 064/154] clean --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 10f193742..4e2e146a9 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. * [TimeSide](https://github.com/Parisson/TimeSide) - Open web audio processing framework. - * Metadata * [beets](https://github.com/beetbox/beets) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger. * [eyeD3](https://github.com/nicfit/eyeD3) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. From f24e206b759e10353d134cb8bd2b9071f2c0ed41 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 8 Jul 2020 18:17:36 +0800 Subject: [PATCH 065/154] reorder --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 706baeaa6..74e569395 100644 --- a/README.md +++ b/README.md @@ -311,10 +311,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for Computer Vision.* -* [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. * [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. -* [pytesseract](https://github.com/madmaze/pytesseract) - Another wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). -* [tesserocr](https://github.com/sirfz/tesserocr) - A simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. +* [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. +* [pytesseract](https://github.com/madmaze/pytesseract) - A wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). +* [tesserocr](https://github.com/sirfz/tesserocr) - Another simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. * [SimpleCV](https://github.com/sightmachine/SimpleCV) - An open source framework for building computer vision applications. ## Concurrency and Parallelism From 189fec48c7c27f54b0b8eec9f92ff9e778b8234e Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 8 Jul 2020 18:19:10 +0800 Subject: [PATCH 066/154] add EasyOCR https://github.com/JaidedAI/EasyOCR --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 74e569395..c9e796ae3 100644 --- a/README.md +++ b/README.md @@ -312,6 +312,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for Computer Vision.* * [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. +* [EasyOCR](https://github.com/JaidedAI/EasyOCR) - Ready-to-use OCR with 40+ languages supported. * [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. * [pytesseract](https://github.com/madmaze/pytesseract) - A wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). * [tesserocr](https://github.com/sirfz/tesserocr) - Another simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. From 7486d575e5afc62adbdcc22a844025d13ff86210 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 9 Jul 2020 13:31:00 +0800 Subject: [PATCH 067/154] rename --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6708d9068..1ed26c286 100644 --- a/README.md +++ b/README.md @@ -804,11 +804,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for generating and working with logs.* -* [Eliot](https://github.com/ScatterHQ/eliot) - Logging for complex & distributed systems. -* [logbook](http://logbook.readthedocs.io/en/stable/) - Logging replacement for Python. * [logging](https://docs.python.org/3/library/logging.html) - (Python standard library) Logging facility for Python. -* [raven](https://github.com/getsentry/raven-python) - Python client for Sentry, a log/error tracking, crash reporting and aggregation platform for web applications. +* [logbook](http://logbook.readthedocs.io/en/stable/) - Logging replacement for Python. * [loguru](https://github.com/Delgan/loguru) - Library which aims to bring enjoyable logging in Python. +* [sentry-python](https://github.com/getsentry/sentry-python) - Sentry SDK for Python. ## Machine Learning From f309c55ed825ab53c8159a1f5fad105400adaa93 Mon Sep 17 00:00:00 2001 From: Coding Capricorn Date: Fri, 10 Jul 2020 11:20:39 +0530 Subject: [PATCH 068/154] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1ed26c286..608e44350 100644 --- a/README.md +++ b/README.md @@ -376,6 +376,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Altair](https://github.com/altair-viz/altair) - Declarative statistical visualization library for Python. * [Bokeh](https://github.com/bokeh/bokeh) - Interactive Web Plotting for Python. * [bqplot](https://github.com/bloomberg/bqplot) - Interactive Plotting Library for the Jupyter Notebook +* [Cartopy](https://github.com/SciTools/cartopy) - A cartographic python library with matplotlib support * [Dash](https://plot.ly/products/dash/) - Built on top of Flask, React and Plotly aimed at analytical web applications. * [awesome-dash](https://github.com/Acrotrend/awesome-dash) * [diagrams](https://github.com/mingrammer/diagrams) - Diagram as Code. From c653254d0bfcae74c7de0fc27386bc9ad0ee4c99 Mon Sep 17 00:00:00 2001 From: Vanshaj Bhatnagar <63310123+thePrankster@users.noreply.github.com> Date: Sun, 12 Jul 2020 10:20:57 +0530 Subject: [PATCH 069/154] Added Arcade Added Arcade framework in game development category. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 608e44350..e78a01d25 100644 --- a/README.md +++ b/README.md @@ -679,6 +679,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Harfang3D](http://www.harfang3d.com) - Python framework for 3D, VR and game development. * [Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney. * [Pygame](http://www.pygame.org/news.html) - Pygame is a set of Python modules designed for writing games. +* [Arcade](http://www.arcade.academy/index.html) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. * [PyOgre](http://www.ogre3d.org/tikiwiki/PyOgre) - Python bindings for the Ogre 3D render engine, can be used for games, simulations, anything 3D. * [PyOpenGL](http://pyopengl.sourceforge.net/) - Python ctypes bindings for OpenGL and it's related APIs. * [PySDL2](https://pysdl2.readthedocs.io) - A ctypes based wrapper for the SDL2 library. From e5db471ddb9511c39ef6ecb1e1e899f55c1c5090 Mon Sep 17 00:00:00 2001 From: Vanshaj Bhatnagar <63310123+thePrankster@users.noreply.github.com> Date: Sun, 12 Jul 2020 10:23:34 +0530 Subject: [PATCH 070/154] Added Arcade Added Arcade framework in game development category. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e78a01d25..0ccb3354a 100644 --- a/README.md +++ b/README.md @@ -679,7 +679,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Harfang3D](http://www.harfang3d.com) - Python framework for 3D, VR and game development. * [Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney. * [Pygame](http://www.pygame.org/news.html) - Pygame is a set of Python modules designed for writing games. -* [Arcade](http://www.arcade.academy/index.html) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. +* [Arcade](https://arcade.academy/index.html) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. * [PyOgre](http://www.ogre3d.org/tikiwiki/PyOgre) - Python bindings for the Ogre 3D render engine, can be used for games, simulations, anything 3D. * [PyOpenGL](http://pyopengl.sourceforge.net/) - Python ctypes bindings for OpenGL and it's related APIs. * [PySDL2](https://pysdl2.readthedocs.io) - A ctypes based wrapper for the SDL2 library. From bbab941cc8f4dd249436241382f28b5c5d9eb819 Mon Sep 17 00:00:00 2001 From: Ryan Delaney Date: Tue, 14 Jul 2020 15:20:40 -0400 Subject: [PATCH 071/154] Add structlog --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0ccb3354a..944afb550 100644 --- a/README.md +++ b/README.md @@ -810,6 +810,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [logbook](http://logbook.readthedocs.io/en/stable/) - Logging replacement for Python. * [loguru](https://github.com/Delgan/loguru) - Library which aims to bring enjoyable logging in Python. * [sentry-python](https://github.com/getsentry/sentry-python) - Sentry SDK for Python. +* [structlog](https://www.structlog.org/en/stable/) - Structured logging made easy. ## Machine Learning From 396b17f269bbbf13351f5c4f2b9a203402433778 Mon Sep 17 00:00:00 2001 From: Regev Golan Date: Sun, 2 Aug 2020 09:51:49 +0300 Subject: [PATCH 072/154] Sort readme and add to docs build --- .gitignore | 3 ++ .travis.yml | 1 + README.md | 111 ++++++++++++++++++++++++++-------------------------- sort.py | 1 + 4 files changed, 61 insertions(+), 55 deletions(-) mode change 100644 => 100755 sort.py diff --git a/.gitignore b/.gitignore index 4046e40f0..096c327d6 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ docs/index.md site/ + +# PyCharm IDE +.idea diff --git a/.travis.yml b/.travis.yml index f2cfce4d9..e1c0a23d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "3.6" script: + - python sort.py - cp README.md docs/index.md - mkdocs build diff --git a/README.md b/README.md index 37aa61460..303969181 100644 --- a/README.md +++ b/README.md @@ -94,9 +94,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [WSGI Servers](#wsgi-servers) - [Resources](#resources) - [Books](#books) - - [Websites](#websites) - [Newsletters](#newsletters) - [Podcasts](#podcasts) + - [Websites](#websites) - [Contributing](#contributing) --- @@ -110,9 +110,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [django-jet](https://github.com/geex-arts/django-jet) - Modern responsive template for the Django admin interface with improved functionality. * [django-suit](https://djangosuit.com/) - Alternative Django Admin-Interface (free only for Non-commercial use). * [django-xadmin](https://github.com/sshwsfc/xadmin) - Drop-in replacement of Django admin comes with lots of goodies. -* [jet-bridge](https://github.com/jet-admin/jet-bridge) - Admin panel framework for any application with nice UI (ex Jet Django) * [flask-admin](https://github.com/flask-admin/flask-admin) - Simple and extensible administrative interface framework for Flask. * [flower](https://github.com/mher/flower) - Real-time monitor and web admin for Celery. +* [jet-bridge](https://github.com/jet-admin/jet-bridge) - Admin panel framework for any application with nice UI (ex Jet Django) * [wooey](https://github.com/wooey/wooey) - A Django app which creates automatic web UIs for Python scripts. ## Algorithms and Design Patterns @@ -120,10 +120,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Python implementation of data structures, algorithms and design patterns.* * Algorithms - * [TheAlgorithms](https://github.com/TheAlgorithms/Python) - All Algorithms implemented in Python. * [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms. * [python-ds](https://github.com/prabhupant/python-ds) - A collection of data structure and algorithms for coding interviews. * [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast and pure-Python implementation of sorted collections. + * [TheAlgorithms](https://github.com/TheAlgorithms/Python) - All Algorithms implemented in Python. * Design Patterns * [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. @@ -133,16 +133,16 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *[ASGI](https://asgi.readthedocs.io/en/latest/)-compatible web servers.* -* [uvicorn](https://github.com/encode/uvicorn) - A lightning-fast ASGI server implementation, using uvloop and httptools. * [daphne](https://github.com/django/daphne) - A HTTP, HTTP2 and WebSocket protocol server for ASGI and ASGI-HTTP. +* [uvicorn](https://github.com/encode/uvicorn) - A lightning-fast ASGI server implementation, using uvloop and httptools. ## Asynchronous Programming * [asyncio](https://docs.python.org/3/library/asyncio.html) - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks. - [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio) -* [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast asyncio event loop. * [trio](https://github.com/python-trio/trio) - A friendly library for async concurrency and I/O. * [Twisted](https://twistedmatrix.com/trac/) - An event-driven networking engine. +* [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast asyncio event loop. ## Audio @@ -194,17 +194,16 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for enhancing Python built-in classes.* -* [dataclasses](https://docs.python.org/3/library/dataclasses.html) - (Python standard library) Data classes. * [attrs](https://github.com/python-attrs/attrs) - Replacement for `__init__`, `__eq__`, `__repr__`, etc. boilerplate in class definitions. * [bidict](https://github.com/jab/bidict) - Efficient, Pythonic bidirectional map data structures and related functionality.. * [Box](https://github.com/cdgriffith/Box) - Python dictionaries with advanced dot notation access. +* [dataclasses](https://docs.python.org/3/library/dataclasses.html) - (Python standard library) Data classes. * [DottedDict](https://github.com/carlosescri/DottedDict) - A library that provides a method of accessing lists and dicts with a dotted path notation. ## CMS *Content Management Systems.* -* [wagtail](https://wagtail.io/) - A Django content management system. * [django-cms](https://www.django-cms.org/en/) - An Open source enterprise CMS based on the Django. * [feincms](https://github.com/feincms/feincms) - One of the most advanced Content Management Systems built on Django. * [indico](https://github.com/indico/indico) - A feature-rich event management system, made @ [CERN](https://en.wikipedia.org/wiki/CERN). @@ -212,6 +211,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [mezzanine](https://github.com/stephenmcd/mezzanine) - A powerful, consistent, and flexible content management platform. * [plone](https://plone.org/) - A CMS built on top of the open source application server Zope. * [quokka](https://github.com/rochacbruno/quokka) - Flexible, extensible, small CMS powered by Flask and MongoDB. +* [wagtail](https://wagtail.io/) - A Django content management system. ## Caching @@ -244,16 +244,16 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Code Linters * [flake8](https://pypi.org/project/flake8/) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. * [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) - * [pylint](https://www.pylint.org/) - A fully customizable source code analyzer. * [pylama](https://github.com/klen/pylama) - A code audit tool for Python and JavaScript. + * [pylint](https://www.pylint.org/) - A fully customizable source code analyzer. * [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) - The strictest and most opinionated python linter ever. * Code Formatters * [black](https://github.com/python/black) - The uncompromising Python code formatter. * [yapf](https://github.com/google/yapf) - Yet another Python code formatter from Google. * Static Type Checkers, also see [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing) * [mypy](http://mypy-lang.org/) - Check variable types during compile time. - * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. * [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. + * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. * Static Type Annotations Generators * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types @@ -269,12 +269,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [python-fire](https://github.com/google/python-fire) - A library for creating command line interfaces from absolutely any Python object. * [python-prompt-toolkit](https://github.com/jonathanslenders/python-prompt-toolkit) - A library for building powerful interactive command lines. * Terminal Rendering + * [alive-progress](https://github.com/rsalmei/alive-progress) - A new kind of Progress Bar, with real-time throughput, eta and very cool animations. * [asciimatics](https://github.com/peterbrittain/asciimatics) - A package to create full-screen text UIs (from interactive forms to ASCII animations). * [bashplotlib](https://github.com/glamp/bashplotlib) - Making basic plots in the terminal. * [colorama](https://pypi.org/project/colorama/) - Cross-platform colored terminal text. * [rich](https://github.com/willmcgugan/rich) - Python library for rich text and beautiful formatting in the terminal. Also provides a great `RichHandler` log handler. * [tqdm](https://github.com/tqdm/tqdm) - Fast, extensible progress bar for loops and CLI. - * [alive-progress](https://github.com/rsalmei/alive-progress) - A new kind of Progress Bar, with real-time throughput, eta and very cool animations. ## Command-line Tools @@ -292,11 +292,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [try](https://github.com/timofurrer/try) - A dead simple CLI to try out python packages - it's never been easier. * CLI Enhancements * [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement. + * [iredis](https://github.com/laixintao/iredis) - Redis CLI with autocompletion and syntax highlighting. * [kube-shell](https://github.com/cloudnativelabs/kube-shell) - An integrated shell for working with the Kubernetes CLI. + * [litecli](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. * [mycli](https://github.com/dbcli/mycli) - MySQL CLI with autocompletion and syntax highlighting. * [pgcli](https://github.com/dbcli/pgcli) - PostgreSQL CLI with autocompletion and syntax highlighting. - * [iredis](https://github.com/laixintao/iredis) - Redis CLI with autocompletion and syntax highlighting. - * [litecli](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. * [saws](https://github.com/donnemartin/saws) - A Supercharged [aws-cli](https://github.com/aws/aws-cli). ## Compatibility @@ -311,23 +311,23 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for Computer Vision.* -* [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. * [EasyOCR](https://github.com/JaidedAI/EasyOCR) - Ready-to-use OCR with 40+ languages supported. * [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. +* [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. * [pytesseract](https://github.com/madmaze/pytesseract) - A wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). -* [tesserocr](https://github.com/sirfz/tesserocr) - Another simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. * [SimpleCV](https://github.com/sightmachine/SimpleCV) - An open source framework for building computer vision applications. +* [tesserocr](https://github.com/sirfz/tesserocr) - Another simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. ## Concurrency and Parallelism *Libraries for concurrent and parallel execution. Also see [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio).* * [concurrent.futures](https://docs.python.org/3/library/concurrent.futures.html) - (Python standard library) A high-level interface for asynchronously executing callables. -* [multiprocessing](https://docs.python.org/3/library/multiprocessing.html) - (Python standard library) Process-based parallelism. * [eventlet](http://eventlet.net/) - Asynchronous framework with WSGI support. * [gevent](http://www.gevent.org/) - A coroutine-based Python networking library that uses [greenlet](https://github.com/python-greenlet/greenlet). -* [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast implementation of `asyncio` event loop on top of `libuv`. +* [multiprocessing](https://docs.python.org/3/library/multiprocessing.html) - (Python standard library) Process-based parallelism. * [scoop](https://github.com/soravux/scoop) - Scalable Concurrent Operations in Python. +* [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast implementation of `asyncio` event loop on top of `libuv`. ## Configuration @@ -335,9 +335,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [configobj](https://github.com/DiffSK/configobj) - INI file parser with validation. * [configparser](https://docs.python.org/3/library/configparser.html) - (Python standard library) INI file parser. +* [hydra](https://github.com/facebookresearch/hydra) - Hydra is a framework for elegantly configuring complex applications. * [profig](https://profig.readthedocs.io/en/latest/) - Config from multiple formats with value conversion. * [python-decouple](https://github.com/henriquebastos/python-decouple) - Strict separation of settings from code. -* [hydra](https://github.com/facebookresearch/hydra) - Hydra is a framework for elegantly configuring complex applications. ## Cryptography @@ -350,12 +350,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for data analyzing.* +* [AWS Data Wrangler](https://github.com/awslabs/aws-data-wrangler) - Pandas on AWS. * [Blaze](https://github.com/blaze/blaze) - NumPy and Pandas interface to Big Data. * [Open Mining](https://github.com/mining/mining) - Business Intelligence (BI) in Pandas interface. +* [Optimus](https://github.com/ironmussa/Optimus) - Agile Data Science Workflows made easy with PySpark. * [Orange](https://orange.biolab.si/) - Data mining, data visualization, analysis and machine learning through visual programming or scripts. * [Pandas](http://pandas.pydata.org/) - A library providing high-performance, easy-to-use data structures and data analysis tools. -* [Optimus](https://github.com/ironmussa/Optimus) - Agile Data Science Workflows made easy with PySpark. -* [AWS Data Wrangler](https://github.com/awslabs/aws-data-wrangler) - Pandas on AWS. ## Data Validation @@ -380,8 +380,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Dash](https://plot.ly/products/dash/) - Built on top of Flask, React and Plotly aimed at analytical web applications. * [awesome-dash](https://github.com/Acrotrend/awesome-dash) * [diagrams](https://github.com/mingrammer/diagrams) - Diagram as Code. -* [plotnine](https://github.com/has2k1/plotnine) - A grammar of graphics for Python based on ggplot2. * [Matplotlib](http://matplotlib.org/) - A Python 2D plotting library. +* [plotnine](https://github.com/has2k1/plotnine) - A grammar of graphics for Python based on ggplot2. * [Pygal](http://www.pygal.org/en/latest/) - A Python SVG Charts Creator. * [PyGraphviz](https://pypi.org/project/pygraphviz/) - Python interface to [Graphviz](http://www.graphviz.org/). * [PyQtGraph](http://www.pyqtgraph.org/) - Interactive and realtime 2D/3D/Image plotting and science/engineering widgets. @@ -427,12 +427,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Chronyk](https://github.com/KoffeinFlummi/Chronyk) - A Python 3 library for parsing human-written times and dates. * [dateutil](https://github.com/dateutil/dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/3/library/datetime.html) module. * [delorean](https://github.com/myusuf3/delorean/) - A library for clearing up the inconvenient truths that arise dealing with datetimes. +* [maya](https://github.com/timofurrer/maya) - Datetimes for Humans. * [moment](https://github.com/zachwill/moment) - A Python library for dealing with dates/times. Inspired by [Moment.js](http://momentjs.com/). * [Pendulum](https://github.com/sdispater/pendulum) - Python datetimes made easy. * [PyTime](https://github.com/shinux/PyTime) - An easy-to-use Python module which aims to operate date/time/datetime by string. * [pytz](https://launchpad.net/pytz) - World timezone definitions, modern and historical. Brings the [tz database](https://en.wikipedia.org/wiki/Tz_database) into Python. * [when.py](https://github.com/dirn/When.py) - Providing user-friendly functions to help perform common date and time actions. -* [maya](https://github.com/timofurrer/maya) - Datetimes for Humans. ## Debugging Tools @@ -456,10 +456,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyflame](https://github.com/uber/pyflame) - A ptracing profiler For Python. * [vprof](https://github.com/nvdv/vprof) - Visual Python profiler. * Others - * [icecream](https://github.com/gruns/icecream) - Inspect variables, expressions, and program execution with a single, simple function call. * [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar) - Display various debug information for Django. * [django-devserver](https://github.com/dcramer/django-devserver) - A drop-in replacement for Django's runserver. * [flask-debugtoolbar](https://github.com/mgood/flask-debugtoolbar) - A port of the django-debug-toolbar to flask. + * [icecream](https://github.com/gruns/icecream) - Inspect variables, expressions, and program execution with a single, simple function call. * [pyelftools](https://github.com/eliben/pyelftools) - Parsing and analyzing ELF files and DWARF debugging information. ## Deep Learning @@ -480,17 +480,17 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Configuration Management * [ansible](https://github.com/ansible/ansible) - A radically simple IT automation platform. - * [saltstack](https://github.com/saltstack/salt) - Infrastructure automation and management system. * [cloudinit](https://cloudinit.readthedocs.io/en/latest/) - A multi-distribution package that handles early initialization of a cloud instance. * [OpenStack](https://www.openstack.org/) - Open source software for building private and public clouds. * [pyinfra](https://github.com/Fizzadar/pyinfra) - A versatile CLI tools and python libraries to automate infrastructure. + * [saltstack](https://github.com/saltstack/salt) - Infrastructure automation and management system. * SSH-style Deployment + * [cuisine](https://github.com/sebastien/cuisine) - Chef-like functionality for Fabric. * [fabric](https://github.com/fabric/fabric) - A simple, Pythonic tool for remote execution and deployment. * [fabtools](https://github.com/fabtools/fabtools) - Tools for writing awesome Fabric files. - * [cuisine](https://github.com/sebastien/cuisine) - Chef-like functionality for Fabric. * Process Management - * [supervisor](https://github.com/Supervisor/supervisor) - Supervisor process control system for UNIX. * [honcho](https://github.com/nickstenning/honcho) - A Python clone of [Foreman](https://github.com/ddollar/foreman), for managing Procfile-based applications. + * [supervisor](https://github.com/Supervisor/supervisor) - Supervisor process control system for UNIX. * Monitoring * [psutil](https://github.com/giampaolo/psutil) - A cross-platform process and system utilities module. * Backup @@ -503,10 +503,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Frameworks and libraries for Distributed Computing.* * Batch Processing - * [PySpark](https://pypi.org/project/pyspark/) - [Apache Spark](https://spark.apache.org/) Python API. * [dask](https://github.com/dask/dask) - A flexible parallel computing library for analytic computing. * [luigi](https://github.com/spotify/luigi) - A module that helps you build complex pipelines of batch jobs. * [mrjob](https://github.com/Yelp/mrjob) - Run MapReduce jobs on Hadoop or Amazon Web Services. + * [PySpark](https://pypi.org/project/pyspark/) - [Apache Spark](https://spark.apache.org/) Python API. * [Ray](https://github.com/ray-project/ray/) - A system for parallel and distributed Python that unifies the machine learning ecosystem. * Stream Processing * [faust](https://github.com/robinhood/faust) - A stream processing library, porting the ideas from [Kafka Streams](https://kafka.apache.org/documentation/streams/) to Python. @@ -520,9 +520,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Nuitka](http://nuitka.net/) - Compile scripts, modules, packages to an executable or extension module. * [py2app](http://pythonhosted.org/py2app/) - Freezes Python scripts (Mac OS X). * [py2exe](http://www.py2exe.org/) - Freezes Python scripts (Windows). +* [pyarmor](https://github.com/dashingsoft/pyarmor) - A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts. * [PyInstaller](https://github.com/pyinstaller/pyinstaller) - Converts Python programs into stand-alone executables (cross-platform). * [pynsist](http://pynsist.readthedocs.io/en/latest/) - A tool to build Windows installers, installers bundle Python itself. -* [pyarmor](https://github.com/dashingsoft/pyarmor) - A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts. * [shiv](https://github.com/linkedin/shiv) - A command line utility for building fully self-contained zipapps (PEP 441), but with all their dependencies included. ## Documentation @@ -538,11 +538,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for downloading.* +* [akshare](https://github.com/jindaxiang/akshare) - A financial data interface library, built for human beings! * [s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront. * [s4cmd](https://github.com/bloomreach/s4cmd) - Super S3 command line tool, good for higher performance. * [you-get](https://you-get.org/) - A YouTube/Youku/Niconico video downloader written in Python 3. * [youtube-dl](https://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube. -* [akshare](https://github.com/jindaxiang/akshare) - A financial data interface library, built for human beings! ## E-commerce @@ -552,10 +552,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Cartridge](https://github.com/stephenmcd/cartridge) - A shopping cart app built using the Mezzanine. * [django-oscar](http://oscarcommerce.com/) - An open-source e-commerce framework for Django. * [django-shop](https://github.com/awesto/django-shop) - A Django based shop system. +* [forex-python](https://github.com/MicroPyramid/forex-python) - Foreign exchange rates, Bitcoin price index and currency conversion. * [merchant](https://github.com/agiliq/merchant) - A Django app to accept payments from various payment processors. * [money](https://github.com/carlospalol/money) - `Money` class with optional CLDR-backed locale-aware formatting and an extensible currency exchange. * [python-currencies](https://github.com/Alir3z4/python-currencies) - Display money format and its filthy currencies. -* [forex-python](https://github.com/MicroPyramid/forex-python) - Foreign exchange rates, Bitcoin price index and currency conversion. * [saleor](http://getsaleor.com/) - An e-commerce storefront for Django. * [shoop](https://www.shuup.com/en/) - An open source E-Commerce platform based on Django. @@ -636,12 +636,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Functional Programming with Python.* * [Coconut](https://github.com/evhub/coconut) - A variant of Python built for simple, elegant, Pythonic functional programming. +* [CyToolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of `Toolz`: High performance functional utilities. * [fn.py](https://github.com/kachayev/fn.py) - Functional programming in Python: implementation of missing features to enjoy FP. * [funcy](https://github.com/Suor/funcy) - A fancy and practical functional tools. * [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. * [returns](https://github.com/dry-python/returns) - A set of type-safe monads, tranformers, and composition utilities. * [Toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. -* [CyToolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of `Toolz`: High performance functional utilities. ## GUI Development @@ -667,19 +667,19 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with GraphQL.* -* [tartiflette](https://tartiflette.io) - SDL-first GraphQL engine implementation for Python 3.6+ and asyncio. * [tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp/) - An `aiohttp`-based wrapper for Tartiflette to expose GraphQL APIs over HTTP. * [tartiflette-asgi](https://github.com/tartiflette/tartiflette-asgi/) - ASGI support for the Tartiflette GraphQL engine. +* [tartiflette](https://tartiflette.io) - SDL-first GraphQL engine implementation for Python 3.6+ and asyncio. ## Game Development *Awesome game development libraries.* +* [Arcade](https://arcade.academy/index.html) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. * [Cocos2d](http://cocos2d.org/) - cocos2d is a framework for building 2D games, demos, and other graphical/interactive applications. * [Harfang3D](http://www.harfang3d.com) - Python framework for 3D, VR and game development. * [Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney. * [Pygame](http://www.pygame.org/news.html) - Pygame is a set of Python modules designed for writing games. -* [Arcade](https://arcade.academy/index.html) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. * [PyOgre](http://www.ogre3d.org/tikiwiki/PyOgre) - Python bindings for the Ogre 3D render engine, can be used for games, simulations, anything 3D. * [PyOpenGL](http://pyopengl.sourceforge.net/) - Python ctypes bindings for OpenGL and it's related APIs. * [PySDL2](https://pysdl2.readthedocs.io) - A ctypes based wrapper for the SDL2 library. @@ -758,9 +758,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Implementations of Python.* +* [CLPython](https://github.com/metawilm/cl-python) - Implementation of the Python programming language written in Common Lisp. * [CPython](https://github.com/python/cpython) - **Default, most widely used implementation of the Python programming language written in C.** * [Cython](http://cython.org/) - Optimizing Static Compiler for Python. -* [CLPython](https://github.com/metawilm/cl-python) - Implementation of the Python programming language written in Common Lisp. * [Grumpy](https://github.com/google/grumpy) - More compiler than interpreter as more powerful CPython2.7 replacement (alpha). * [IronPython](https://github.com/IronLanguages/ironpython3) - Implementation of the Python programming language written in C#. * [Jython](https://hg.python.org/jython) - Implementation of Python programming language written in Java for the JVM. @@ -792,6 +792,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for scheduling jobs.* +* [Airflow](https://airflow.apache.org/) - Airflow is a platform to programmatically author, schedule and monitor workflows. * [APScheduler](http://apscheduler.readthedocs.io/en/latest/) - A light but powerful in-process task scheduler that lets you schedule functions. * [django-schedule](https://github.com/thauber/django-schedule) - A calendaring app for Django. * [doit](http://pydoit.org/) - A task runner and build tool. @@ -801,14 +802,13 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [schedule](https://github.com/dbader/schedule) - Python job scheduling for humans. * [Spiff](https://github.com/knipknap/SpiffWorkflow) - A powerful workflow engine implemented in pure Python. * [TaskFlow](https://docs.openstack.org/developer/taskflow/) - A Python library that helps to make task execution easy, consistent and reliable. -* [Airflow](https://airflow.apache.org/) - Airflow is a platform to programmatically author, schedule and monitor workflows. ## Logging *Libraries for generating and working with logs.* -* [logging](https://docs.python.org/3/library/logging.html) - (Python standard library) Logging facility for Python. * [logbook](http://logbook.readthedocs.io/en/stable/) - Logging replacement for Python. +* [logging](https://docs.python.org/3/library/logging.html) - (Python standard library) Logging facility for Python. * [loguru](https://github.com/Delgan/loguru) - Library which aims to bring enjoyable logging in Python. * [sentry-python](https://github.com/getsentry/sentry-python) - Sentry SDK for Python. * [structlog](https://www.structlog.org/en/stable/) - Structured logging made easy. @@ -860,10 +860,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [spacy](https://spacy.io/) - A library for industrial-strength natural language processing in Python and Cython. * [Stanza](https://github.com/stanfordnlp/stanza) - The Stanford NLP Group's official Python library, supporting 60+ languages. - Chinese + * [funNLP](https://github.com/fighting41love/funNLP) - A collection of tools and datasets for Chinese NLP. * [jieba](https://github.com/fxsjy/jieba) - The most popular Chinese text segmentation library. * [pkuseg-python](https://github.com/lancopku/pkuseg-python) - A toolkit for Chinese word segmentation in various domains. * [snownlp](https://github.com/isnowfy/snownlp) - A library for processing Chinese text. - * [funNLP](https://github.com/fighting41love/funNLP) - A collection of tools and datasets for Chinese NLP. ## Network Virtualization @@ -905,19 +905,19 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for package and dependency management.* * [pip](https://pip.pypa.io/en/stable/) - The package installer for Python. - * [PyPI](https://pypi.org/) * [pip-tools](https://github.com/jazzband/pip-tools) - A set of tools to keep your pinned Python dependencies fresh. -* [poetry](https://github.com/sdispater/poetry) - Python dependency management and packaging made easy. + * [PyPI](https://pypi.org/) * [conda](https://github.com/conda/conda/) - Cross-platform, Python-agnostic binary package manager. +* [poetry](https://github.com/sdispater/poetry) - Python dependency management and packaging made easy. ## Package Repositories *Local PyPI repository server and proxies.* -* [warehouse](https://github.com/pypa/warehouse) - Next generation Python Package Repository (PyPI). * [bandersnatch](https://github.com/pypa/bandersnatch/) - PyPI mirroring tool provided by Python Packaging Authority (PyPA). * [devpi](https://github.com/devpi/devpi) - PyPI server and packaging/testing/release tool. * [localshop](https://github.com/jazzband/localshop) - Local PyPI server (custom packages and auto-mirroring of pypi). +* [warehouse](https://github.com/pypa/warehouse) - Next generation Python Package Repository (PyPI). ## Permissions @@ -988,8 +988,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *RPC-compatible servers.* -* [zeroRPC](https://github.com/0rpc/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/). * [RPyC](https://github.com/tomerfiliba/rpyc) (Remote Python Call) - A transparent and symmetric RPC library for Python +* [zeroRPC](https://github.com/0rpc/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/). ## Science @@ -1005,25 +1005,25 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [NetworkX](https://networkx.github.io/) - A high-productivity software for complex networks. * [NIPY](http://nipy.org) - A collection of neuroimaging toolkits. * [NumPy](http://www.numpy.org/) - A fundamental package for scientific computing with Python. -* [Open Babel](http://openbabel.org/wiki/Main_Page) - A chemical toolbox designed to speak the many languages of chemical data. * [ObsPy](https://github.com/obspy/obspy/wiki/) - A Python toolbox for seismology. +* [Open Babel](http://openbabel.org/wiki/Main_Page) - A chemical toolbox designed to speak the many languages of chemical data. * [PyDy](http://www.pydy.org/) - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion. * [PyMC](https://github.com/pymc-devs/pymc3) - Markov Chain Monte Carlo sampling toolkit. * [QuTiP](http://qutip.org/) - Quantum Toolbox in Python. * [RDKit](http://www.rdkit.org/) - Cheminformatics and Machine Learning Software. * [SciPy](https://www.scipy.org/) - A Python-based ecosystem of open-source software for mathematics, science, and engineering. +* [SimPy](https://bitbucket.org/simpy/simpy) - A process-based discrete-event simulation framework. * [statsmodels](https://github.com/statsmodels/statsmodels) - Statistical modeling and econometrics in Python. * [SymPy](https://github.com/sympy/sympy) - A Python library for symbolic mathematics. * [Zipline](https://github.com/quantopian/zipline) - A Pythonic algorithmic trading library. -* [SimPy](https://bitbucket.org/simpy/simpy) - A process-based discrete-event simulation framework. ## Search *Libraries and software for indexing and performing search queries on data.* -* [elasticsearch-py](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html) - The official low-level Python client for [Elasticsearch](https://www.elastic.co/products/elasticsearch). -* [elasticsearch-dsl-py](https://github.com/elastic/elasticsearch-dsl-py) - The official high-level Python client for Elasticsearch. * [django-haystack](https://github.com/django-haystack/django-haystack) - Modular search for Django. +* [elasticsearch-dsl-py](https://github.com/elastic/elasticsearch-dsl-py) - The official high-level Python client for Elasticsearch. +* [elasticsearch-py](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html) - The official low-level Python client for [Elasticsearch](https://www.elastic.co/products/elasticsearch). * [pysolr](https://github.com/django-haystack/pysolr) - A lightweight Python wrapper for [Apache Solr](https://lucene.apache.org/solr/). * [whoosh](http://whoosh.readthedocs.io/en/latest/) - A fast, pure Python search engine library. @@ -1050,6 +1050,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * General * [tablib](https://github.com/jazzband/tablib) - A module for Tabular Datasets in XLS, CSV, JSON, YAML. * Office + * [docxtpl](https://github.com/elapouya/python-docx-template) - Editing a docx document by jinja2 template * [openpyxl](https://openpyxl.readthedocs.io/en/stable/) - A library for reading and writing Excel 2010 xlsx/xlsm/xltx/xltm files. * [pyexcel](https://github.com/pyexcel/pyexcel) - Providing one API for reading, manipulating and writing csv, ods, xls, xlsx and xlsm files. * [python-docx](https://github.com/python-openxml/python-docx) - Reads, queries and modifies Microsoft Word 2007/2008 docx files. @@ -1058,7 +1059,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [XlsxWriter](https://github.com/jmcnamara/XlsxWriter) - A Python module for creating Excel .xlsx files. * [xlwings](https://github.com/ZoomerAnalytics/xlwings) - A BSD-licensed library that makes it easy to call Python from Excel and vice versa. * [xlwt](https://github.com/python-excel/xlwt) / [xlrd](https://github.com/python-excel/xlrd) - Writing and reading data and formatting information from Excel files. - * [docxtpl](https://github.com/elapouya/python-docx-template) - Editing a docx document by jinja2 template * PDF * [PDFMiner](https://github.com/euske/pdfminer) - A tool for extracting information from PDF documents. * [PyPDF2](https://github.com/mstamy2/PyPDF2) - A library capable of splitting, merging and transforming PDF pages. @@ -1077,10 +1077,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Static site generator is a software that takes some text + templates as input and produces HTML files on the output.* -* [mkdocs](https://github.com/mkdocs/mkdocs/) - Markdown friendly documentation generator. -* [pelican](https://github.com/getpelican/pelican) - Static site generator that supports Markdown and reST syntax. * [lektor](https://github.com/lektor/lektor) - An easy to use static CMS and blog engine. +* [mkdocs](https://github.com/mkdocs/mkdocs/) - Markdown friendly documentation generator. * [nikola](https://github.com/getnikola/nikola) - A static website and blog generator. +* [pelican](https://github.com/getpelican/pelican) - Static site generator that supports Markdown and reST syntax. ## Tagging @@ -1101,8 +1101,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries and tools for templating and lexing.* -* [Jinja2](https://github.com/pallets/jinja) - A modern and designer friendly templating language. * [Genshi](https://genshi.edgewall.org/) - Python templating toolkit for generation of web-aware output. +* [Jinja2](https://github.com/pallets/jinja) - A modern and designer friendly templating language. * [Mako](http://www.makotemplates.org/) - Hyperfast and lightweight templating for the Python platform. ## Testing @@ -1110,9 +1110,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for testing codebases and generating test data.* * Testing Frameworks - * [pytest](https://docs.pytest.org/en/latest/) - A mature full-featured Python testing tool. * [hypothesis](https://github.com/HypothesisWorks/hypothesis) - Hypothesis is an advanced Quickcheck style property based testing library. * [nose2](https://github.com/nose-devs/nose2) - The successor to `nose`, based on `unittest2. + * [pytest](https://docs.pytest.org/en/latest/) - A mature full-featured Python testing tool. * [Robot Framework](https://github.com/robotframework/robotframework) - A generic test automation framework. * [unittest](https://docs.python.org/3/library/unittest.html) - (Python standard library) Unit testing framework. * Test Runners @@ -1127,11 +1127,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [sixpack](https://github.com/seatgeek/sixpack) - A language-agnostic A/B Testing framework. * [splinter](https://github.com/cobrateam/splinter) - Open source tool for testing web applications. * Mock - * [mock](https://docs.python.org/3/library/unittest.mock.html) - (Python standard library) A mocking and patching library. * [doublex](https://pypi.org/project/doublex/) - Powerful test doubles framework for Python. * [freezegun](https://github.com/spulec/freezegun) - Travel through time by mocking the datetime module. * [httmock](https://github.com/patrys/httmock) - A mocking library for requests for Python 2.6+ and 3.2+. * [httpretty](https://github.com/gabrielfalcao/HTTPretty) - HTTP request mock tool for Python. + * [mock](https://docs.python.org/3/library/unittest.mock.html) - (Python standard library) A mocking and patching library. * [mocket](https://github.com/mindflayer/python-mocket) - A socket mock framework with gevent/asyncio/SSL support. * [responses](https://github.com/getsentry/responses) - A utility library for mocking out the requests Python library. * [VCR.py](https://github.com/kevin1024/vcrpy) - Record and replay HTTP interactions on your tests. @@ -1142,9 +1142,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Code Coverage * [coverage](https://pypi.org/project/coverage/) - Code coverage measurement. * Fake Data - * [mimesis](https://github.com/lk-geimfari/mimesis) - is a Python library that help you generate fake data. * [fake2db](https://github.com/emirozer/fake2db) - Fake database generator. * [faker](https://github.com/joke2k/faker) - A Python package that generates fake data. + * [mimesis](https://github.com/lk-geimfari/mimesis) - is a Python library that help you generate fake data. * [radar](https://pypi.org/project/radar/) - Generate random datetime / time. ## Text Processing @@ -1203,9 +1203,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for manipulating video and GIFs.* -* [vidgear](https://github.com/abhiTronix/vidgear) - Most Powerful multi-threaded Video Processing framework. * [moviepy](https://zulko.github.io/moviepy/) - A module for script-based movie editing with many formats, including animated GIFs. * [scikit-video](https://github.com/aizvorski/scikit-video) - Video processing routines for SciPy. +* [vidgear](https://github.com/abhiTronix/vidgear) - Most Powerful multi-threaded Video Processing framework. ## Web Asset Management @@ -1241,10 +1241,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [feedparser](https://pythonhosted.org/feedparser/) - Universal feed parser. * [grab](https://github.com/lorien/grab) - Site scraping framework. * [MechanicalSoup](https://github.com/MechanicalSoup/MechanicalSoup) - A Python library for automating interaction with websites. +* [portia](https://github.com/scrapinghub/portia) - Visual scraping for Scrapy. * [pyspider](https://github.com/binux/pyspider) - A powerful spider system. * [robobrowser](https://github.com/jmcarp/robobrowser) - A simple, Pythonic library for browsing the web without a standalone web browser. * [scrapy](https://scrapy.org/) - A fast high-level screen scraping and web crawling framework. -* [portia](https://github.com/scrapinghub/portia) - Visual scraping for Scrapy. ## Web Frameworks @@ -1252,8 +1252,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Synchronous * [Django](https://www.djangoproject.com/) - The most popular web framework in Python. - * [awesome-django](https://github.com/wsvincent/awesome-django) * [awesome-django](https://github.com/shahraizali/awesome-django) + * [awesome-django](https://github.com/wsvincent/awesome-django) * [Flask](http://flask.pocoo.org/) - A microframework for Python. * [awesome-flask](https://github.com/humiaozuzu/awesome-flask) * [Pyramid](https://pylonsproject.org/) - A small, fast, down-to-earth, open source Python web framework. @@ -1305,8 +1305,8 @@ Where to discover learning resources or new Python libraries. * [Awesome Python Newsletter](http://python.libhunt.com/newsletter) * [Pycoder's Weekly](http://pycoders.com/) -* [Python Weekly](http://www.pythonweekly.com/) * [Python Tricks](https://realpython.com/python-tricks/) +* [Python Weekly](http://www.pythonweekly.com/) ## Podcasts @@ -1327,3 +1327,4 @@ I will keep some pull requests open if I'm not sure whether those libraries are - - - If you have any question about this opinionated list, do not hesitate to contact me [@VintaChen](https://twitter.com/VintaChen) on Twitter or open an issue on GitHub. + diff --git a/sort.py b/sort.py old mode 100644 new mode 100755 index 427855666..431bd02b4 --- a/sort.py +++ b/sort.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python # coding: utf-8 """ From 689822a3e51c6ee734027bfe382d11e70b05f28f Mon Sep 17 00:00:00 2001 From: Jonathan Hoffstadt <39973752+RaylockLLC@users.noreply.github.com> Date: Mon, 10 Aug 2020 15:29:18 -0500 Subject: [PATCH 073/154] Added DearPyGui --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 303969181..f998132e4 100644 --- a/README.md +++ b/README.md @@ -662,6 +662,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Toga](https://github.com/pybee/toga) - A Python native, OS native GUI toolkit. * [urwid](http://urwid.org/) - A library for creating terminal GUI applications with strong support for widgets, events, rich colors, etc. * [wxPython](https://wxpython.org/) - A blending of the wxWidgets C++ class library with the Python. +* [wxPython](https://github.com/RaylockLLC/DearPyGui/) - A Simple GPU accelerated Python GUI framework ## GraphQL From 26cffb202e37cd65aa088715b9981fbd848fea16 Mon Sep 17 00:00:00 2001 From: karmijo Date: Mon, 10 Aug 2020 17:58:37 -0700 Subject: [PATCH 074/154] Add prefect entry --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 303969181..eeee636a4 100644 --- a/README.md +++ b/README.md @@ -799,6 +799,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [gunnery](https://github.com/gunnery/gunnery) - Multipurpose task execution tool for distributed systems with web-based interface. * [Joblib](https://joblib.readthedocs.io/) - A set of tools to provide lightweight pipelining in Python. * [Plan](https://github.com/fengsp/plan) - Writing crontab file in Python like a charm. +* [Prefect](https://github.com/PrefectHQ/prefect) - A modern workflow orchestration framework that makes it easy to build, schedule and monitor robust data pipelines. * [schedule](https://github.com/dbader/schedule) - Python job scheduling for humans. * [Spiff](https://github.com/knipknap/SpiffWorkflow) - A powerful workflow engine implemented in pure Python. * [TaskFlow](https://docs.openstack.org/developer/taskflow/) - A Python library that helps to make task execution easy, consistent and reliable. From 28dc2384361ff0107e7b04026b65c9e5012cff8a Mon Sep 17 00:00:00 2001 From: Jonathan Hoffstadt <39973752+RaylockLLC@users.noreply.github.com> Date: Tue, 11 Aug 2020 12:41:22 -0500 Subject: [PATCH 075/154] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f998132e4..364ee33e9 100644 --- a/README.md +++ b/README.md @@ -662,7 +662,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Toga](https://github.com/pybee/toga) - A Python native, OS native GUI toolkit. * [urwid](http://urwid.org/) - A library for creating terminal GUI applications with strong support for widgets, events, rich colors, etc. * [wxPython](https://wxpython.org/) - A blending of the wxWidgets C++ class library with the Python. -* [wxPython](https://github.com/RaylockLLC/DearPyGui/) - A Simple GPU accelerated Python GUI framework +* [DearPyGui](https://github.com/RaylockLLC/DearPyGui/) - A Simple GPU accelerated Python GUI framework ## GraphQL From 071648e44a7e1300398d13aff160e794fd03db94 Mon Sep 17 00:00:00 2001 From: Mori Atsushi Date: Sun, 16 Aug 2020 00:54:36 +0900 Subject: [PATCH 076/154] Add isort --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 303969181..0be2ff0b0 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Code Linters * [flake8](https://pypi.org/project/flake8/) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. * [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) + * [isort](https://github.com/timothycrosley/isort) - A Python utility / library to sort imports. * [pylama](https://github.com/klen/pylama) - A code audit tool for Python and JavaScript. * [pylint](https://www.pylint.org/) - A fully customizable source code analyzer. * [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) - The strictest and most opinionated python linter ever. From ae67b887267ab93c8e311a980e358b1cd9e3ed22 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 19 Aug 2020 15:33:42 +0800 Subject: [PATCH 077/154] move isort to Code Formatters --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0be2ff0b0..896fdaa54 100644 --- a/README.md +++ b/README.md @@ -244,12 +244,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Code Linters * [flake8](https://pypi.org/project/flake8/) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. * [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) - * [isort](https://github.com/timothycrosley/isort) - A Python utility / library to sort imports. * [pylama](https://github.com/klen/pylama) - A code audit tool for Python and JavaScript. * [pylint](https://www.pylint.org/) - A fully customizable source code analyzer. * [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) - The strictest and most opinionated python linter ever. * Code Formatters * [black](https://github.com/python/black) - The uncompromising Python code formatter. + * [isort](https://github.com/timothycrosley/isort) - A Python utility / library to sort imports. * [yapf](https://github.com/google/yapf) - Yet another Python code formatter from Google. * Static Type Checkers, also see [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing) * [mypy](http://mypy-lang.org/) - Check variable types during compile time. From 1478ab6fce2797b6ea3d423f2a248955a9589ed5 Mon Sep 17 00:00:00 2001 From: Iheb Haboubi Date: Wed, 19 Aug 2020 22:11:56 +0100 Subject: [PATCH 078/154] Add pywal --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 896fdaa54..dd65b658d 100644 --- a/README.md +++ b/README.md @@ -749,6 +749,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pygram](https://github.com/ajkumar25/pygram) - Instagram-like image filters. * [PyMatting](http://github.com/pymatting/pymatting) - A library for alpha matting. * [python-qrcode](https://github.com/lincolnloop/python-qrcode) - A pure Python QR Code generator. +* [pywal](https://github.com/dylanaraps/pywal) - A tool that generates color schemes from images. * [pyvips](https://github.com/libvips/pyvips) - A fast image processing library with low memory needs. * [Quads](https://github.com/fogleman/Quads) - Computer art based on quadtrees. * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. From 81008793cefd02d37617c711eea18bc3b793b748 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 20 Aug 2020 15:24:28 +0800 Subject: [PATCH 079/154] add daramatiq Fixes #1583 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c9f787329..aa9358da0 100644 --- a/README.md +++ b/README.md @@ -1096,6 +1096,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with task queues.* * [celery](http://www.celeryproject.org/) - An asynchronous task queue/job queue based on distributed message passing. +* [daramatiq](https://github.com/Bogdanp/dramatiq) - A fast and reliable background task processing library for Python 3. * [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. * [mrq](https://github.com/pricingassistant/mrq) - A distributed worker task queue in Python using Redis & gevent. * [rq](https://github.com/rq/rq) - Simple job queues for Python. From 2e7560e1de9dc2c7ff5ad1b99c753965811e2ca2 Mon Sep 17 00:00:00 2001 From: Iheb Haboubi Date: Thu, 20 Aug 2020 11:02:15 +0100 Subject: [PATCH 080/154] Add fsociety --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index aa9358da0..178dfdaef 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [ORM](#orm) - [Package Management](#package-management) - [Package Repositories](#package-repositories) + - [Penetration testing](#penetration-testing) - [Permissions](#permissions) - [Processes](#processes) - [Recommender Systems](#recommender-systems) @@ -922,6 +923,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [localshop](https://github.com/jazzband/localshop) - Local PyPI server (custom packages and auto-mirroring of pypi). * [warehouse](https://github.com/pypa/warehouse) - Next generation Python Package Repository (PyPI). +## Penetration Testing + +*Frameworks and tools for penetration testing.* + +* [fsociety](https://github.com/Manisso/fsociety) - A Penetration testing framework. + ## Permissions *Libraries that allow or deny users access to data or functionality.* From 4867199127de263a7052b76aaed41d201bf33e4b Mon Sep 17 00:00:00 2001 From: Iheb Haboubi Date: Fri, 21 Aug 2020 09:51:25 +0100 Subject: [PATCH 081/154] Add sqlmap --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 178dfdaef..6bf35b38f 100644 --- a/README.md +++ b/README.md @@ -928,6 +928,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Frameworks and tools for penetration testing.* * [fsociety](https://github.com/Manisso/fsociety) - A Penetration testing framework. +* [sqlmap](https://github.com/sqlmapproject/sqlmap) - Automatic SQL injection and database takeover tool. ## Permissions From 2984ca0dcc449b3c9d1d38c093832b4e781d4f2a Mon Sep 17 00:00:00 2001 From: Iheb Haboubi Date: Fri, 21 Aug 2020 09:59:42 +0100 Subject: [PATCH 082/154] Add social-engineer-toolkit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 178dfdaef..5ee39b649 100644 --- a/README.md +++ b/README.md @@ -928,6 +928,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Frameworks and tools for penetration testing.* * [fsociety](https://github.com/Manisso/fsociety) - A Penetration testing framework. +* [setoolkit](https://github.com/trustedsec/social-engineer-toolkit) - A toolkit for social engineering. ## Permissions From 27ba8158a81b8939a4f4a1a12b9d0b18cb198a87 Mon Sep 17 00:00:00 2001 From: Samuel Huang Date: Sat, 22 Aug 2020 18:15:50 -0700 Subject: [PATCH 083/154] Add ultimate-python as tutorial resource --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6d0c8cd23..becb5bcff 100644 --- a/README.md +++ b/README.md @@ -1308,6 +1308,7 @@ Where to discover learning resources or new Python libraries. * [Python Cheatsheet](https://www.pythoncheatsheet.org/) * [Real Python](https://realpython.com) * [The Hitchhiker’s Guide to Python](https://docs.python-guide.org/) + * [Ultimate Python study guide](https://github.com/huangsam/ultimate-python) * Libraries * [Awesome Python @LibHunt](https://python.libhunt.com/) * Others From 4084e1c1d7165deb16d35794a84fad82e515a1e8 Mon Sep 17 00:00:00 2001 From: Ashok Bakthavathsalam Date: Sun, 23 Aug 2020 16:24:54 +0530 Subject: [PATCH 084/154] Update README.md added makesite to static site generators --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6d0c8cd23..c93f2c393 100644 --- a/README.md +++ b/README.md @@ -1091,6 +1091,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [lektor](https://github.com/lektor/lektor) - An easy to use static CMS and blog engine. * [mkdocs](https://github.com/mkdocs/mkdocs/) - Markdown friendly documentation generator. +* [makesite](https://github.com/sunainapai/makesite) - Simple, lightweight, and magic-free static site/blog generator (< 130 lines). * [nikola](https://github.com/getnikola/nikola) - A static website and blog generator. * [pelican](https://github.com/getpelican/pelican) - Static site generator that supports Markdown and reST syntax. From 838d1d333585c36fc79a99324f07937c336fbc39 Mon Sep 17 00:00:00 2001 From: Prince Sumberia Date: Wed, 26 Aug 2020 23:07:26 +0530 Subject: [PATCH 085/154] Update SimPy Link The previous link was returning 404. Updated with current working URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c93f2c393..fe6c218ec 100644 --- a/README.md +++ b/README.md @@ -1024,7 +1024,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [QuTiP](http://qutip.org/) - Quantum Toolbox in Python. * [RDKit](http://www.rdkit.org/) - Cheminformatics and Machine Learning Software. * [SciPy](https://www.scipy.org/) - A Python-based ecosystem of open-source software for mathematics, science, and engineering. -* [SimPy](https://bitbucket.org/simpy/simpy) - A process-based discrete-event simulation framework. +* [SimPy](https://gitlab.com/team-simpy/simpy) - A process-based discrete-event simulation framework. * [statsmodels](https://github.com/statsmodels/statsmodels) - Statistical modeling and econometrics in Python. * [SymPy](https://github.com/sympy/sympy) - A Python library for symbolic mathematics. * [Zipline](https://github.com/quantopian/zipline) - A Pythonic algorithmic trading library. From 1299a7bea1b43f5a3764c21372874e671807859b Mon Sep 17 00:00:00 2001 From: Hugo Barrera Date: Mon, 31 Aug 2020 18:16:03 +0000 Subject: [PATCH 086/154] Replace pybarcode with python-barcode pybarcode has been dead for many years, and python-barcode is a drop-in replacement/fork of it which is actively maintained. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe6c218ec..ac427cde3 100644 --- a/README.md +++ b/README.md @@ -747,7 +747,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [nude.py](https://github.com/hhatto/nude.py) - Nudity detection. * [pagan](https://github.com/daboth/pagan) - Retro identicon (Avatar) generation based on input string and hash. * [pillow](https://github.com/python-pillow/Pillow) - Pillow is the friendly [PIL](http://www.pythonware.com/products/pil/) fork. -* [pyBarcode](https://pythonhosted.org/pyBarcode/) - Create barcodes in Python without needing PIL. +* [python-barcode](https://github.com/WhyNotHugo/python-barcode) - Create barcodes in Python with no extra dependencies. * [pygram](https://github.com/ajkumar25/pygram) - Instagram-like image filters. * [PyMatting](http://github.com/pymatting/pymatting) - A library for alpha matting. * [python-qrcode](https://github.com/lincolnloop/python-qrcode) - A pure Python QR Code generator. From d258e6f75b43dcecbd7a1db1e9a0cfa6c1a626f4 Mon Sep 17 00:00:00 2001 From: Iheb Haboubi Date: Wed, 2 Sep 2020 19:26:59 +0100 Subject: [PATCH 087/154] Add face_recognition --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ac427cde3..b2387707f 100644 --- a/README.md +++ b/README.md @@ -314,6 +314,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for Computer Vision.* * [EasyOCR](https://github.com/JaidedAI/EasyOCR) - Ready-to-use OCR with 40+ languages supported. +* [Face Recognition](https://github.com/ageitgey/face_recognition) - Simple facial recognition library. * [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. * [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. * [pytesseract](https://github.com/madmaze/pytesseract) - A wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). From 4b18e9ce4ca34414a3a97eff52de8a788e5e4af1 Mon Sep 17 00:00:00 2001 From: Zoran Pandovski Date: Thu, 3 Sep 2020 14:13:45 +0200 Subject: [PATCH 088/154] Add MindsDB to the ML Include MindsDB to the ML section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b2387707f..387a3fbe4 100644 --- a/README.md +++ b/README.md @@ -829,6 +829,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Spark ML](http://spark.apache.org/docs/latest/ml-guide.html) - [Apache Spark](http://spark.apache.org/)'s scalable Machine Learning library. * [vowpal_porpoise](https://github.com/josephreisinger/vowpal_porpoise) - A lightweight Python wrapper for [Vowpal Wabbit](https://github.com/JohnLangford/vowpal_wabbit/). * [xgboost](https://github.com/dmlc/xgboost) - A scalable, portable, and distributed gradient boosting library. +* [MindsDB](https://github.com/mindsdb/mindsdb) - MindsDB is an open source AI layer for existing databases that allows you to effortlessly develop, train and deploy state-of-the-art machine learning models using standard queries. ## Microsoft Windows From 91249fa426b323d5b29881143bc000ef75a33d47 Mon Sep 17 00:00:00 2001 From: Iheb Haboubi Date: Thu, 3 Sep 2020 16:21:08 +0100 Subject: [PATCH 089/154] Add magenta --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b2387707f..c5cac1924 100644 --- a/README.md +++ b/README.md @@ -847,6 +847,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [blinker](https://github.com/jek/blinker) - A fast Python in-process signal/event dispatching system. * [boltons](https://github.com/mahmoud/boltons) - A set of pure-Python utilities. * [itsdangerous](https://github.com/pallets/itsdangerous) - Various helpers to pass trusted data to untrusted environments. +* [magenta](https://github.com/magenta/magenta) - A tool to generate music and art using artificial intelligence. * [pluginbase](https://github.com/mitsuhiko/pluginbase) - A simple but flexible plugin system for Python. * [tryton](http://www.tryton.org/) - A general purpose business framework. From c5d496134735867b8cf061133c5d950fe4eee441 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 8 Sep 2020 16:23:28 +0800 Subject: [PATCH 090/154] add awesome-algorithms --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3095af3f..6bdf0928b 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). ## Algorithms and Design Patterns -*Python implementation of data structures, algorithms and design patterns.* +*Python implementation of data structures, algorithms and design patterns. Also see [awesome-algorithms](https://github.com/tayllan/awesome-algorithms).* * Algorithms * [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms. From 609a95ff98287faf2b7d61864695a88f8954e7d9 Mon Sep 17 00:00:00 2001 From: Ali Reza Yahyapour Date: Thu, 24 Sep 2020 00:31:06 +0330 Subject: [PATCH 091/154] graphene added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 51b9d9049..baabcb127 100644 --- a/README.md +++ b/README.md @@ -673,6 +673,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with GraphQL.* +* [graphene](https://github.com/graphql-python/graphene/) - GraphQL framework for Python. * [tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp/) - An `aiohttp`-based wrapper for Tartiflette to expose GraphQL APIs over HTTP. * [tartiflette-asgi](https://github.com/tartiflette/tartiflette-asgi/) - ASGI support for the Tartiflette GraphQL engine. * [tartiflette](https://tartiflette.io) - SDL-first GraphQL engine implementation for Python 3.6+ and asyncio. From ad9520f8a13d9eb56e39e041bfbf38c71c11aee9 Mon Sep 17 00:00:00 2001 From: Ali Reza Yahyapour Date: Thu, 24 Sep 2020 00:37:12 +0330 Subject: [PATCH 092/154] nplusone added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index baabcb127..d0c3d2788 100644 --- a/README.md +++ b/README.md @@ -900,6 +900,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [SQLAlchemy](https://www.sqlalchemy.org/) - The Python SQL Toolkit and Object Relational Mapper. * [awesome-sqlalchemy](https://github.com/dahlia/awesome-sqlalchemy) * [dataset](https://github.com/pudo/dataset) - Store Python dicts in a database - works with SQLite, MySQL, and PostgreSQL. + * [nplusone](https://github.com/jmcarp/nplusone) - Auto-detecting the n+1 queries problem in Python. * [orator](https://github.com/sdispater/orator) - The Orator ORM provides a simple yet beautiful ActiveRecord implementation. * [orm](https://github.com/encode/orm) - An async ORM. * [peewee](https://github.com/coleifer/peewee) - A small, expressive ORM. From 475511fceda6f8185b720800dc45a81999012d84 Mon Sep 17 00:00:00 2001 From: Ali Reza Yahyapour Date: Thu, 24 Sep 2020 11:18:34 +0330 Subject: [PATCH 093/154] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index d0c3d2788..baabcb127 100644 --- a/README.md +++ b/README.md @@ -900,7 +900,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [SQLAlchemy](https://www.sqlalchemy.org/) - The Python SQL Toolkit and Object Relational Mapper. * [awesome-sqlalchemy](https://github.com/dahlia/awesome-sqlalchemy) * [dataset](https://github.com/pudo/dataset) - Store Python dicts in a database - works with SQLite, MySQL, and PostgreSQL. - * [nplusone](https://github.com/jmcarp/nplusone) - Auto-detecting the n+1 queries problem in Python. * [orator](https://github.com/sdispater/orator) - The Orator ORM provides a simple yet beautiful ActiveRecord implementation. * [orm](https://github.com/encode/orm) - An async ORM. * [peewee](https://github.com/coleifer/peewee) - A small, expressive ORM. From 6b4ee06b419c0348f92eba6b68715a5ee3082fe6 Mon Sep 17 00:00:00 2001 From: anki-code Date: Thu, 24 Sep 2020 14:31:33 +0300 Subject: [PATCH 094/154] xonsh is a Python-powered, cross-platform, Unix-gazing shell language and command prompt. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index baabcb127..d49717f32 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Search](#search) - [Serialization](#serialization) - [Serverless Frameworks](#serverless-frameworks) + - [Shell](#shell) - [Specific Formats Processing](#specific-formats-processing) - [Static Site Generator](#static-site-generator) - [Tagging](#tagging) @@ -1062,6 +1063,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [python-lambda](https://github.com/nficano/python-lambda) - A toolkit for developing and deploying Python code in AWS Lambda. * [Zappa](https://github.com/Miserlou/Zappa) - A tool for deploying WSGI applications on AWS Lambda and API Gateway. +## Shell + +*Shells based on Python.* + +* [xonsh](https://github.com/xonsh/xonsh/) - A Python-powered, cross-platform, Unix-gazing shell language and command prompt. + ## Specific Formats Processing *Libraries for parsing and manipulating specific text formats.* From d4e4065650c6fea0f699a013a1720723571e17dc Mon Sep 17 00:00:00 2001 From: Satwik Kansal Date: Fri, 25 Sep 2020 10:50:43 +0530 Subject: [PATCH 095/154] Add wtfpython to Resources section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index baabcb127..cd611652a 100644 --- a/README.md +++ b/README.md @@ -1322,6 +1322,7 @@ Where to discover learning resources or new Python libraries. * Others * [Python ZEEF](https://python.zeef.com/alan.richmond) * [Pythonic News](https://news.python.sc/) + * [What the f*ck Python!](https://github.com/satwikkansal/wtfpython) ## Newsletters From a4e0303492bd34f5a62b949e7435c2826146d371 Mon Sep 17 00:00:00 2001 From: Wes Turner <50891+westurner@users.noreply.github.com> Date: Fri, 25 Sep 2020 20:46:14 -0400 Subject: [PATCH 096/154] Static Type Annotations Generators > pytype, pyannotate --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index baabcb127..468a86ad8 100644 --- a/README.md +++ b/README.md @@ -258,6 +258,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. * Static Type Annotations Generators * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types + * [pytype](https://github.com/google/pytype) - Pytype checks and infers types for your Python code - without requiring type annotations + * [pyannotate](https://github.com/dropbox/pyannotate) - Insert annotations into your source code based on call arguments and return types observed at runtime ## Command-line Interface Development From 4d8da18b0d372491f9e87ba3808a03d0c3f2dbf1 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sat, 26 Sep 2020 15:43:10 +0800 Subject: [PATCH 097/154] clean --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 468a86ad8..5d44faaaa 100644 --- a/README.md +++ b/README.md @@ -257,9 +257,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. * Static Type Annotations Generators - * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types - * [pytype](https://github.com/google/pytype) - Pytype checks and infers types for your Python code - without requiring type annotations - * [pyannotate](https://github.com/dropbox/pyannotate) - Insert annotations into your source code based on call arguments and return types observed at runtime + * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types. + * [pyannotate](https://github.com/dropbox/pyannotate) - Auto-generate PEP-484 annotations. + * [pytype](https://github.com/google/pytype) - Pytype checks and infers types for Python code - without requiring type annotations. ## Command-line Interface Development @@ -295,7 +295,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [thefuck](https://github.com/nvbn/thefuck) - Correcting your previous console command. * [tmuxp](https://github.com/tony/tmuxp) - A [tmux](https://github.com/tmux/tmux) session manager. * [try](https://github.com/timofurrer/try) - A dead simple CLI to try out python packages - it's never been easier. - * CLI Enhancements * [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement. * [iredis](https://github.com/laixintao/iredis) - Redis CLI with autocompletion and syntax highlighting. From 2651ea0fc77f30fb32048bc0a408593d17239177 Mon Sep 17 00:00:00 2001 From: Iheb Haboubi Date: Sat, 3 Oct 2020 11:53:05 +0100 Subject: [PATCH 098/154] Add gym --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5d44faaaa..6885ec6ab 100644 --- a/README.md +++ b/README.md @@ -827,6 +827,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for Machine Learning. Also see [awesome-machine-learning](https://github.com/josephmisiti/awesome-machine-learning#python).* +* [gym](https://github.com/openai/gym) - A toolkit for developing and comparing reinforcement learning algorithms. * [H2O](https://github.com/h2oai/h2o-3) - Open Source Fast Scalable Machine Learning Platform. * [Metrics](https://github.com/benhamner/Metrics) - Machine learning evaluation metrics. * [NuPIC](https://github.com/numenta/nupic) - Numenta Platform for Intelligent Computing. From f8100c48ed4908da85b24405b3ccc5a098336649 Mon Sep 17 00:00:00 2001 From: Peter Thaleikis Date: Fri, 16 Oct 2020 12:11:13 +0400 Subject: [PATCH 099/154] Fixing celery link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24bae53a3..e974e8588 100644 --- a/README.md +++ b/README.md @@ -1114,7 +1114,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with task queues.* -* [celery](http://www.celeryproject.org/) - An asynchronous task queue/job queue based on distributed message passing. +* [celery](https://github.com/celery/celery) - An asynchronous task queue/job queue based on distributed message passing. * [daramatiq](https://github.com/Bogdanp/dramatiq) - A fast and reliable background task processing library for Python 3. * [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. * [mrq](https://github.com/pricingassistant/mrq) - A distributed worker task queue in Python using Redis & gevent. From 07b7f643a0e13428c83361fff2165fff831e82e5 Mon Sep 17 00:00:00 2001 From: Peter Thaleikis Date: Sat, 17 Oct 2020 11:40:45 +0400 Subject: [PATCH 100/154] Update link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e974e8588..16ae932c7 100644 --- a/README.md +++ b/README.md @@ -1114,7 +1114,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with task queues.* -* [celery](https://github.com/celery/celery) - An asynchronous task queue/job queue based on distributed message passing. +* [celery](https://docs.celeryproject.org/en/stable/) - An asynchronous task queue/job queue based on distributed message passing. * [daramatiq](https://github.com/Bogdanp/dramatiq) - A fast and reliable background task processing library for Python 3. * [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. * [mrq](https://github.com/pricingassistant/mrq) - A distributed worker task queue in Python using Redis & gevent. From 1595f4134206cfc95866085c1202eae943783fed Mon Sep 17 00:00:00 2001 From: Tom V Date: Tue, 20 Oct 2020 21:48:51 +0100 Subject: [PATCH 101/154] modernize is renamed and re-homed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16ae932c7..dc03f5492 100644 --- a/README.md +++ b/README.md @@ -309,7 +309,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for migrating from Python 2 to 3.* * [python-future](http://python-future.org/index.html) - The missing compatibility layer between Python 2 and Python 3. -* [python-modernize](https://github.com/mitsuhiko/python-modernize) - Modernizes Python code for eventual Python 3 migration. +* [modernize](https://github.com/PyCQA/modernize) - Modernizes Python code for eventual Python 3 migration. * [six](https://pypi.org/project/six/) - Python 2 and 3 compatibility utilities. ## Computer Vision From 1a4006d13d3f19685b73ff09e21e57c5c5c6bde7 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sat, 31 Oct 2020 04:48:39 +0800 Subject: [PATCH 102/154] Create FUNDING.yml --- .github/FUNDING.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..96ceebadb --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,13 @@ +# These are supported funding model platforms + +github: vinta +open_collective: awesome-python + +patreon: # Replace with a single Patreon username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From 279487124faf90b326af10ea0d5269acc89be053 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sat, 31 Oct 2020 04:50:00 +0800 Subject: [PATCH 103/154] cleanup --- .github/FUNDING.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 96ceebadb..7b835f591 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,13 +1,2 @@ # These are supported funding model platforms - -github: vinta open_collective: awesome-python - -patreon: # Replace with a single Patreon username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From 08e15d02efd39f5bb906a0c7899c8a4aaf41e4c3 Mon Sep 17 00:00:00 2001 From: Peter Thaleikis Date: Tue, 3 Nov 2020 11:48:58 +0400 Subject: [PATCH 104/154] Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f1394309..055fd1e2a 100644 --- a/README.md +++ b/README.md @@ -647,7 +647,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [fn.py](https://github.com/kachayev/fn.py) - Functional programming in Python: implementation of missing features to enjoy FP. * [funcy](https://github.com/Suor/funcy) - A fancy and practical functional tools. * [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. -* [returns](https://github.com/dry-python/returns) - A set of type-safe monads, tranformers, and composition utilities. +* [returns](https://github.com/dry-python/returns) - A set of type-safe monads, transformers, and composition utilities. * [Toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. ## GUI Development From 2d48b117fa0ec94f871829d0b823bdd2be76707d Mon Sep 17 00:00:00 2001 From: dsuch Date: Fri, 13 Nov 2020 17:40:00 +0100 Subject: [PATCH 105/154] Add Zato to Enterprise Application Integrations. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 055fd1e2a..63535f304 100644 --- a/README.md +++ b/README.md @@ -599,6 +599,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [flanker](https://github.com/mailgun/flanker) - An email address and Mime parsing library. * [mailer](https://github.com/marrow/mailer) - High-performance extensible mail delivery framework. +## Enterprise Application Integrations + +*Platforms and tools for systems integrations in enterprise environments* + +* [Zato](https://zato.io) - ESB, SOA, REST, APIs and Cloud Integrations in Python. + ## Environment Management *Libraries for Python version and virtual environment management.* From e6283079dc5f87720006e62c76a6ed4b59889839 Mon Sep 17 00:00:00 2001 From: Dariusz Suchojad Date: Tue, 17 Nov 2020 12:32:16 +0100 Subject: [PATCH 106/154] Add "Enterprise Application Integrations" to the table of contents. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 63535f304..fac859837 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [E-commerce](#e-commerce) - [Editor Plugins and IDEs](#editor-plugins-and-ides) - [Email](#email) + - [Enterprise Application Integrations](#enterprise-application-integrations) - [Environment Management](#environment-management) - [Files](#files) - [Foreign Function Interface](#foreign-function-interface) From e0ed13b31c2c793ca6b31a4e012026f51e1bbafa Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 18 Nov 2020 14:45:46 +0800 Subject: [PATCH 107/154] add Think Python Fixes #1670 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fac859837..951f2128a 100644 --- a/README.md +++ b/README.md @@ -1324,6 +1324,7 @@ Where to discover learning resources or new Python libraries. ## Books - [Fluent Python](https://www.oreilly.com/library/view/fluent-python/9781491946237/) +- [Think Python](https://greenteapress.com/wp/think-python-2e/) ## Websites From 4d33c0e4a4590610f9389c25147f6c4601416e5c Mon Sep 17 00:00:00 2001 From: Peter Thaleikis Date: Fri, 4 Dec 2020 18:09:38 +0400 Subject: [PATCH 108/154] Readability --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 951f2128a..c844d5b99 100644 --- a/README.md +++ b/README.md @@ -1174,7 +1174,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [VCR.py](https://github.com/kevin1024/vcrpy) - Record and replay HTTP interactions on your tests. * Object Factories * [factory_boy](https://github.com/FactoryBoy/factory_boy) - A test fixtures replacement for Python. - * [mixer](https://github.com/klen/mixer) - Another fixtures replacement. Supported Django, Flask, SQLAlchemy, Peewee and etc. + * [mixer](https://github.com/klen/mixer) - Another fixtures replacement. Supports Django, Flask, SQLAlchemy, Peewee and etc. * [model_mommy](https://github.com/vandersonmota/model_mommy) - Creating random fixtures for testing in Django. * Code Coverage * [coverage](https://pypi.org/project/coverage/) - Code coverage measurement. From c7b046180af4aa4ea44513f83605dcb7a33de2e2 Mon Sep 17 00:00:00 2001 From: Howie Zhao Date: Mon, 14 Dec 2020 16:14:25 +0800 Subject: [PATCH 109/154] refactor: change pdfminer to pdfminer.six --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c844d5b99..9cda88f54 100644 --- a/README.md +++ b/README.md @@ -1095,7 +1095,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [xlwings](https://github.com/ZoomerAnalytics/xlwings) - A BSD-licensed library that makes it easy to call Python from Excel and vice versa. * [xlwt](https://github.com/python-excel/xlwt) / [xlrd](https://github.com/python-excel/xlrd) - Writing and reading data and formatting information from Excel files. * PDF - * [PDFMiner](https://github.com/euske/pdfminer) - A tool for extracting information from PDF documents. + * [pdfminer.six](https://github.com/pdfminer/pdfminer.six) - Pdfminer.six is a community maintained fork of the original PDFMiner. * [PyPDF2](https://github.com/mstamy2/PyPDF2) - A library capable of splitting, merging and transforming PDF pages. * [ReportLab](https://www.reportlab.com/opensource/) - Allowing Rapid creation of rich PDF documents. * Markdown From 069da96862b875a839e6373eb969b3052ca75fd5 Mon Sep 17 00:00:00 2001 From: Sam Petherbridge Date: Fri, 8 Jan 2021 20:27:19 +1000 Subject: [PATCH 110/154] =?UTF-8?q?=F0=9F=97=91=20Remove=20profiling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the profiling repo as it has been archived and no longer maintained. The repo owner is highly recommending people switching to py-spy which provides better performance and usability. Repo: https://github.com/what-studio/profiling --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c844d5b99..02e1de2eb 100644 --- a/README.md +++ b/README.md @@ -459,7 +459,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Profiler * [line_profiler](https://github.com/rkern/line_profiler) - Line-by-line profiling. * [memory_profiler](https://github.com/fabianp/memory_profiler) - Monitor Memory usage of Python code. - * [profiling](https://github.com/what-studio/profiling) - An interactive Python profiler. * [py-spy](https://github.com/benfred/py-spy) - A sampling profiler for Python programs. Written in Rust. * [pyflame](https://github.com/uber/pyflame) - A ptracing profiler For Python. * [vprof](https://github.com/nvdv/vprof) - Visual Python profiler. From d19f5d581c96301b8ef45730d386a625119340c7 Mon Sep 17 00:00:00 2001 From: Sam Petherbridge Date: Fri, 8 Jan 2021 20:38:49 +1000 Subject: [PATCH 111/154] =?UTF-8?q?=F0=9F=97=91=20Remove=20pygeoip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Repo is no longer supported, is archived and read-only. Maintainer is recommending people use the Maxmind's GeoIP2 Python API. Maxmind's GeoIP2 Python API.: https://github.com/maxmind/GeoIP2-python pygeoip: https://github.com/appliedsec/pygeoip --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c844d5b99..ebca8616d 100644 --- a/README.md +++ b/README.md @@ -710,7 +710,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [GeoIP](https://github.com/maxmind/geoip-api-python) - Python API for MaxMind GeoIP Legacy Database. * [geojson](https://github.com/frewsxcv/python-geojson) - Python bindings and utilities for GeoJSON. * [geopy](https://github.com/geopy/geopy) - Python Geocoding Toolbox. -* [pygeoip](https://github.com/appliedsec/pygeoip) - Pure Python GeoIP API. ## HTML Manipulation From 954dca36b3b0f4138c6421134e39ee519a81fdae Mon Sep 17 00:00:00 2001 From: Kemal Diri Date: Sat, 16 Jan 2021 21:36:58 +0100 Subject: [PATCH 112/154] Add clickhouse-driver --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c844d5b99..f3c3347cf 100644 --- a/README.md +++ b/README.md @@ -417,6 +417,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Other Relational Databases * [pymssql](https://pymssql.readthedocs.io/en/latest/) - A simple database interface to Microsoft SQL Server. * [SuperSQLite](https://github.com/plasticityai/supersqlite) - A supercharged SQLite library built on top of [apsw](https://github.com/rogerbinns/apsw). + * [clickhouse-driver](https://github.com/mymarilyn/clickhouse-driver) - Python driver with native interface for ClickHouse. * NoSQL Databases * [cassandra-driver](https://github.com/datastax/python-driver) - The Python Driver for Apache Cassandra. * [happybase](https://github.com/wbolster/happybase) - A developer-friendly library for Apache HBase. From c0ade8ef07fca582b45442764d6d1ae58204c935 Mon Sep 17 00:00:00 2001 From: Brennen Raimer <5969754+norweeg@users.noreply.github.com> Date: Thu, 21 Jan 2021 11:27:07 -0500 Subject: [PATCH 113/154] add SQlite category and sqlite3 driver --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f3c3347cf..08090d260 100644 --- a/README.md +++ b/README.md @@ -414,9 +414,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * PostgreSQL - [awesome-postgres](https://github.com/dhamaniasad/awesome-postgres) * [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for Python. * [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL. +* SQlite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) + * [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compleint with DB-API 2.0 + * [SuperSQLite](https://github.com/plasticityai/supersqlite) - A supercharged SQLite library built on top of [apsw](https://github.com/rogerbinns/apsw). * Other Relational Databases * [pymssql](https://pymssql.readthedocs.io/en/latest/) - A simple database interface to Microsoft SQL Server. - * [SuperSQLite](https://github.com/plasticityai/supersqlite) - A supercharged SQLite library built on top of [apsw](https://github.com/rogerbinns/apsw). * [clickhouse-driver](https://github.com/mymarilyn/clickhouse-driver) - Python driver with native interface for ClickHouse. * NoSQL Databases * [cassandra-driver](https://github.com/datastax/python-driver) - The Python Driver for Apache Cassandra. From 5e52e9e90c0f478c8015e9722890f3f70c459066 Mon Sep 17 00:00:00 2001 From: Brennen Raimer <5969754+norweeg@users.noreply.github.com> Date: Fri, 22 Jan 2021 09:28:10 -0500 Subject: [PATCH 114/154] fixed spelling error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08090d260..f792b4f67 100644 --- a/README.md +++ b/README.md @@ -415,7 +415,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for Python. * [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL. * SQlite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) - * [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compleint with DB-API 2.0 + * [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compliant with DB-API 2.0 * [SuperSQLite](https://github.com/plasticityai/supersqlite) - A supercharged SQLite library built on top of [apsw](https://github.com/rogerbinns/apsw). * Other Relational Databases * [pymssql](https://pymssql.readthedocs.io/en/latest/) - A simple database interface to Microsoft SQL Server. From c64a0103ca2f2f149da0dd996830901f1c2274d0 Mon Sep 17 00:00:00 2001 From: Yusuke Hayashi Date: Mon, 25 Jan 2021 10:56:30 +0900 Subject: [PATCH 115/154] Fix gunicorn description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42bcace78..9be8d0945 100644 --- a/README.md +++ b/README.md @@ -1313,7 +1313,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *WSGI-compatible web servers.* * [bjoern](https://github.com/jonashaag/bjoern) - Asynchronous, very fast and written in C. -* [gunicorn](https://github.com/benoitc/gunicorn) - Pre-forked, partly written in C. +* [gunicorn](https://github.com/benoitc/gunicorn) - Pre-forked, ported from Ruby's Unicorn project. * [uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/) - A project aims at developing a full stack for building hosting services, written in C. * [waitress](https://github.com/Pylons/waitress) - Multi-threaded, powers Pyramid. * [werkzeug](https://github.com/pallets/werkzeug) - A WSGI utility library for Python that powers Flask and can easily be embedded into your own projects. From 39d97c16372bb897a53cb9548d6637a055de0432 Mon Sep 17 00:00:00 2001 From: Ramon Saraiva Date: Wed, 3 Feb 2021 20:18:51 -0300 Subject: [PATCH 116/154] Fix dramatiq spelling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9be8d0945..925dbe3a9 100644 --- a/README.md +++ b/README.md @@ -1130,7 +1130,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with task queues.* * [celery](https://docs.celeryproject.org/en/stable/) - An asynchronous task queue/job queue based on distributed message passing. -* [daramatiq](https://github.com/Bogdanp/dramatiq) - A fast and reliable background task processing library for Python 3. +* [dramatiq](https://github.com/Bogdanp/dramatiq) - A fast and reliable background task processing library for Python 3. * [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. * [mrq](https://github.com/pricingassistant/mrq) - A distributed worker task queue in Python using Redis & gevent. * [rq](https://github.com/rq/rq) - Simple job queues for Python. From 6831740c32b66105122d536be0e463e14a0c6e2a Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 14 May 2021 22:14:46 +0800 Subject: [PATCH 117/154] remove wifi Close #1712 --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 925dbe3a9..0993981a6 100644 --- a/README.md +++ b/README.md @@ -750,7 +750,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Pingo](http://www.pingo.io/) - Pingo provides a uniform API to program devices like the Raspberry Pi, pcDuino, Intel Galileo, etc. * [PyUserInput](https://github.com/SavinaRoja/PyUserInput) - A module for cross-platform control of the mouse and keyboard. * [scapy](https://github.com/secdev/scapy) - A brilliant packet manipulation library. -* [wifi](https://github.com/rockymeza/wifi) - A Python library and command line tool for working with WiFi on Linux. ## Image Processing From 19dcbb025a698625622aefe3b567027d38629ae9 Mon Sep 17 00:00:00 2001 From: Vaishnavi Mudaliar Date: Sun, 25 Jul 2021 12:24:31 +0530 Subject: [PATCH 118/154] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0993981a6..04743aeee 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [django-xadmin](https://github.com/sshwsfc/xadmin) - Drop-in replacement of Django admin comes with lots of goodies. * [flask-admin](https://github.com/flask-admin/flask-admin) - Simple and extensible administrative interface framework for Flask. * [flower](https://github.com/mher/flower) - Real-time monitor and web admin for Celery. -* [jet-bridge](https://github.com/jet-admin/jet-bridge) - Admin panel framework for any application with nice UI (ex Jet Django) +* [jet-bridge](https://github.com/jet-admin/jet-bridge) - Admin panel framework for any application with nice UI (ex Jet Django). * [wooey](https://github.com/wooey/wooey) - A Django app which creates automatic web UIs for Python scripts. ## Algorithms and Design Patterns @@ -154,8 +154,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Audio * [audioread](https://github.com/beetbox/audioread) - Cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding. * [dejavu](https://github.com/worldveil/dejavu) - Audio fingerprinting and recognition. - * [kapre](https://github.com/keunwoochoi/kapre) - Keras Audio Preprocessors - * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis + * [kapre](https://github.com/keunwoochoi/kapre) - Keras Audio Preprocessors. + * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis. * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. * [mingus](http://bspaans.github.io/python-mingus/) - An advanced music theory and notation package with MIDI file and playback support. * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. @@ -383,8 +383,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Altair](https://github.com/altair-viz/altair) - Declarative statistical visualization library for Python. * [Bokeh](https://github.com/bokeh/bokeh) - Interactive Web Plotting for Python. -* [bqplot](https://github.com/bloomberg/bqplot) - Interactive Plotting Library for the Jupyter Notebook -* [Cartopy](https://github.com/SciTools/cartopy) - A cartographic python library with matplotlib support +* [bqplot](https://github.com/bloomberg/bqplot) - Interactive Plotting Library for the Jupyter Notebook. +* [Cartopy](https://github.com/SciTools/cartopy) - A cartographic python library with matplotlib support. * [Dash](https://plot.ly/products/dash/) - Built on top of Flask, React and Plotly aimed at analytical web applications. * [awesome-dash](https://github.com/Acrotrend/awesome-dash) * [diagrams](https://github.com/mingrammer/diagrams) - Diagram as Code. From aa4e0ee1a96baf54fa730a60f789e62d1c90b297 Mon Sep 17 00:00:00 2001 From: Vaishnavi Mudaliar Date: Sun, 25 Jul 2021 12:32:36 +0530 Subject: [PATCH 119/154] Update CONTRIBUTING.md fixed a typo --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a46dfefee..943f93cba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ Your contributions are always welcome! -## Guideline +## Guidelines * Add one link per Pull Request. * Make sure the PR title is in the format of `Add project-name`. From 05fc6b3549b52dcc1240983779b284eca64622b6 Mon Sep 17 00:00:00 2001 From: Pranav Arora <48170643+pranavarora1895@users.noreply.github.com> Date: Fri, 17 Dec 2021 08:55:40 +0530 Subject: [PATCH 120/154] arcade link updated Arcade, a game development library, the previous link does not exist. So I updated it with the latest link. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 04743aeee..17bbbe2dc 100644 --- a/README.md +++ b/README.md @@ -693,7 +693,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Awesome game development libraries.* -* [Arcade](https://arcade.academy/index.html) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. +* [Arcade](https://api.arcade.academy/en/latest/) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. * [Cocos2d](http://cocos2d.org/) - cocos2d is a framework for building 2D games, demos, and other graphical/interactive applications. * [Harfang3D](http://www.harfang3d.com) - Python framework for 3D, VR and game development. * [Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney. From 7172dffdc9db52385f6b7017d9e6a42f7b79e4a9 Mon Sep 17 00:00:00 2001 From: nishans08 <71048600+nishans08@users.noreply.github.com> Date: Tue, 26 Jul 2022 02:27:52 -0700 Subject: [PATCH 121/154] fix errors in README.md dogpile.cache is next generation replacement for Beaker made by same authors -> dogpile.cache is a next generation replacement for Beaker made by the same authors. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17bbbe2dc..1a6409bcd 100644 --- a/README.md +++ b/README.md @@ -223,7 +223,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [beaker](https://github.com/bbangert/beaker) - A WSGI middleware for sessions and caching. * [django-cache-machine](https://github.com/django-cache-machine/django-cache-machine) - Automatic caching and invalidation for Django models. * [django-cacheops](https://github.com/Suor/django-cacheops) - A slick ORM cache with automatic granular event-driven invalidation. -* [dogpile.cache](http://dogpilecache.readthedocs.io/en/latest/) - dogpile.cache is next generation replacement for Beaker made by same authors. +* [dogpile.cache](http://dogpilecache.readthedocs.io/en/latest/) - dogpile.cache is a next generation replacement for Beaker made by the same authors. * [HermesCache](https://pypi.org/project/HermesCache/) - Python caching library with tag-based invalidation and dogpile effect prevention. * [pylibmc](https://github.com/lericson/pylibmc) - A Python wrapper around the [libmemcached](https://libmemcached.org/libMemcached.html) interface. * [python-diskcache](http://www.grantjenks.com/docs/diskcache/) - SQLite and file backed cache backend with faster lookups than memcached and redis. From e7875575f96b5e2a6e6c76a67826bf33eb272bb6 Mon Sep 17 00:00:00 2001 From: Anurag Rao <77329899+anuragrao04@users.noreply.github.com> Date: Sun, 23 Oct 2022 14:19:55 +0530 Subject: [PATCH 122/154] Update README.md redirected pyqt to link to official docs, which is more useful for a beginner --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a6409bcd..c169b8969 100644 --- a/README.md +++ b/README.md @@ -671,7 +671,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [kivy](https://kivy.org/) - A library for creating NUI applications, running on Windows, Linux, Mac OS X, Android and iOS. * [pyglet](https://github.com/pyglet/pyglet) - A cross-platform windowing and multimedia library for Python. * [PyGObject](https://wiki.gnome.org/Projects/PyGObject) - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3). -* [PyQt](https://riverbankcomputing.com/software/pyqt/intro) - Python bindings for the [Qt](https://www.qt.io/) cross-platform application and UI framework. +* [PyQt](https://doc.qt.io/qtforpython/) - Python bindings for the [Qt](https://www.qt.io/) cross-platform application and UI framework. * [PySimpleGUI](https://github.com/PySimpleGUI/PySimpleGUI) - Wrapper for tkinter, Qt, WxPython and Remi. * [pywebview](https://github.com/r0x0r/pywebview/) - A lightweight cross-platform native wrapper around a webview component. * [Tkinter](https://wiki.python.org/moin/TkInter) - Tkinter is Python's de-facto standard GUI package. From b153dfe8c936553b87f6eae8c0a5870ab704dc7a Mon Sep 17 00:00:00 2001 From: timur Date: Sat, 3 Dec 2022 10:21:35 +0100 Subject: [PATCH 123/154] Add correct description of Saleor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c169b8969..08c44ed75 100644 --- a/README.md +++ b/README.md @@ -566,7 +566,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [merchant](https://github.com/agiliq/merchant) - A Django app to accept payments from various payment processors. * [money](https://github.com/carlospalol/money) - `Money` class with optional CLDR-backed locale-aware formatting and an extensible currency exchange. * [python-currencies](https://github.com/Alir3z4/python-currencies) - Display money format and its filthy currencies. -* [saleor](http://getsaleor.com/) - An e-commerce storefront for Django. +* [saleor](https://saleor.io/) - Headless open-source e-commerce platform. * [shoop](https://www.shuup.com/en/) - An open source E-Commerce platform based on Django. ## Editor Plugins and IDEs From 58d33989365338dd9e3ae1f09a7120be78676c11 Mon Sep 17 00:00:00 2001 From: Robert Hofer <1058012+hofrob@users.noreply.github.com> Date: Tue, 3 Jan 2023 19:08:58 +0100 Subject: [PATCH 124/154] Remove abandoned project pyannotate --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 08c44ed75..c01386f66 100644 --- a/README.md +++ b/README.md @@ -260,7 +260,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. * Static Type Annotations Generators * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types. - * [pyannotate](https://github.com/dropbox/pyannotate) - Auto-generate PEP-484 annotations. * [pytype](https://github.com/google/pytype) - Pytype checks and infers types for Python code - without requiring type annotations. ## Command-line Interface Development From 1df5568c6eb02beec63613f12c158f1dcf8b8c6f Mon Sep 17 00:00:00 2001 From: "Renato C. Francisco" <56325092+renatocfrancisco@users.noreply.github.com> Date: Mon, 6 Feb 2023 07:43:31 -0300 Subject: [PATCH 125/154] New link for Pyston Old link was just the old pyston repository with a readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c01386f66..4a3815899 100644 --- a/README.md +++ b/README.md @@ -785,7 +785,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [PeachPy](https://github.com/Maratyszcza/PeachPy) - x86-64 assembler embedded in Python. * [Pyjion](https://github.com/Microsoft/Pyjion) - A JIT for Python based upon CoreCLR. * [PyPy](https://foss.heptapod.net/pypy/pypy) - A very fast and compliant implementation of the Python language. -* [Pyston](https://github.com/dropbox/pyston) - A Python implementation using JIT techniques. +* [Pyston](https://github.com/pyston/pyston/) - A Python implementation using JIT techniques. * [Stackless Python](https://github.com/stackless-dev/stackless) - An enhanced version of the Python programming language. ## Interactive Interpreter From ee3247602b961b88de0b8ac4acbe67de5fe4c254 Mon Sep 17 00:00:00 2001 From: van Date: Mon, 13 Feb 2023 14:10:50 +0800 Subject: [PATCH 126/154] Update README.md Add audioFlux: A library for audio and music analysis, feature extraction. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c01386f66..03217a0d5 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Audio * [audioread](https://github.com/beetbox/audioread) - Cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding. + * [audioFlux](https://github.com/libAudioFlux/audioFlux) - A library for audio and music analysis, feature extraction. * [dejavu](https://github.com/worldveil/dejavu) - Audio fingerprinting and recognition. * [kapre](https://github.com/keunwoochoi/kapre) - Keras Audio Preprocessors. * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis. From 86e581eea0ab4c0436f2fc66cbb43f76667c7982 Mon Sep 17 00:00:00 2001 From: Daniel Tatarkin Date: Fri, 24 Mar 2023 16:39:47 -0400 Subject: [PATCH 127/154] Fixed Zappa link Zappa github project moved to a new repository under https://github.com/zappa/Zappa --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c01386f66..48128a5ae 100644 --- a/README.md +++ b/README.md @@ -1069,7 +1069,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Frameworks for developing serverless Python code.* * [python-lambda](https://github.com/nficano/python-lambda) - A toolkit for developing and deploying Python code in AWS Lambda. -* [Zappa](https://github.com/Miserlou/Zappa) - A tool for deploying WSGI applications on AWS Lambda and API Gateway. +* [Zappa](https://github.com/zappa/Zappa) - A tool for deploying WSGI applications on AWS Lambda and API Gateway. ## Shell From 808fd55da7a69047cdcb143946858dd92d5a86aa Mon Sep 17 00:00:00 2001 From: conder Date: Fri, 24 Mar 2023 19:01:00 -0400 Subject: [PATCH 128/154] Fixed error of files section not linking. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c01386f66..65e6ebad9 100644 --- a/README.md +++ b/README.md @@ -614,7 +614,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyenv](https://github.com/pyenv/pyenv) - Simple Python version management. * [virtualenv](https://github.com/pypa/virtualenv) - A tool to create isolated Python environments. -## Files +## File Manipulation *Libraries for file manipulation and MIME type detection.* From 20b81c76afb8de2ff4ac57071f03573045517d24 Mon Sep 17 00:00:00 2001 From: conder Date: Fri, 24 Mar 2023 19:03:11 -0400 Subject: [PATCH 129/154] Changed files section name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65e6ebad9..7569214d8 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Email](#email) - [Enterprise Application Integrations](#enterprise-application-integrations) - [Environment Management](#environment-management) - - [Files](#files) + - [Files](#file) - [Foreign Function Interface](#foreign-function-interface) - [Forms](#forms) - [Functional Programming](#functional-programming) @@ -614,7 +614,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyenv](https://github.com/pyenv/pyenv) - Simple Python version management. * [virtualenv](https://github.com/pypa/virtualenv) - A tool to create isolated Python environments. -## File Manipulation +## File *Libraries for file manipulation and MIME type detection.* From eb335c5abea8094a3eb3fd7dd2ef26b8cd9fba86 Mon Sep 17 00:00:00 2001 From: "Ella Venkatesan, Arunachalam" Date: Wed, 12 Jul 2023 19:48:07 -0400 Subject: [PATCH 130/154] added deep learning framework Lighting --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 97bc05dbf..e5770417d 100644 --- a/README.md +++ b/README.md @@ -483,6 +483,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [SerpentAI](https://github.com/SerpentAI/SerpentAI) - Game agent framework. Use any video game as a deep learning sandbox. * [tensorflow](https://github.com/tensorflow/tensorflow) - The most popular Deep Learning framework created by Google. * [Theano](https://github.com/Theano/Theano) - A library for fast numerical computation. +* [lightning](https://github.com/Lightning-AI/lightning) - Deep learning framework to train, deploy, and ship AI products Lightning fast. ## DevOps Tools From 651618aefb3340a505a669c6b520b5d6a1d6ebb4 Mon Sep 17 00:00:00 2001 From: canhuynh1998 Date: Wed, 13 Sep 2023 21:28:49 -0700 Subject: [PATCH 131/154] Fixed psycopg2's homepage link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5770417d..d6eed48e2 100644 --- a/README.md +++ b/README.md @@ -412,7 +412,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [mysqlclient](https://github.com/PyMySQL/mysqlclient-python) - MySQL connector with Python 3 support ([mysql-python](https://sourceforge.net/projects/mysql-python/) fork). * [PyMySQL](https://github.com/PyMySQL/PyMySQL) - A pure Python MySQL driver compatible to mysql-python. * PostgreSQL - [awesome-postgres](https://github.com/dhamaniasad/awesome-postgres) - * [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for Python. + * [psycopg2](https://www.psycopg.org) - The most popular PostgreSQL adapter for Python. * [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL. * SQlite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) * [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compliant with DB-API 2.0 From 6d8b6c6ed4888ede736065a3359151e8047bdcf6 Mon Sep 17 00:00:00 2001 From: DAVEALLCAPS Date: Tue, 7 Nov 2023 20:32:21 -0700 Subject: [PATCH 132/154] Fixed a Number of Dead Links UPDATED: Line 191: [BitBake](http://www.yoctoproject.org/docs/1.6/bitbake-user-manual/bitbake-user-manual.html) Old version docs no longer at this URL. Line 415: [psycopg2](http://initd.org/psycopg/) Permanently moved to new site. Line 571: [shoop](https://www.shuup.com/en/) /en/ is 404, removed. Line 674: [PyGObject](https://wiki.gnome.org/Projects/PyGObject) Permanently moved to new URL. Line 698: [Cocos2d](http://cocos2d.org/) Permanently moved to new URL. Line 1008: [vibora](https://vibora.io/) This library was recently archived, also homepage is 404 but docs.vibora.io is functional. Line 1039: [Open Babel](http://openbabel.org/wiki/Main_Page) Permanently moved to new URL. REMOVED: Line 427: [py2neo](https://py2neo.org/) Project is EOL. Line 765: [pygram](https://github.com/ajkumar25/pygram) Library no longer exists? Line 1342: [Pythonic News](https://news.python.sc/) Entire site is 404. --- README.md | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e5770417d..d2fa19376 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Compile software from source code.* -* [BitBake](http://www.yoctoproject.org/docs/1.6/bitbake-user-manual/bitbake-user-manual.html) - A make-like build tool for embedded Linux. +* [BitBake](https://docs.yoctoproject.org/bitbake/2.4/index.html) - A make-like build tool for embedded Linux. * [buildout](http://www.buildout.org/en/latest/) - A build system for creating, assembling and deploying applications from multiple parts. * [PlatformIO](https://github.com/platformio/platformio-core) - A console tool to build code with different development platforms. * [pybuilder](https://github.com/pybuilder/pybuilder) - A continuous build tool written in pure Python. @@ -412,7 +412,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [mysqlclient](https://github.com/PyMySQL/mysqlclient-python) - MySQL connector with Python 3 support ([mysql-python](https://sourceforge.net/projects/mysql-python/) fork). * [PyMySQL](https://github.com/PyMySQL/PyMySQL) - A pure Python MySQL driver compatible to mysql-python. * PostgreSQL - [awesome-postgres](https://github.com/dhamaniasad/awesome-postgres) - * [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for Python. + * [psycopg](https://www.psycopg.org/) - The most popular PostgreSQL adapter for Python. * [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL. * SQlite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) * [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compliant with DB-API 2.0 @@ -424,7 +424,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [cassandra-driver](https://github.com/datastax/python-driver) - The Python Driver for Apache Cassandra. * [happybase](https://github.com/wbolster/happybase) - A developer-friendly library for Apache HBase. * [kafka-python](https://github.com/dpkp/kafka-python) - The Python client for Apache Kafka. - * [py2neo](https://py2neo.org/) - A client library and toolkit for working with Neo4j. * [pymongo](https://github.com/mongodb/mongo-python-driver) - The official Python client for MongoDB. * [redis-py](https://github.com/andymccurdy/redis-py) - The Python client for Redis. * Asynchronous Clients @@ -568,7 +567,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [money](https://github.com/carlospalol/money) - `Money` class with optional CLDR-backed locale-aware formatting and an extensible currency exchange. * [python-currencies](https://github.com/Alir3z4/python-currencies) - Display money format and its filthy currencies. * [saleor](https://saleor.io/) - Headless open-source e-commerce platform. -* [shoop](https://www.shuup.com/en/) - An open source E-Commerce platform based on Django. +* [shoop](https://www.shuup.com/) - An open source E-Commerce platform based on Django. ## Editor Plugins and IDEs @@ -671,7 +670,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Gooey](https://github.com/chriskiehl/Gooey) - Turn command line programs into a full GUI application with one line. * [kivy](https://kivy.org/) - A library for creating NUI applications, running on Windows, Linux, Mac OS X, Android and iOS. * [pyglet](https://github.com/pyglet/pyglet) - A cross-platform windowing and multimedia library for Python. -* [PyGObject](https://wiki.gnome.org/Projects/PyGObject) - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3). +* [PyGObject](https://pygobject.readthedocs.io/) - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3). * [PyQt](https://doc.qt.io/qtforpython/) - Python bindings for the [Qt](https://www.qt.io/) cross-platform application and UI framework. * [PySimpleGUI](https://github.com/PySimpleGUI/PySimpleGUI) - Wrapper for tkinter, Qt, WxPython and Remi. * [pywebview](https://github.com/r0x0r/pywebview/) - A lightweight cross-platform native wrapper around a webview component. @@ -695,7 +694,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Awesome game development libraries.* * [Arcade](https://api.arcade.academy/en/latest/) - Arcade is a modern Python framework for crafting games with compelling graphics and sound. -* [Cocos2d](http://cocos2d.org/) - cocos2d is a framework for building 2D games, demos, and other graphical/interactive applications. +* [Cocos2d](https://www.cocos.com/en/cocos2d-x) - cocos2d is a framework for building 2D games, demos, and other graphical/interactive applications. * [Harfang3D](http://www.harfang3d.com) - Python framework for 3D, VR and game development. * [Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney. * [Pygame](http://www.pygame.org/news.html) - Pygame is a set of Python modules designed for writing games. @@ -762,7 +761,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pagan](https://github.com/daboth/pagan) - Retro identicon (Avatar) generation based on input string and hash. * [pillow](https://github.com/python-pillow/Pillow) - Pillow is the friendly [PIL](http://www.pythonware.com/products/pil/) fork. * [python-barcode](https://github.com/WhyNotHugo/python-barcode) - Create barcodes in Python with no extra dependencies. -* [pygram](https://github.com/ajkumar25/pygram) - Instagram-like image filters. * [PyMatting](http://github.com/pymatting/pymatting) - A library for alpha matting. * [python-qrcode](https://github.com/lincolnloop/python-qrcode) - A pure Python QR Code generator. * [pywal](https://github.com/dylanaraps/pywal) - A tool that generates color schemes from images. @@ -1005,7 +1003,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [hug](https://github.com/hugapi/hug) - A Python 3 framework for cleanly exposing APIs. * [sandman2](https://github.com/jeffknupp/sandman2) - Automated REST APIs for existing database-driven systems. * [sanic](https://github.com/huge-success/sanic) - A Python 3.6+ web server and web framework that's written to go fast. - * [vibora](https://vibora.io/) - Fast, efficient and asynchronous Web framework inspired by Flask. + * [vibora](https://docs.vibora.io/) - Fast, efficient and asynchronous Web framework inspired by Flask. ## Robotics @@ -1036,7 +1034,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [NIPY](http://nipy.org) - A collection of neuroimaging toolkits. * [NumPy](http://www.numpy.org/) - A fundamental package for scientific computing with Python. * [ObsPy](https://github.com/obspy/obspy/wiki/) - A Python toolbox for seismology. -* [Open Babel](http://openbabel.org/wiki/Main_Page) - A chemical toolbox designed to speak the many languages of chemical data. +* [Open Babel](https://open-babel.readthedocs.io/) - A chemical toolbox designed to speak the many languages of chemical data. * [PyDy](http://www.pydy.org/) - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion. * [PyMC](https://github.com/pymc-devs/pymc3) - Markov Chain Monte Carlo sampling toolkit. * [QuTiP](http://qutip.org/) - Quantum Toolbox in Python. @@ -1339,7 +1337,6 @@ Where to discover learning resources or new Python libraries. * [Awesome Python @LibHunt](https://python.libhunt.com/) * Others * [Python ZEEF](https://python.zeef.com/alan.richmond) - * [Pythonic News](https://news.python.sc/) * [What the f*ck Python!](https://github.com/satwikkansal/wtfpython) ## Newsletters From 426aaaae7cadefaf9498a18324b54fe26850191a Mon Sep 17 00:00:00 2001 From: Atharva Kulkarni Date: Wed, 15 Nov 2023 19:44:41 +0530 Subject: [PATCH 133/154] Updated some hyperlinks in README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e5770417d..c8ff6382b 100644 --- a/README.md +++ b/README.md @@ -224,10 +224,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [beaker](https://github.com/bbangert/beaker) - A WSGI middleware for sessions and caching. * [django-cache-machine](https://github.com/django-cache-machine/django-cache-machine) - Automatic caching and invalidation for Django models. * [django-cacheops](https://github.com/Suor/django-cacheops) - A slick ORM cache with automatic granular event-driven invalidation. -* [dogpile.cache](http://dogpilecache.readthedocs.io/en/latest/) - dogpile.cache is a next generation replacement for Beaker made by the same authors. +* [dogpile.cache](https://dogpilecache.sqlalchemy.org/en/latest/) - dogpile.cache is a next generation replacement for Beaker made by the same authors. * [HermesCache](https://pypi.org/project/HermesCache/) - Python caching library with tag-based invalidation and dogpile effect prevention. * [pylibmc](https://github.com/lericson/pylibmc) - A Python wrapper around the [libmemcached](https://libmemcached.org/libMemcached.html) interface. -* [python-diskcache](http://www.grantjenks.com/docs/diskcache/) - SQLite and file backed cache backend with faster lookups than memcached and redis. +* [python-diskcache](https://grantjenks.com/docs/diskcache/) - SQLite and file backed cache backend with faster lookups than memcached and redis. ## ChatOps Tools @@ -256,7 +256,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [isort](https://github.com/timothycrosley/isort) - A Python utility / library to sort imports. * [yapf](https://github.com/google/yapf) - Yet another Python code formatter from Google. * Static Type Checkers, also see [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing) - * [mypy](http://mypy-lang.org/) - Check variable types during compile time. + * [mypy](https://mypy-lang.org/) - Check variable types during compile time. * [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. * Static Type Annotations Generators @@ -268,10 +268,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for building command-line applications.* * Command-line Application Development - * [cement](http://builtoncement.com/) - CLI Application Framework for Python. - * [click](http://click.pocoo.org/dev/) - A package for creating beautiful command line interfaces in a composable way. + * [cement](https://builtoncement.com/) - CLI Application Framework for Python. + * [click](https://click.pocoo.org/dev/) - A package for creating beautiful command line interfaces in a composable way. * [cliff](https://docs.openstack.org/developer/cliff/) - A framework for creating command-line programs with multi-level commands. - * [docopt](http://docopt.org/) - Pythonic command line arguments parser. + * [docopt](https://docopt.org/) - Pythonic command line arguments parser. * [python-fire](https://github.com/google/python-fire) - A library for creating command line interfaces from absolutely any Python object. * [python-prompt-toolkit](https://github.com/jonathanslenders/python-prompt-toolkit) - A library for building powerful interactive command lines. * Terminal Rendering From 98a28573bcc021cf3de9f8cafa450828f9afa201 Mon Sep 17 00:00:00 2001 From: massiR2D2 <52237497+massiR2D2@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:38:23 +0100 Subject: [PATCH 134/154] Fix pylint link As mentioned in this discussion https://github.com/pylint-dev/pylint/issues/7384 the pylint dot org domain is no longer associated with the python linter. Change the name to the one linked in the GitHub Repo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5770417d..c6334dbd1 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [flake8](https://pypi.org/project/flake8/) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. * [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) * [pylama](https://github.com/klen/pylama) - A code audit tool for Python and JavaScript. - * [pylint](https://www.pylint.org/) - A fully customizable source code analyzer. + * [pylint](https://pylint.readthedocs.io/en/latest/) - A fully customizable source code analyzer. * [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) - The strictest and most opinionated python linter ever. * Code Formatters * [black](https://github.com/python/black) - The uncompromising Python code formatter. From 12551e1c7cf4e164fd05dad429dee63d7d622ae7 Mon Sep 17 00:00:00 2001 From: Atharva Kulkarni Date: Thu, 16 Nov 2023 22:48:08 +0530 Subject: [PATCH 135/154] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c8ff6382b..6b84c086a 100644 --- a/README.md +++ b/README.md @@ -269,9 +269,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Command-line Application Development * [cement](https://builtoncement.com/) - CLI Application Framework for Python. - * [click](https://click.pocoo.org/dev/) - A package for creating beautiful command line interfaces in a composable way. + * [click](https://palletsprojects.com/p/click/) - A package for creating beautiful command line interfaces in a composable way. * [cliff](https://docs.openstack.org/developer/cliff/) - A framework for creating command-line programs with multi-level commands. - * [docopt](https://docopt.org/) - Pythonic command line arguments parser. + * [docopt](http://docopt.org/) - Pythonic command line arguments parser. * [python-fire](https://github.com/google/python-fire) - A library for creating command line interfaces from absolutely any Python object. * [python-prompt-toolkit](https://github.com/jonathanslenders/python-prompt-toolkit) - A library for building powerful interactive command lines. * Terminal Rendering From 0677c6f9654dbe871bee5a05d8321815c76b88e4 Mon Sep 17 00:00:00 2001 From: EpicSprout Date: Sat, 6 Jan 2024 23:03:41 +1100 Subject: [PATCH 136/154] Update README.md fixed non working link for click --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5770417d..060174e5e 100644 --- a/README.md +++ b/README.md @@ -269,7 +269,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Command-line Application Development * [cement](http://builtoncement.com/) - CLI Application Framework for Python. - * [click](http://click.pocoo.org/dev/) - A package for creating beautiful command line interfaces in a composable way. + * [click](https://click.palletsprojects.com/en/8.1.x/) - A package for creating beautiful command line interfaces in a composable way. * [cliff](https://docs.openstack.org/developer/cliff/) - A framework for creating command-line programs with multi-level commands. * [docopt](http://docopt.org/) - Pythonic command line arguments parser. * [python-fire](https://github.com/google/python-fire) - A library for creating command line interfaces from absolutely any Python object. From dd3d2845735583ddb72771fd3ba7e596563a1c74 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 22:53:17 +0800 Subject: [PATCH 137/154] remove projects --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 7e29bbe71..a19a59cd0 100644 --- a/README.md +++ b/README.md @@ -109,10 +109,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for administrative interfaces.* * [ajenti](https://github.com/ajenti/ajenti) - The admin panel your servers deserve. -* [django-grappelli](https://grappelliproject.com/) - A jazzy skin for the Django Admin-Interface. -* [django-jet](https://github.com/geex-arts/django-jet) - Modern responsive template for the Django admin interface with improved functionality. -* [django-suit](https://djangosuit.com/) - Alternative Django Admin-Interface (free only for Non-commercial use). -* [django-xadmin](https://github.com/sshwsfc/xadmin) - Drop-in replacement of Django admin comes with lots of goodies. +* [django-grappelli](https://github.com/sehmaschine/django-grappelli) - A jazzy skin for the Django Admin-Interface. * [flask-admin](https://github.com/flask-admin/flask-admin) - Simple and extensible administrative interface framework for Flask. * [flower](https://github.com/mher/flower) - Real-time monitor and web admin for Celery. * [jet-bridge](https://github.com/jet-admin/jet-bridge) - Admin panel framework for any application with nice UI (ex Jet Django). From e2763c0fa61f6a95c9ff04ea567b5cf71c0aa81b Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 22:54:54 +0800 Subject: [PATCH 138/154] link to github --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a19a59cd0..b4153e8bc 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [asyncio](https://docs.python.org/3/library/asyncio.html) - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks. - [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio) * [trio](https://github.com/python-trio/trio) - A friendly library for async concurrency and I/O. -* [Twisted](https://twistedmatrix.com/trac/) - An event-driven networking engine. +* [twisted](https://github.com/twisted/twisted) - An event-driven networking engine. * [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast asyncio event loop. ## Audio From 94c79f2f35e76f48c15e1b16041b3ba57c3f9787 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 22:55:06 +0800 Subject: [PATCH 139/154] remove old projects --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b4153e8bc..4726612e1 100644 --- a/README.md +++ b/README.md @@ -172,14 +172,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * OAuth * [authlib](https://github.com/lepture/authlib) - JavaScript Object Signing and Encryption draft implementation. * [django-allauth](https://github.com/pennersr/django-allauth) - Authentication app for Django that "just works." - * [django-oauth-toolkit](https://github.com/evonove/django-oauth-toolkit) - OAuth 2 goodies for Django. - * [oauthlib](https://github.com/idan/oauthlib) - A generic and thorough implementation of the OAuth request-signing logic. - * [python-oauth2](https://github.com/joestump/python-oauth2) - A fully tested, abstract interface to creating OAuth clients and servers. - * [python-social-auth](https://github.com/omab/python-social-auth) - An easy-to-setup social authentication mechanism. + * [django-oauth-toolkit](https://github.com/jazzband/django-oauth-toolkit) - OAuth 2 goodies for Django. + * [oauthlib](https://github.com/oauthlib/oauthlib) - A generic and thorough implementation of the OAuth request-signing logic. * JWT * [pyjwt](https://github.com/jpadilla/pyjwt) - JSON Web Token implementation in Python. * [python-jose](https://github.com/mpdavis/python-jose/) - A JOSE implementation in Python. - * [python-jwt](https://github.com/davedoesdev/python-jwt) - A module for generating and verifying JSON Web Tokens. ## Build Tools From 9106143643be34280af14c11d184c2b504abf5d9 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:03:17 +0800 Subject: [PATCH 140/154] clean up --- README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 4726612e1..a65d1747b 100644 --- a/README.md +++ b/README.md @@ -182,11 +182,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Compile software from source code.* -* [BitBake](https://docs.yoctoproject.org/bitbake/2.4/index.html) - A make-like build tool for embedded Linux. -* [buildout](http://www.buildout.org/en/latest/) - A build system for creating, assembling and deploying applications from multiple parts. -* [PlatformIO](https://github.com/platformio/platformio-core) - A console tool to build code with different development platforms. +* [bitbake](https://github.com/openembedded/bitbake) - A make-like build tool for embedded Linux. +* [buildout](https://github.com/buildout/buildout) - A build system for creating, assembling and deploying applications from multiple parts. +* [platformio](https://github.com/platformio/platformio-core) - A console tool to build code with different development platforms. * [pybuilder](https://github.com/pybuilder/pybuilder) - A continuous build tool written in pure Python. -* [SCons](http://www.scons.org/) - A software construction tool. +* [SCons](https://github.com/SCons/scons) - A software construction tool. ## Built-in Classes Enhancement @@ -202,14 +202,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Content Management Systems.* -* [django-cms](https://www.django-cms.org/en/) - An Open source enterprise CMS based on the Django. * [feincms](https://github.com/feincms/feincms) - One of the most advanced Content Management Systems built on Django. * [indico](https://github.com/indico/indico) - A feature-rich event management system, made @ [CERN](https://en.wikipedia.org/wiki/CERN). -* [Kotti](https://github.com/Kotti/Kotti) - A high-level, Pythonic web application framework built on Pyramid. -* [mezzanine](https://github.com/stephenmcd/mezzanine) - A powerful, consistent, and flexible content management platform. -* [plone](https://plone.org/) - A CMS built on top of the open source application server Zope. -* [quokka](https://github.com/rochacbruno/quokka) - Flexible, extensible, small CMS powered by Flask and MongoDB. -* [wagtail](https://wagtail.io/) - A Django content management system. +* [wagtail](https://github.com/wagtail/wagtail) - A Django content management system. ## Caching @@ -218,10 +213,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [beaker](https://github.com/bbangert/beaker) - A WSGI middleware for sessions and caching. * [django-cache-machine](https://github.com/django-cache-machine/django-cache-machine) - Automatic caching and invalidation for Django models. * [django-cacheops](https://github.com/Suor/django-cacheops) - A slick ORM cache with automatic granular event-driven invalidation. -* [dogpile.cache](https://dogpilecache.sqlalchemy.org/en/latest/) - dogpile.cache is a next generation replacement for Beaker made by the same authors. +* [dogpile.cache](https://github.com/sqlalchemy/dogpile.cache) - dogpile.cache is a next generation replacement for Beaker made by the same authors. * [HermesCache](https://pypi.org/project/HermesCache/) - Python caching library with tag-based invalidation and dogpile effect prevention. * [pylibmc](https://github.com/lericson/pylibmc) - A Python wrapper around the [libmemcached](https://libmemcached.org/libMemcached.html) interface. -* [python-diskcache](https://grantjenks.com/docs/diskcache/) - SQLite and file backed cache backend with faster lookups than memcached and redis. +* [python-diskcache](https://github.com/grantjenks/python-diskcache) - SQLite and file backed cache backend with faster lookups than memcached and redis. ## ChatOps Tools From 4b29059c6fa85d68c245770e4625ccccab7327bc Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:09:16 +0800 Subject: [PATCH 141/154] clean up Code Analysis --- README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a65d1747b..5a2bfa905 100644 --- a/README.md +++ b/README.md @@ -229,25 +229,22 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Tools of static analysis, linters and code quality checkers. Also see [awesome-static-analysis](https://github.com/mre/awesome-static-analysis).* * Code Analysis - * [coala](https://github.com/coala/coala/) - Language independent and easily extendable code analysis application. * [code2flow](https://github.com/scottrogowski/code2flow) - Turn your Python and JavaScript code into DOT flowcharts. * [prospector](https://github.com/PyCQA/prospector) - A tool to analyse Python code. - * [pycallgraph](https://github.com/gak/pycallgraph) - A library that visualises the flow (call graph) of your Python application. * [vulture](https://github.com/jendrikseipp/vulture) - A tool for finding and analysing dead Python code. * Code Linters - * [flake8](https://pypi.org/project/flake8/) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. + * [flake8](https://github.com/PyCQA/flake8) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. * [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) - * [pylama](https://github.com/klen/pylama) - A code audit tool for Python and JavaScript. - * [pylint](https://pylint.readthedocs.io/en/latest/) - A fully customizable source code analyzer. - * [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) - The strictest and most opinionated python linter ever. + * [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer. * Code Formatters - * [black](https://github.com/python/black) - The uncompromising Python code formatter. + * [black](https://github.com/psf/black) - The uncompromising Python code formatter. * [isort](https://github.com/timothycrosley/isort) - A Python utility / library to sort imports. * [yapf](https://github.com/google/yapf) - Yet another Python code formatter from Google. * Static Type Checkers, also see [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing) - * [mypy](https://mypy-lang.org/) - Check variable types during compile time. + * [mypy](https://github.com/python/mypy) - Check variable types during compile time. * [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. + * [pydantic](https://github.com/pydantic/pydantic) - Data validation using Python type hints. * Static Type Annotations Generators * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types. * [pytype](https://github.com/google/pytype) - Pytype checks and infers types for Python code - without requiring type annotations. From ca8c1617e7020b04574d129f10d532d6fa8c3fa6 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:11:26 +0800 Subject: [PATCH 142/154] refine Command-line Interface Development --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5a2bfa905..37a57c0ff 100644 --- a/README.md +++ b/README.md @@ -254,18 +254,17 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for building command-line applications.* * Command-line Application Development - * [cement](https://builtoncement.com/) - CLI Application Framework for Python. + * [cement](https://github.com/datafolklabs/cement) - CLI Application Framework for Python. * [click](https://github.com/pallets/click/) - A package for creating beautiful command line interfaces in a composable way. - * [cliff](https://docs.openstack.org/developer/cliff/) - A framework for creating command-line programs with multi-level commands. - * [docopt](http://docopt.org/) - Pythonic command line arguments parser. + * [cliff](https://github.com/openstack/cliff) - A framework for creating command-line programs with multi-level commands. * [python-fire](https://github.com/google/python-fire) - A library for creating command line interfaces from absolutely any Python object. - * [python-prompt-toolkit](https://github.com/jonathanslenders/python-prompt-toolkit) - A library for building powerful interactive command lines. + * [python-prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) - A library for building powerful interactive command lines. * Terminal Rendering * [alive-progress](https://github.com/rsalmei/alive-progress) - A new kind of Progress Bar, with real-time throughput, eta and very cool animations. * [asciimatics](https://github.com/peterbrittain/asciimatics) - A package to create full-screen text UIs (from interactive forms to ASCII animations). * [bashplotlib](https://github.com/glamp/bashplotlib) - Making basic plots in the terminal. - * [colorama](https://pypi.org/project/colorama/) - Cross-platform colored terminal text. - * [rich](https://github.com/willmcgugan/rich) - Python library for rich text and beautiful formatting in the terminal. Also provides a great `RichHandler` log handler. + * [colorama](https://github.com/tartley/colorama) - Cross-platform colored terminal text. + * [rich](https://github.com/Textualize/rich) - Python library for rich text and beautiful formatting in the terminal. Also provides a great `RichHandler` log handler. * [tqdm](https://github.com/tqdm/tqdm) - Fast, extensible progress bar for loops and CLI. ## Command-line Tools From 8eec1a75f35ee966c0fa5167013b509ebb9316f6 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:14:14 +0800 Subject: [PATCH 143/154] refine Command-line Tools --- README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 37a57c0ff..5e6a3f3fa 100644 --- a/README.md +++ b/README.md @@ -272,24 +272,21 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Useful CLI-based tools for productivity.* * Productivity Tools - * [copier](https://github.com/pykong/copier) - A library and command-line utility for rendering projects templates. - * [cookiecutter](https://github.com/audreyr/cookiecutter) - A command-line utility that creates projects from cookiecutters (project templates). + * [copier](https://github.com/copier-org/copier) - A library and command-line utility for rendering projects templates. + * [cookiecutter](https://github.com/cookiecutter/cookiecutter) - A command-line utility that creates projects from cookiecutters (project templates). * [doitlive](https://github.com/sloria/doitlive) - A tool for live presentations in the terminal. * [howdoi](https://github.com/gleitz/howdoi) - Instant coding answers via the command line. - * [Invoke](https://github.com/pyinvoke/invoke#readme) - A tool for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks. + * [Invoke](https://github.com/pyinvoke/invoke) - A tool for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks. * [PathPicker](https://github.com/facebook/PathPicker) - Select files out of bash output. - * [percol](https://github.com/mooz/percol) - Adds flavor of interactive selection to the traditional pipe concept on UNIX. * [thefuck](https://github.com/nvbn/thefuck) - Correcting your previous console command. - * [tmuxp](https://github.com/tony/tmuxp) - A [tmux](https://github.com/tmux/tmux) session manager. + * [tmuxp](https://github.com/tmux-python/tmuxp) - A [tmux](https://github.com/tmux/tmux) session manager. * [try](https://github.com/timofurrer/try) - A dead simple CLI to try out python packages - it's never been easier. * CLI Enhancements - * [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement. + * [httpie](https://github.com/httpie/cli) - A command line HTTP client, a user-friendly cURL replacement. * [iredis](https://github.com/laixintao/iredis) - Redis CLI with autocompletion and syntax highlighting. - * [kube-shell](https://github.com/cloudnativelabs/kube-shell) - An integrated shell for working with the Kubernetes CLI. * [litecli](https://github.com/dbcli/litecli) - SQLite CLI with autocompletion and syntax highlighting. * [mycli](https://github.com/dbcli/mycli) - MySQL CLI with autocompletion and syntax highlighting. * [pgcli](https://github.com/dbcli/pgcli) - PostgreSQL CLI with autocompletion and syntax highlighting. - * [saws](https://github.com/donnemartin/saws) - A Supercharged [aws-cli](https://github.com/aws/aws-cli). ## Compatibility From 9b634444e799c47fd88ab9f5f7787e5a35569a09 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:14:57 +0800 Subject: [PATCH 144/154] remove Compatibility section --- README.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/README.md b/README.md index 5e6a3f3fa..0a6bab595 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Code Analysis](#code-analysis) - [Command-line Interface Development](#command-line-interface-development) - [Command-line Tools](#command-line-tools) - - [Compatibility](#compatibility) - [Computer Vision](#computer-vision) - [Concurrency and Parallelism](#concurrency-and-parallelism) - [Configuration](#configuration) @@ -288,14 +287,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [mycli](https://github.com/dbcli/mycli) - MySQL CLI with autocompletion and syntax highlighting. * [pgcli](https://github.com/dbcli/pgcli) - PostgreSQL CLI with autocompletion and syntax highlighting. -## Compatibility - -*Libraries for migrating from Python 2 to 3.* - -* [python-future](http://python-future.org/index.html) - The missing compatibility layer between Python 2 and Python 3. -* [modernize](https://github.com/PyCQA/modernize) - Modernizes Python code for eventual Python 3 migration. -* [six](https://pypi.org/project/six/) - Python 2 and 3 compatibility utilities. - ## Computer Vision *Libraries for Computer Vision.* From 5b283d6fde6ed668fc99a492d7b3ad08ed225259 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:19:47 +0800 Subject: [PATCH 145/154] refine Database Drivers --- README.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0a6bab595..639e4c0a7 100644 --- a/README.md +++ b/README.md @@ -382,25 +382,23 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for connecting and operating databases.* * MySQL - [awesome-mysql](http://shlomi-noach.github.io/awesome-mysql/) - * [mysqlclient](https://github.com/PyMySQL/mysqlclient-python) - MySQL connector with Python 3 support ([mysql-python](https://sourceforge.net/projects/mysql-python/) fork). + * [mysqlclient](https://github.com/PyMySQL/mysqlclient) - MySQL connector with Python 3 support ([mysql-python](https://sourceforge.net/projects/mysql-python/) fork). * [PyMySQL](https://github.com/PyMySQL/PyMySQL) - A pure Python MySQL driver compatible to mysql-python. * PostgreSQL - [awesome-postgres](https://github.com/dhamaniasad/awesome-postgres) - * [psycopg](https://www.psycopg.org/) - The most popular PostgreSQL adapter for Python. - * [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL. + * [psycopg](https://github.com/psycopg/psycopg) - The most popular PostgreSQL adapter for Python. * SQlite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) - * [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compliant with DB-API 2.0 - * [SuperSQLite](https://github.com/plasticityai/supersqlite) - A supercharged SQLite library built on top of [apsw](https://github.com/rogerbinns/apsw). + * [sqlite3](https://docs.python.org/3/library/sqlite3.html) - (Python standard library) SQlite interface compliant with DB-API 2.0. + * [sqlite-utils](https://github.com/simonw/sqlite-utils) - Python CLI utility and library for manipulating SQLite databases. * Other Relational Databases - * [pymssql](https://pymssql.readthedocs.io/en/latest/) - A simple database interface to Microsoft SQL Server. + * [pymssql](https://github.com/pymssql/pymssql) - A simple database interface to Microsoft SQL Server. * [clickhouse-driver](https://github.com/mymarilyn/clickhouse-driver) - Python driver with native interface for ClickHouse. * NoSQL Databases * [cassandra-driver](https://github.com/datastax/python-driver) - The Python Driver for Apache Cassandra. - * [happybase](https://github.com/wbolster/happybase) - A developer-friendly library for Apache HBase. + * [happybase](https://github.com/python-happybase/happybase) - A developer-friendly library for Apache HBase. * [kafka-python](https://github.com/dpkp/kafka-python) - The Python client for Apache Kafka. * [pymongo](https://github.com/mongodb/mongo-python-driver) - The official Python client for MongoDB. - * [redis-py](https://github.com/andymccurdy/redis-py) - The Python client for Redis. -* Asynchronous Clients * [motor](https://github.com/mongodb/motor) - The async Python driver for MongoDB. + * [redis-py](https://github.com/redis/redis-py) - The Python client for Redis. ## Date and Time From 253a6004aa307bcaca65d50cd0924bd2cc122b80 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:26:27 +0800 Subject: [PATCH 146/154] merge sections --- README.md | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 639e4c0a7..17787bcd6 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Command-line Interface Development](#command-line-interface-development) - [Command-line Tools](#command-line-tools) - [Computer Vision](#computer-vision) - - [Concurrency and Parallelism](#concurrency-and-parallelism) - [Configuration](#configuration) - [Cryptography](#cryptography) - [Data Analysis](#data-analysis) @@ -137,11 +136,17 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). ## Asynchronous Programming +*Libraries for asynchronous, concurrent and parallel execution. Also see [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio).* + * [asyncio](https://docs.python.org/3/library/asyncio.html) - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks. - [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio) +* [concurrent.futures](https://docs.python.org/3/library/concurrent.futures.html) - (Python standard library) A high-level interface for asynchronously executing callables. +* [multiprocessing](https://docs.python.org/3/library/multiprocessing.html) - (Python standard library) Process-based parallelism. * [trio](https://github.com/python-trio/trio) - A friendly library for async concurrency and I/O. * [twisted](https://github.com/twisted/twisted) - An event-driven networking engine. * [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast asyncio event loop. +* [eventlet](https://github.com/eventlet/eventlet) - Asynchronous framework with WSGI support. +* [gevent](https://github.com/gevent/gevent) - A coroutine-based Python networking library that uses [greenlet](https://github.com/python-greenlet/greenlet). ## Audio @@ -292,24 +297,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for Computer Vision.* * [EasyOCR](https://github.com/JaidedAI/EasyOCR) - Ready-to-use OCR with 40+ languages supported. -* [Face Recognition](https://github.com/ageitgey/face_recognition) - Simple facial recognition library. * [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. * [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. * [pytesseract](https://github.com/madmaze/pytesseract) - A wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). -* [SimpleCV](https://github.com/sightmachine/SimpleCV) - An open source framework for building computer vision applications. * [tesserocr](https://github.com/sirfz/tesserocr) - Another simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. -## Concurrency and Parallelism - -*Libraries for concurrent and parallel execution. Also see [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio).* - -* [concurrent.futures](https://docs.python.org/3/library/concurrent.futures.html) - (Python standard library) A high-level interface for asynchronously executing callables. -* [eventlet](http://eventlet.net/) - Asynchronous framework with WSGI support. -* [gevent](http://www.gevent.org/) - A coroutine-based Python networking library that uses [greenlet](https://github.com/python-greenlet/greenlet). -* [multiprocessing](https://docs.python.org/3/library/multiprocessing.html) - (Python standard library) Process-based parallelism. -* [scoop](https://github.com/soravux/scoop) - Scalable Concurrent Operations in Python. -* [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast implementation of `asyncio` event loop on top of `libuv`. - ## Configuration *Libraries for storing and parsing configuration options.* From 17d98fbcc93f8118a7c8736acd543359f2a84184 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 22 Feb 2024 23:35:47 +0800 Subject: [PATCH 147/154] refine --- README.md | 33 ++++++++++++++------------------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 17787bcd6..9a06e291a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Command-line Interface Development](#command-line-interface-development) - [Command-line Tools](#command-line-tools) - [Computer Vision](#computer-vision) - - [Configuration](#configuration) + - [Configuration Files](#configuration-files) - [Cryptography](#cryptography) - [Data Analysis](#data-analysis) - [Data Validation](#data-validation) @@ -248,7 +248,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [mypy](https://github.com/python/mypy) - Check variable types during compile time. * [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. - * [pydantic](https://github.com/pydantic/pydantic) - Data validation using Python type hints. * Static Type Annotations Generators * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types. * [pytype](https://github.com/google/pytype) - Pytype checks and infers types for Python code - without requiring type annotations. @@ -302,45 +301,41 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pytesseract](https://github.com/madmaze/pytesseract) - A wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). * [tesserocr](https://github.com/sirfz/tesserocr) - Another simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. -## Configuration +## Configuration Files *Libraries for storing and parsing configuration options.* -* [configobj](https://github.com/DiffSK/configobj) - INI file parser with validation. * [configparser](https://docs.python.org/3/library/configparser.html) - (Python standard library) INI file parser. +* [configobj](https://github.com/DiffSK/configobj) - INI file parser with validation. * [hydra](https://github.com/facebookresearch/hydra) - Hydra is a framework for elegantly configuring complex applications. -* [profig](https://profig.readthedocs.io/en/latest/) - Config from multiple formats with value conversion. -* [python-decouple](https://github.com/henriquebastos/python-decouple) - Strict separation of settings from code. +* [python-decouple](https://github.com/HBNetwork/python-decouple) - Strict separation of settings from code. ## Cryptography -* [cryptography](https://cryptography.io/en/latest/) - A package designed to expose cryptographic primitives and recipes to Python developers. +* [cryptography](https://github.com/pyca/cryptography) - A package designed to expose cryptographic primitives and recipes to Python developers. * [paramiko](https://github.com/paramiko/paramiko) - The leading native Python SSHv2 protocol library. -* [passlib](https://passlib.readthedocs.io/en/stable/) - Secure password storage/hashing library, very high level. * [pynacl](https://github.com/pyca/pynacl) - Python binding to the Networking and Cryptography (NaCl) library. ## Data Analysis *Libraries for data analyzing.* -* [AWS Data Wrangler](https://github.com/awslabs/aws-data-wrangler) - Pandas on AWS. -* [Blaze](https://github.com/blaze/blaze) - NumPy and Pandas interface to Big Data. -* [Open Mining](https://github.com/mining/mining) - Business Intelligence (BI) in Pandas interface. -* [Optimus](https://github.com/ironmussa/Optimus) - Agile Data Science Workflows made easy with PySpark. -* [Orange](https://orange.biolab.si/) - Data mining, data visualization, analysis and machine learning through visual programming or scripts. -* [Pandas](http://pandas.pydata.org/) - A library providing high-performance, easy-to-use data structures and data analysis tools. +* [pandas](http://pandas.pydata.org/) - A library providing high-performance, easy-to-use data structures and data analysis tools. +* [aws-sdk-pandas](https://github.com/aws/aws-sdk-pandas) - Pandas on AWS. +* [datasette](https://github.com/simonw/datasette) - An open source multi-tool for exploring and publishing data. +* [optimus](https://github.com/hi-primus/optimus) - Agile Data Science Workflows made easy with PySpark. ## Data Validation *Libraries for validating data. Used for forms in many cases.* -* [Cerberus](https://github.com/pyeve/cerberus) - A lightweight and extensible data validation library. -* [colander](https://docs.pylonsproject.org/projects/colander/en/latest/) - Validating and deserializing data obtained via XML, JSON, an HTML form post. -* [jsonschema](https://github.com/Julian/jsonschema) - An implementation of [JSON Schema](http://json-schema.org/) for Python. +* [cerberus](https://github.com/pyeve/cerberus) - A lightweight and extensible data validation library. +* [colander](https://github.com/Pylons/colander) - Validating and deserializing data obtained via XML, JSON, an HTML form post. +* [jsonschema](https://github.com/python-jsonschema/jsonschema) - An implementation of [JSON Schema](http://json-schema.org/) for Python. * [schema](https://github.com/keleshev/schema) - A library for validating Python data structures. -* [Schematics](https://github.com/schematics/schematics) - Data Structure Validation. -* [valideer](https://github.com/podio/valideer) - Lightweight extensible data validation and adaptation library. +* [schematics](https://github.com/schematics/schematics) - Data Structure Validation. * [voluptuous](https://github.com/alecthomas/voluptuous) - A Python data validation library. +* [pydantic](https://github.com/pydantic/pydantic) - Data validation using Python type hints. ## Data Visualization From 8524f28e77fe169bd248c0a18ea7635ee43d9434 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 23 Feb 2024 00:13:04 +0800 Subject: [PATCH 148/154] clean up --- README.md | 228 ++++++++++++++++-------------------------------------- 1 file changed, 66 insertions(+), 162 deletions(-) diff --git a/README.md b/README.md index 9a06e291a..8050c4751 100644 --- a/README.md +++ b/README.md @@ -35,14 +35,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Distribution](#distribution) - [Documentation](#documentation) - [Downloader](#downloader) - - [E-commerce](#e-commerce) - [Editor Plugins and IDEs](#editor-plugins-and-ides) - [Email](#email) - - [Enterprise Application Integrations](#enterprise-application-integrations) - [Environment Management](#environment-management) - - [Files](#file) - - [Foreign Function Interface](#foreign-function-interface) - - [Forms](#forms) + - [File Manipulation](#file-manipulation) - [Functional Programming](#functional-programming) - [Game Development](#game-development) - [Geolocation](#geolocation) @@ -121,9 +117,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms. * [python-ds](https://github.com/prabhupant/python-ds) - A collection of data structure and algorithms for coding interviews. * [sortedcontainers](https://github.com/grantjenks/python-sortedcontainers) - Fast and pure-Python implementation of sorted collections. - * [TheAlgorithms](https://github.com/TheAlgorithms/Python) - All Algorithms implemented in Python. + * [thealgorithms](https://github.com/TheAlgorithms/Python) - All Algorithms implemented in Python. * Design Patterns - * [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. + * [pypattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. * [transitions](https://github.com/pytransitions/transitions) - A lightweight, object-oriented finite state machine implementation. @@ -133,6 +129,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [daphne](https://github.com/django/daphne) - A HTTP, HTTP2 and WebSocket protocol server for ASGI and ASGI-HTTP. * [uvicorn](https://github.com/encode/uvicorn) - A lightning-fast ASGI server implementation, using uvloop and httptools. +* [hypercorn](https://github.com/pgjones/hypercorn) - An ASGI and WSGI Server based on Hyper libraries and inspired by Gunicorn. ## Asynchronous Programming @@ -160,12 +157,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [librosa](https://github.com/librosa/librosa) - Python library for audio and music analysis. * [matchering](https://github.com/sergree/matchering) - A library for automated reference audio mastering. * [mingus](http://bspaans.github.io/python-mingus/) - An advanced music theory and notation package with MIDI file and playback support. - * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. + * [pyaudioanalysis](https://github.com/tyiannak/pyAudioAnalysis) - Audio feature extraction, classification, segmentation and applications. * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. - * [TimeSide](https://github.com/Parisson/TimeSide) - Open web audio processing framework. + * [timeside](https://github.com/Parisson/TimeSide) - Open web audio processing framework. * Metadata * [beets](https://github.com/beetbox/beets) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger. - * [eyeD3](https://github.com/nicfit/eyeD3) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. + * [eyed3](https://github.com/nicfit/eyeD3) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. * [mutagen](https://github.com/quodlibet/mutagen) - A Python module to handle audio metadata. * [tinytag](https://github.com/devsnd/tinytag) - A library for reading music meta data of MP3, OGG, FLAC and Wave files. @@ -190,7 +187,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [buildout](https://github.com/buildout/buildout) - A build system for creating, assembling and deploying applications from multiple parts. * [platformio](https://github.com/platformio/platformio-core) - A console tool to build code with different development platforms. * [pybuilder](https://github.com/pybuilder/pybuilder) - A continuous build tool written in pure Python. -* [SCons](https://github.com/SCons/scons) - A software construction tool. +* [scons](https://github.com/SCons/scons) - A software construction tool. ## Built-in Classes Enhancement @@ -198,9 +195,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [attrs](https://github.com/python-attrs/attrs) - Replacement for `__init__`, `__eq__`, `__repr__`, etc. boilerplate in class definitions. * [bidict](https://github.com/jab/bidict) - Efficient, Pythonic bidirectional map data structures and related functionality.. -* [Box](https://github.com/cdgriffith/Box) - Python dictionaries with advanced dot notation access. +* [box](https://github.com/cdgriffith/Box) - Python dictionaries with advanced dot notation access. * [dataclasses](https://docs.python.org/3/library/dataclasses.html) - (Python standard library) Data classes. -* [DottedDict](https://github.com/carlosescri/DottedDict) - A library that provides a method of accessing lists and dicts with a dotted path notation. +* [dotteddict](https://github.com/carlosescri/DottedDict) - A library that provides a method of accessing lists and dicts with a dotted path notation. ## CMS @@ -218,7 +215,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [django-cache-machine](https://github.com/django-cache-machine/django-cache-machine) - Automatic caching and invalidation for Django models. * [django-cacheops](https://github.com/Suor/django-cacheops) - A slick ORM cache with automatic granular event-driven invalidation. * [dogpile.cache](https://github.com/sqlalchemy/dogpile.cache) - dogpile.cache is a next generation replacement for Beaker made by the same authors. -* [HermesCache](https://pypi.org/project/HermesCache/) - Python caching library with tag-based invalidation and dogpile effect prevention. +* [hermescache](https://pypi.org/project/HermesCache/) - Python caching library with tag-based invalidation and dogpile effect prevention. * [pylibmc](https://github.com/lericson/pylibmc) - A Python wrapper around the [libmemcached](https://libmemcached.org/libMemcached.html) interface. * [python-diskcache](https://github.com/grantjenks/python-diskcache) - SQLite and file backed cache backend with faster lookups than memcached and redis. @@ -249,7 +246,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyre-check](https://github.com/facebook/pyre-check) - Performant type checking. * [typeshed](https://github.com/python/typeshed) - Collection of library stubs for Python, with static types. * Static Type Annotations Generators - * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types. + * [monkeytype](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types. * [pytype](https://github.com/google/pytype) - Pytype checks and infers types for Python code - without requiring type annotations. ## Command-line Interface Development @@ -279,8 +276,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [cookiecutter](https://github.com/cookiecutter/cookiecutter) - A command-line utility that creates projects from cookiecutters (project templates). * [doitlive](https://github.com/sloria/doitlive) - A tool for live presentations in the terminal. * [howdoi](https://github.com/gleitz/howdoi) - Instant coding answers via the command line. - * [Invoke](https://github.com/pyinvoke/invoke) - A tool for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks. - * [PathPicker](https://github.com/facebook/PathPicker) - Select files out of bash output. + * [invoke](https://github.com/pyinvoke/invoke) - A tool for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks. + * [pathpicker](https://github.com/facebook/PathPicker) - Select files out of bash output. * [thefuck](https://github.com/nvbn/thefuck) - Correcting your previous console command. * [tmuxp](https://github.com/tmux-python/tmuxp) - A [tmux](https://github.com/tmux/tmux) session manager. * [try](https://github.com/timofurrer/try) - A dead simple CLI to try out python packages - it's never been easier. @@ -295,9 +292,9 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for Computer Vision.* -* [EasyOCR](https://github.com/JaidedAI/EasyOCR) - Ready-to-use OCR with 40+ languages supported. -* [Kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. -* [OpenCV](https://opencv.org/) - Open Source Computer Vision Library. +* [easyocr](https://github.com/JaidedAI/EasyOCR) - Ready-to-use OCR with 40+ languages supported. +* [kornia](https://github.com/kornia/kornia/) - Open Source Differentiable Computer Vision Library for PyTorch. +* [opencv](https://opencv.org/) - Open Source Computer Vision Library. * [pytesseract](https://github.com/madmaze/pytesseract) - A wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). * [tesserocr](https://github.com/sirfz/tesserocr) - Another simple, Pillow-friendly, wrapper around the `tesseract-ocr` API for OCR. @@ -341,20 +338,18 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for visualizing data. Also see [awesome-javascript](https://github.com/sorrycc/awesome-javascript#data-visualization).* -* [Altair](https://github.com/altair-viz/altair) - Declarative statistical visualization library for Python. -* [Bokeh](https://github.com/bokeh/bokeh) - Interactive Web Plotting for Python. +* [altair](https://github.com/altair-viz/altair) - Declarative statistical visualization library for Python. +* [bokeh](https://github.com/bokeh/bokeh) - Interactive Web Plotting for Python. * [bqplot](https://github.com/bloomberg/bqplot) - Interactive Plotting Library for the Jupyter Notebook. -* [Cartopy](https://github.com/SciTools/cartopy) - A cartographic python library with matplotlib support. -* [Dash](https://plot.ly/products/dash/) - Built on top of Flask, React and Plotly aimed at analytical web applications. - * [awesome-dash](https://github.com/Acrotrend/awesome-dash) +* [cartopy](https://github.com/SciTools/cartopy) - A cartographic python library with matplotlib support. * [diagrams](https://github.com/mingrammer/diagrams) - Diagram as Code. -* [Matplotlib](http://matplotlib.org/) - A Python 2D plotting library. +* [matplotlib](https://github.com/matplotlib/matplotlib) - A Python 2D plotting library. * [plotnine](https://github.com/has2k1/plotnine) - A grammar of graphics for Python based on ggplot2. -* [Pygal](http://www.pygal.org/en/latest/) - A Python SVG Charts Creator. -* [PyGraphviz](https://pypi.org/project/pygraphviz/) - Python interface to [Graphviz](http://www.graphviz.org/). -* [PyQtGraph](http://www.pyqtgraph.org/) - Interactive and realtime 2D/3D/Image plotting and science/engineering widgets. -* [Seaborn](https://github.com/mwaskom/seaborn) - Statistical data visualization using Matplotlib. -* [VisPy](https://github.com/vispy/vispy) - High-performance scientific visualization based on OpenGL. +* [pygal](https://github.com/Kozea/pygal) - A Python SVG Charts Creator. +* [pygraphviz](https://github.com/pygraphviz/pygraphviz/) - Python interface to [Graphviz](http://www.graphviz.org/). +* [pyqtgraph](https://github.com/pyqtgraph/pyqtgraph) - Interactive and realtime 2D/3D/Image plotting and science/engineering widgets. +* [seaborn](https://github.com/mwaskom/seaborn) - Statistical data visualization using Matplotlib. +* [vispy](https://github.com/vispy/vispy) - High-performance scientific visualization based on OpenGL. ## Database @@ -362,7 +357,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pickleDB](https://github.com/patx/pickledb) - A simple and lightweight key-value store for Python. * [tinydb](https://github.com/msiemens/tinydb) - A tiny, document-oriented database. -* [ZODB](https://github.com/zopefoundation/ZODB) - A native object database for Python. A key-value and object graph database. +* [zodb](https://github.com/zopefoundation/ZODB) - A native object database for Python. A key-value and object graph database. ## Database Drivers @@ -370,7 +365,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * MySQL - [awesome-mysql](http://shlomi-noach.github.io/awesome-mysql/) * [mysqlclient](https://github.com/PyMySQL/mysqlclient) - MySQL connector with Python 3 support ([mysql-python](https://sourceforge.net/projects/mysql-python/) fork). - * [PyMySQL](https://github.com/PyMySQL/PyMySQL) - A pure Python MySQL driver compatible to mysql-python. + * [pymysql](https://github.com/PyMySQL/PyMySQL) - A pure Python MySQL driver compatible to mysql-python. * PostgreSQL - [awesome-postgres](https://github.com/dhamaniasad/awesome-postgres) * [psycopg](https://github.com/psycopg/psycopg) - The most popular PostgreSQL adapter for Python. * SQlite - [awesome-sqlite](https://github.com/planetopendata/awesome-sqlite) @@ -391,16 +386,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with dates and times.* -* [Arrow](https://arrow.readthedocs.io/en/latest/) - A Python library that offers a sensible and human-friendly approach to creating, manipulating, formatting and converting dates, times and timestamps. -* [Chronyk](https://github.com/KoffeinFlummi/Chronyk) - A Python 3 library for parsing human-written times and dates. +* [arrow](https://github.com/arrow-py/arrow) - A Python library that offers a sensible and human-friendly approach to creating, manipulating, formatting and converting dates, times and timestamps. * [dateutil](https://github.com/dateutil/dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/3/library/datetime.html) module. -* [delorean](https://github.com/myusuf3/delorean/) - A library for clearing up the inconvenient truths that arise dealing with datetimes. -* [maya](https://github.com/timofurrer/maya) - Datetimes for Humans. -* [moment](https://github.com/zachwill/moment) - A Python library for dealing with dates/times. Inspired by [Moment.js](http://momentjs.com/). -* [Pendulum](https://github.com/sdispater/pendulum) - Python datetimes made easy. -* [PyTime](https://github.com/shinux/PyTime) - An easy-to-use Python module which aims to operate date/time/datetime by string. -* [pytz](https://launchpad.net/pytz) - World timezone definitions, modern and historical. Brings the [tz database](https://en.wikipedia.org/wiki/Tz_database) into Python. -* [when.py](https://github.com/dirn/When.py) - Providing user-friendly functions to help perform common date and time actions. +* [pendulum](https://github.com/sdispater/pendulum) - Python datetimes made easy. +* [pytz](https://pypi.org/project/pytz/) - World timezone definitions, modern and historical. Brings the [tz database](https://en.wikipedia.org/wiki/Tz_database) into Python. ## Debugging Tools @@ -408,24 +397,16 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * pdb-like Debugger * [ipdb](https://github.com/gotcha/ipdb) - IPython-enabled [pdb](https://docs.python.org/3/library/pdb.html). - * [pdb++](https://github.com/antocuni/pdb) - Another drop-in replacement for pdb. * [pudb](https://github.com/inducer/pudb) - A full-screen, console-based Python debugger. - * [wdb](https://github.com/Kozea/wdb) - An improbable web debugger through WebSockets. * Tracing - * [lptrace](https://github.com/khamidou/lptrace) - [strace](http://man7.org/linux/man-pages/man1/strace.1.html) for Python programs. * [manhole](https://github.com/ionelmc/python-manhole) - Debugging UNIX socket connections and present the stacktraces for all threads and an interactive prompt. - * [pyringe](https://github.com/google/pyringe) - Debugger capable of attaching to and injecting code into Python processes. * [python-hunter](https://github.com/ionelmc/python-hunter) - A flexible code tracing toolkit. * Profiler - * [line_profiler](https://github.com/rkern/line_profiler) - Line-by-line profiling. - * [memory_profiler](https://github.com/fabianp/memory_profiler) - Monitor Memory usage of Python code. * [py-spy](https://github.com/benfred/py-spy) - A sampling profiler for Python programs. Written in Rust. - * [pyflame](https://github.com/uber/pyflame) - A ptracing profiler For Python. * [vprof](https://github.com/nvdv/vprof) - Visual Python profiler. * Others * [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar) - Display various debug information for Django. - * [django-devserver](https://github.com/dcramer/django-devserver) - A drop-in replacement for Django's runserver. - * [flask-debugtoolbar](https://github.com/mgood/flask-debugtoolbar) - A port of the django-debug-toolbar to flask. + * [flask-debugtoolbar](https://github.com/pallets-eco/flask-debugtoolbar) - A port of the django-debug-toolbar to flask. * [icecream](https://github.com/gruns/icecream) - Inspect variables, expressions, and program execution with a single, simple function call. * [pyelftools](https://github.com/eliben/pyelftools) - Parsing and analyzing ELF files and DWARF debugging information. @@ -433,14 +414,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Frameworks for Neural Networks and Deep Learning. Also see [awesome-deep-learning](https://github.com/ChristosChristofidis/awesome-deep-learning).* -* [caffe](https://github.com/BVLC/caffe) - A fast open framework for deep learning.. * [keras](https://github.com/keras-team/keras) - A high-level neural networks library and capable of running on top of either TensorFlow or Theano. -* [mxnet](https://github.com/dmlc/mxnet) - A deep learning framework designed for both efficiency and flexibility. * [pytorch](https://github.com/pytorch/pytorch) - Tensors and Dynamic neural networks in Python with strong GPU acceleration. -* [SerpentAI](https://github.com/SerpentAI/SerpentAI) - Game agent framework. Use any video game as a deep learning sandbox. +* [pytorch-lightning](https://github.com/Lightning-AI/pytorch-lightning) - Deep learning framework to train, deploy, and ship AI products Lightning fast. * [tensorflow](https://github.com/tensorflow/tensorflow) - The most popular Deep Learning framework created by Google. -* [Theano](https://github.com/Theano/Theano) - A library for fast numerical computation. -* [lightning](https://github.com/Lightning-AI/lightning) - Deep learning framework to train, deploy, and ship AI products Lightning fast. +* [theano](https://github.com/Theano/Theano) - A library for fast numerical computation. ## DevOps Tools @@ -448,23 +426,19 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Configuration Management * [ansible](https://github.com/ansible/ansible) - A radically simple IT automation platform. - * [cloudinit](https://cloudinit.readthedocs.io/en/latest/) - A multi-distribution package that handles early initialization of a cloud instance. - * [OpenStack](https://www.openstack.org/) - Open source software for building private and public clouds. - * [pyinfra](https://github.com/Fizzadar/pyinfra) - A versatile CLI tools and python libraries to automate infrastructure. + * [cloudinit](https://github.com/canonical/cloud-init) - A multi-distribution package that handles early initialization of a cloud instance. + * [openstack](https://www.openstack.org/) - Open source software for building private and public clouds. + * [pyinfra](https://github.com/pyinfra-dev/pyinfra) - A versatile CLI tools and python libraries to automate infrastructure. * [saltstack](https://github.com/saltstack/salt) - Infrastructure automation and management system. * SSH-style Deployment * [cuisine](https://github.com/sebastien/cuisine) - Chef-like functionality for Fabric. * [fabric](https://github.com/fabric/fabric) - A simple, Pythonic tool for remote execution and deployment. - * [fabtools](https://github.com/fabtools/fabtools) - Tools for writing awesome Fabric files. * Process Management - * [honcho](https://github.com/nickstenning/honcho) - A Python clone of [Foreman](https://github.com/ddollar/foreman), for managing Procfile-based applications. * [supervisor](https://github.com/Supervisor/supervisor) - Supervisor process control system for UNIX. * Monitoring * [psutil](https://github.com/giampaolo/psutil) - A cross-platform process and system utilities module. * Backup - * [BorgBackup](https://www.borgbackup.org/) - A deduplicating archiver with compression and encryption. -* Others - * [docker-compose](https://docs.docker.com/compose/) - Fast, isolated development environments using [Docker](https://www.docker.com/). + * [borg](https://github.com/borgbackup/borg) - A deduplicating archiver with compression and encryption. ## Distributed Computing @@ -473,8 +447,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Batch Processing * [dask](https://github.com/dask/dask) - A flexible parallel computing library for analytic computing. * [luigi](https://github.com/spotify/luigi) - A module that helps you build complex pipelines of batch jobs. - * [mrjob](https://github.com/Yelp/mrjob) - Run MapReduce jobs on Hadoop or Amazon Web Services. - * [PySpark](https://pypi.org/project/pyspark/) - [Apache Spark](https://spark.apache.org/) Python API. + * [PySpark](https://github.com/apache/spark) - [Apache Spark](https://spark.apache.org/) Python API. * [Ray](https://github.com/ray-project/ray/) - A system for parallel and distributed Python that unifies the machine learning ecosystem. * Stream Processing * [faust](https://github.com/robinhood/faust) - A stream processing library, porting the ideas from [Kafka Streams](https://kafka.apache.org/documentation/streams/) to Python. @@ -484,13 +457,10 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries to create packaged executables for release distribution.* -* [dh-virtualenv](https://github.com/spotify/dh-virtualenv) - Build and distribute a virtualenv as a Debian package. -* [Nuitka](http://nuitka.net/) - Compile scripts, modules, packages to an executable or extension module. -* [py2app](http://pythonhosted.org/py2app/) - Freezes Python scripts (Mac OS X). -* [py2exe](http://www.py2exe.org/) - Freezes Python scripts (Windows). +* [py2app](https://github.com/ronaldoussoren/py2app) - Freezes Python scripts (Mac OS X). +* [py2exe](https://github.com/py2exe/py2exe) - Freezes Python scripts (Windows). * [pyarmor](https://github.com/dashingsoft/pyarmor) - A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts. * [PyInstaller](https://github.com/pyinstaller/pyinstaller) - Converts Python programs into stand-alone executables (cross-platform). -* [pynsist](http://pynsist.readthedocs.io/en/latest/) - A tool to build Windows installers, installers bundle Python itself. * [shiv](https://github.com/linkedin/shiv) - A command line utility for building fully self-contained zipapps (PEP 441), but with all their dependencies included. ## Documentation @@ -500,7 +470,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [sphinx](https://github.com/sphinx-doc/sphinx/) - Python Documentation generator. * [awesome-sphinxdoc](https://github.com/yoloseem/awesome-sphinxdoc) * [pdoc](https://github.com/mitmproxy/pdoc) - Epydoc replacement to auto generate API documentation for Python libraries. -* [pycco](https://github.com/pycco-docs/pycco) - The literate-programming-style documentation generator. ## Downloader @@ -508,32 +477,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [akshare](https://github.com/jindaxiang/akshare) - A financial data interface library, built for human beings! * [s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront. -* [s4cmd](https://github.com/bloomreach/s4cmd) - Super S3 command line tool, good for higher performance. -* [you-get](https://you-get.org/) - A YouTube/Youku/Niconico video downloader written in Python 3. -* [youtube-dl](https://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube. - -## E-commerce - -*Frameworks and libraries for e-commerce and payments.* - -* [alipay](https://github.com/lxneng/alipay) - Unofficial Alipay API for Python. -* [Cartridge](https://github.com/stephenmcd/cartridge) - A shopping cart app built using the Mezzanine. -* [django-oscar](http://oscarcommerce.com/) - An open-source e-commerce framework for Django. -* [django-shop](https://github.com/awesto/django-shop) - A Django based shop system. -* [forex-python](https://github.com/MicroPyramid/forex-python) - Foreign exchange rates, Bitcoin price index and currency conversion. -* [merchant](https://github.com/agiliq/merchant) - A Django app to accept payments from various payment processors. -* [money](https://github.com/carlospalol/money) - `Money` class with optional CLDR-backed locale-aware formatting and an extensible currency exchange. -* [python-currencies](https://github.com/Alir3z4/python-currencies) - Display money format and its filthy currencies. -* [saleor](https://saleor.io/) - Headless open-source e-commerce platform. -* [shoop](https://www.shuup.com/) - An open source E-Commerce platform based on Django. +* [youtube-dl](https://github.com/ytdl-org/youtube-dl/) - A command-line program to download videos from YouTube and other video sites. ## Editor Plugins and IDEs * Emacs * [elpy](https://github.com/jorgenschaefer/elpy) - Emacs Python Development Environment. -* Sublime Text - * [anaconda](https://github.com/DamnWidget/anaconda) - Anaconda turns your Sublime Text 3 in a full featured Python development IDE. - * [SublimeJEDI](https://github.com/srusskih/SublimeJEDI) - A Sublime Text plugin to the awesome auto-complete library Jedi. * Vim * [jedi-vim](https://github.com/davidhalter/jedi-vim) - Vim bindings for the Jedi auto-completion library for Python. * [python-mode](https://github.com/python-mode/python-mode) - An all in one plugin for turning Vim into a Python IDE. @@ -560,12 +509,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [flanker](https://github.com/mailgun/flanker) - An email address and Mime parsing library. * [mailer](https://github.com/marrow/mailer) - High-performance extensible mail delivery framework. -## Enterprise Application Integrations - -*Platforms and tools for systems integrations in enterprise environments* - -* [Zato](https://zato.io) - ESB, SOA, REST, APIs and Cloud Integrations in Python. - ## Environment Management *Libraries for Python version and virtual environment management.* @@ -573,49 +516,26 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [pyenv](https://github.com/pyenv/pyenv) - Simple Python version management. * [virtualenv](https://github.com/pypa/virtualenv) - A tool to create isolated Python environments. -## File +## File Manipulation -*Libraries for file manipulation and MIME type detection.* +*Libraries for file manipulation.* * [mimetypes](https://docs.python.org/3/library/mimetypes.html) - (Python standard library) Map filenames to MIME types. -* [path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/3/library/os.path.html). * [pathlib](https://docs.python.org/3/library/pathlib.html) - (Python standard library) An cross-platform, object-oriented path library. -* [PyFilesystem2](https://github.com/pyfilesystem/pyfilesystem2) - Python's filesystem abstraction layer. +* [path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/3/library/os.path.html). * [python-magic](https://github.com/ahupp/python-magic) - A Python interface to the libmagic file type identification library. -* [Unipath](https://github.com/mikeorr/Unipath) - An object-oriented approach to file/directory operations. * [watchdog](https://github.com/gorakhargosh/watchdog) - API and shell utilities to monitor file system events. -## Foreign Function Interface - -*Libraries for providing foreign function interface.* - -* [cffi](https://pypi.org/project/cffi/) - Foreign Function Interface for Python calling C code. -* [ctypes](https://docs.python.org/3/library/ctypes.html) - (Python standard library) Foreign Function Interface for Python calling C code. -* [PyCUDA](https://mathema.tician.de/software/pycuda/) - A Python wrapper for Nvidia's CUDA API. -* [SWIG](http://www.swig.org/Doc1.3/Python.html) - Simplified Wrapper and Interface Generator. - -## Forms - -*Libraries for working with forms.* - -* [Deform](https://github.com/Pylons/deform) - Python HTML form generation library influenced by the formish form generation library. -* [django-bootstrap3](https://github.com/dyve/django-bootstrap3) - Bootstrap 3 integration with Django. -* [django-bootstrap4](https://github.com/zostera/django-bootstrap4) - Bootstrap 4 integration with Django. -* [django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms) - A Django app which lets you create beautiful forms in a very elegant and DRY way. -* [django-remote-forms](https://github.com/WiserTogether/django-remote-forms) - A platform independent Django form serializer. -* [WTForms](https://github.com/wtforms/wtforms) - A flexible forms validation and rendering library. - ## Functional Programming *Functional Programming with Python.* -* [Coconut](https://github.com/evhub/coconut) - A variant of Python built for simple, elegant, Pythonic functional programming. -* [CyToolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of `Toolz`: High performance functional utilities. -* [fn.py](https://github.com/kachayev/fn.py) - Functional programming in Python: implementation of missing features to enjoy FP. +* [coconut](https://github.com/evhub/coconut) - A variant of Python built for simple, elegant, Pythonic functional programming. * [funcy](https://github.com/Suor/funcy) - A fancy and practical functional tools. * [more-itertools](https://github.com/erikrose/more-itertools) - More routines for operating on iterables, beyond `itertools`. * [returns](https://github.com/dry-python/returns) - A set of type-safe monads, transformers, and composition utilities. -* [Toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. +* [cytoolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of `Toolz`: High performance functional utilities. +* [toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. ## GUI Development @@ -643,9 +563,6 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with GraphQL.* * [graphene](https://github.com/graphql-python/graphene/) - GraphQL framework for Python. -* [tartiflette-aiohttp](https://github.com/tartiflette/tartiflette-aiohttp/) - An `aiohttp`-based wrapper for Tartiflette to expose GraphQL APIs over HTTP. -* [tartiflette-asgi](https://github.com/tartiflette/tartiflette-asgi/) - ASGI support for the Tartiflette GraphQL engine. -* [tartiflette](https://tartiflette.io) - SDL-first GraphQL engine implementation for Python 3.6+ and asyncio. ## Game Development @@ -666,21 +583,20 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for geocoding addresses and working with latitudes and longitudes.* * [django-countries](https://github.com/SmileyChris/django-countries) - A Django app that provides a country field for models and forms. -* [GeoDjango](https://docs.djangoproject.com/en/dev/ref/contrib/gis/) - A world-class geographic web framework. -* [GeoIP](https://github.com/maxmind/geoip-api-python) - Python API for MaxMind GeoIP Legacy Database. -* [geojson](https://github.com/frewsxcv/python-geojson) - Python bindings and utilities for GeoJSON. +* [geodjango](https://docs.djangoproject.com/en/dev/ref/contrib/gis/) - A world-class geographic web framework. +* [geojson](https://github.com/jazzband/geojson) - Python bindings and utilities for GeoJSON. * [geopy](https://github.com/geopy/geopy) - Python Geocoding Toolbox. ## HTML Manipulation *Libraries for working with HTML and XML.* -* [BeautifulSoup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) - Providing Pythonic idioms for iterating, searching, and modifying HTML or XML. +* [beautifulsoup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) - Providing Pythonic idioms for iterating, searching, and modifying HTML or XML. * [bleach](https://github.com/mozilla/bleach) - A whitelist-based HTML sanitization and text linkification library. * [cssutils](https://pypi.org/project/cssutils/) - A CSS library for Python. * [html5lib](https://github.com/html5lib/html5lib-python) - A standards-compliant library for parsing and serializing HTML documents and fragments. * [lxml](http://lxml.de/) - A very fast, easy-to-use and versatile library for handling HTML and XML. -* [MarkupSafe](https://github.com/pallets/markupsafe) - Implements a XML/HTML/XHTML Markup safe string for Python. +* [markupsafe](https://github.com/pallets/markupsafe) - Implements a XML/HTML/XHTML Markup safe string for Python. * [pyquery](https://github.com/gawel/pyquery) - A jQuery-like library for parsing HTML. * [untangle](https://github.com/stchris/untangle) - Converts XML documents to Python objects for easy access. * [WeasyPrint](http://weasyprint.org) - A visual rendering engine for HTML and CSS that can export to PDF. @@ -691,60 +607,48 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for working with HTTP.* -* [grequests](https://github.com/spyoungtech/grequests) - requests + gevent for asynchronous HTTP requests. -* [httplib2](https://github.com/httplib2/httplib2) - Comprehensive HTTP client library. * [httpx](https://github.com/encode/httpx) - A next generation HTTP client for Python. * [requests](https://github.com/psf/requests) - HTTP Requests for Humans. * [treq](https://github.com/twisted/treq) - Python requests like API built on top of Twisted's HTTP client. -* [urllib3](https://github.com/shazow/urllib3) - A HTTP library with thread-safe connection pooling, file post support, sanity friendly. +* [urllib3](https://github.com/urllib3/urllib3) - A HTTP library with thread-safe connection pooling, file post support, sanity friendly. ## Hardware *Libraries for programming with hardware.* -* [ino](http://inotool.org/) - Command line toolkit for working with [Arduino](https://www.arduino.cc/). * [keyboard](https://github.com/boppreh/keyboard) - Hook and simulate global keyboard events on Windows and Linux. * [mouse](https://github.com/boppreh/mouse) - Hook and simulate global mouse events on Windows and Linux. -* [Pingo](http://www.pingo.io/) - Pingo provides a uniform API to program devices like the Raspberry Pi, pcDuino, Intel Galileo, etc. -* [PyUserInput](https://github.com/SavinaRoja/PyUserInput) - A module for cross-platform control of the mouse and keyboard. +* [pynput](https://github.com/moses-palmer/pynput) - A library to control and monitor input devices. * [scapy](https://github.com/secdev/scapy) - A brilliant packet manipulation library. ## Image Processing *Libraries for manipulating images.* -* [hmap](https://github.com/rossgoodwin/hmap) - Image histogram remapping. -* [imgSeek](https://sourceforge.net/projects/imgseek/) - A project for searching a collection of images using visual similarity. -* [nude.py](https://github.com/hhatto/nude.py) - Nudity detection. -* [pagan](https://github.com/daboth/pagan) - Retro identicon (Avatar) generation based on input string and hash. * [pillow](https://github.com/python-pillow/Pillow) - Pillow is the friendly [PIL](http://www.pythonware.com/products/pil/) fork. * [python-barcode](https://github.com/WhyNotHugo/python-barcode) - Create barcodes in Python with no extra dependencies. -* [PyMatting](http://github.com/pymatting/pymatting) - A library for alpha matting. +* [pymatting](http://github.com/pymatting/pymatting) - A library for alpha matting. * [python-qrcode](https://github.com/lincolnloop/python-qrcode) - A pure Python QR Code generator. * [pywal](https://github.com/dylanaraps/pywal) - A tool that generates color schemes from images. * [pyvips](https://github.com/libvips/pyvips) - A fast image processing library with low memory needs. -* [Quads](https://github.com/fogleman/Quads) - Computer art based on quadtrees. +* [quads](https://github.com/fogleman/Quads) - Computer art based on quadtrees. * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. * [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images. -* [wand](https://github.com/dahlia/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick. +* [wand](https://github.com/emcconville/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick. ## Implementations *Implementations of Python.* -* [CLPython](https://github.com/metawilm/cl-python) - Implementation of the Python programming language written in Common Lisp. -* [CPython](https://github.com/python/cpython) - **Default, most widely used implementation of the Python programming language written in C.** -* [Cython](http://cython.org/) - Optimizing Static Compiler for Python. -* [Grumpy](https://github.com/google/grumpy) - More compiler than interpreter as more powerful CPython2.7 replacement (alpha). -* [IronPython](https://github.com/IronLanguages/ironpython3) - Implementation of the Python programming language written in C#. -* [Jython](https://hg.python.org/jython) - Implementation of Python programming language written in Java for the JVM. -* [MicroPython](https://github.com/micropython/micropython) - A lean and efficient Python programming language implementation. -* [Numba](http://numba.pydata.org/) - Python JIT compiler to LLVM aimed at scientific Python. -* [PeachPy](https://github.com/Maratyszcza/PeachPy) - x86-64 assembler embedded in Python. -* [Pyjion](https://github.com/Microsoft/Pyjion) - A JIT for Python based upon CoreCLR. -* [PyPy](https://foss.heptapod.net/pypy/pypy) - A very fast and compliant implementation of the Python language. -* [Pyston](https://github.com/pyston/pyston/) - A Python implementation using JIT techniques. -* [Stackless Python](https://github.com/stackless-dev/stackless) - An enhanced version of the Python programming language. +* [cpython](https://github.com/python/cpython) - **Default, most widely used implementation of the Python programming language written in C.** +* [cython](https://github.com/cython/cython) - Optimizing Static Compiler for Python. +* [clpython](https://github.com/metawilm/cl-python) - Implementation of the Python programming language written in Common Lisp. +* [ironpython](https://github.com/IronLanguages/ironpython3) - Implementation of the Python programming language written in C#. +* [micropython](https://github.com/micropython/micropython) - A lean and efficient Python programming language implementation. +* [numba](https://github.com/numba/numba) - Python JIT compiler to LLVM aimed at scientific Python. +* [peachpy](https://github.com/Maratyszcza/PeachPy) - x86-64 assembler embedded in Python. +* [pypy](https://foss.heptapod.net/pypy/pypy) - A very fast and compliant implementation of the Python language. +* [pyston](https://github.com/pyston/pyston/) - A Python implementation using JIT techniques. ## Interactive Interpreter From 433e90d13b16f95298b987441453c3b625692ef3 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 23 Feb 2024 00:31:03 +0800 Subject: [PATCH 149/154] clean up --- README.md | 66 ++++++++++++++----------------------------------------- 1 file changed, 17 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index 8050c4751..8dfaf06f2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Awesome Python [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) -A curated list of awesome Python frameworks, libraries, software and resources. +An opinionated curated list of awesome Python frameworks, libraries, software and resources. Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). @@ -90,10 +90,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [WebSocket](#websocket) - [WSGI Servers](#wsgi-servers) - [Resources](#resources) - - [Books](#books) - [Newsletters](#newsletters) - [Podcasts](#podcasts) - - [Websites](#websites) - [Contributing](#contributing) --- @@ -460,7 +458,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [py2app](https://github.com/ronaldoussoren/py2app) - Freezes Python scripts (Mac OS X). * [py2exe](https://github.com/py2exe/py2exe) - Freezes Python scripts (Windows). * [pyarmor](https://github.com/dashingsoft/pyarmor) - A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts. -* [PyInstaller](https://github.com/pyinstaller/pyinstaller) - Converts Python programs into stand-alone executables (cross-platform). +* [pyinstaller](https://github.com/pyinstaller/pyinstaller) - Converts Python programs into stand-alone executables (cross-platform). * [shiv](https://github.com/linkedin/shiv) - A command line utility for building fully self-contained zipapps (PEP 441), but with all their dependencies included. ## Documentation @@ -850,8 +848,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries for building RESTful APIs.* * Django - * [django-rest-framework](http://www.django-rest-framework.org/) - A powerful and flexible toolkit to build web APIs. - * [django-tastypie](http://tastypieapi.org/) - Creating delicious APIs for Django apps. + * [django-rest-framework](https://github.com/encode/django-rest-framework) - A powerful and flexible toolkit to build web APIs. + * [django-tastypie](https://github.com/django-tastypie/django-tastypie) - Creating delicious APIs for Django apps. * Flask * [eve](https://github.com/pyeve/eve) - REST API framework powered by Flask, MongoDB and good intentions. * [flask-api](https://github.com/flask-api/flask-api) - Browsable Web APIs for Flask. @@ -859,13 +857,11 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Pyramid * [cornice](https://github.com/Cornices/cornice) - A RESTful framework for Pyramid. * Framework agnostic - * [apistar](https://github.com/encode/apistar) - A smart Web API framework, designed for Python 3. * [falcon](https://github.com/falconry/falcon) - A high-performance framework for building cloud APIs and web app backends. * [fastapi](https://github.com/tiangolo/fastapi) - A modern, fast, web framework for building APIs with Python 3.6+ based on standard Python type hints. * [hug](https://github.com/hugapi/hug) - A Python 3 framework for cleanly exposing APIs. * [sandman2](https://github.com/jeffknupp/sandman2) - Automated REST APIs for existing database-driven systems. - * [sanic](https://github.com/huge-success/sanic) - A Python 3.6+ web server and web framework that's written to go fast. - * [vibora](https://docs.vibora.io/) - Fast, efficient and asynchronous Web framework inspired by Flask. + * [sanic](https://github.com/sanic-org/sanic) - A Python 3.6+ web server and web framework that's written to go fast. ## Robotics @@ -1135,30 +1131,26 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Libraries to automate web scraping.* -* [cola](https://github.com/chineking/cola) - A distributed crawling framework. -* [feedparser](https://pythonhosted.org/feedparser/) - Universal feed parser. +* [feedparser](https://github.com/kurtmckee/feedparser) - Universal feed parser. * [grab](https://github.com/lorien/grab) - Site scraping framework. -* [MechanicalSoup](https://github.com/MechanicalSoup/MechanicalSoup) - A Python library for automating interaction with websites. -* [portia](https://github.com/scrapinghub/portia) - Visual scraping for Scrapy. -* [pyspider](https://github.com/binux/pyspider) - A powerful spider system. -* [robobrowser](https://github.com/jmcarp/robobrowser) - A simple, Pythonic library for browsing the web without a standalone web browser. -* [scrapy](https://scrapy.org/) - A fast high-level screen scraping and web crawling framework. +* [mechanicalsoup](https://github.com/MechanicalSoup/MechanicalSoup) - A Python library for automating interaction with websites. +* [scrapy](https://github.com/scrapy/scrapy) - A fast high-level screen scraping and web crawling framework. ## Web Frameworks *Traditional full stack web frameworks. Also see [RESTful API](https://github.com/vinta/awesome-python#restful-api).* * Synchronous - * [Django](https://www.djangoproject.com/) - The most popular web framework in Python. + * [django](https://github.com/django/django) - The most popular web framework in Python. * [awesome-django](https://github.com/shahraizali/awesome-django) * [awesome-django](https://github.com/wsvincent/awesome-django) - * [Flask](http://flask.pocoo.org/) - A microframework for Python. + * [flask](https://github.com/pallets/flask) - A microframework for Python. * [awesome-flask](https://github.com/humiaozuzu/awesome-flask) - * [Pyramid](https://pylonsproject.org/) - A small, fast, down-to-earth, open source Python web framework. + * [pyramid](https://pylonsproject.org/) - A small, fast, down-to-earth, open source Python web framework. * [awesome-pyramid](https://github.com/uralbash/awesome-pyramid) - * [Masonite](https://github.com/MasoniteFramework/masonite) - The modern and developer centric Python web framework. + * [masonite](https://github.com/MasoniteFramework/masonite) - The modern and developer centric Python web framework. * Asynchronous - * [Tornado](http://www.tornadoweb.org/en/latest/) - A web framework and asynchronous networking library. + * [tornado](https://github.com/tornadoweb/tornado) - A web framework and asynchronous networking library. ## WebSocket @@ -1172,9 +1164,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *WSGI-compatible web servers.* -* [bjoern](https://github.com/jonashaag/bjoern) - Asynchronous, very fast and written in C. * [gunicorn](https://github.com/benoitc/gunicorn) - Pre-forked, ported from Ruby's Unicorn project. -* [uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/) - A project aims at developing a full stack for building hosting services, written in C. +* [uwsgi](https://uwsgi-docs.readthedocs.io/en/latest/) - A project aims at developing a full stack for building hosting services, written in C. * [waitress](https://github.com/Pylons/waitress) - Multi-threaded, powers Pyramid. * [werkzeug](https://github.com/pallets/werkzeug) - A WSGI utility library for Python that powers Flask and can easily be embedded into your own projects. @@ -1182,48 +1173,25 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). Where to discover learning resources or new Python libraries. -## Books - -- [Fluent Python](https://www.oreilly.com/library/view/fluent-python/9781491946237/) -- [Think Python](https://greenteapress.com/wp/think-python-2e/) - -## Websites - -* Tutorials - * [Full Stack Python](https://www.fullstackpython.com/) - * [Python Cheatsheet](https://www.pythoncheatsheet.org/) - * [Real Python](https://realpython.com) - * [The Hitchhiker’s Guide to Python](https://docs.python-guide.org/) - * [Ultimate Python study guide](https://github.com/huangsam/ultimate-python) -* Libraries - * [Awesome Python @LibHunt](https://python.libhunt.com/) -* Others - * [Python ZEEF](https://python.zeef.com/alan.richmond) - * [What the f*ck Python!](https://github.com/satwikkansal/wtfpython) - ## Newsletters * [Awesome Python Newsletter](http://python.libhunt.com/newsletter) -* [Pycoder's Weekly](http://pycoders.com/) +* [Pycoder's Weekly](https://pycoders.com/) * [Python Tricks](https://realpython.com/python-tricks/) -* [Python Weekly](http://www.pythonweekly.com/) +* [Python Weekly](https://www.pythonweekly.com/) ## Podcasts * [Django Chat](https://djangochat.com/) -* [Podcast.\_\_init__](https://podcastinit.com/) * [Python Bytes](https://pythonbytes.fm) -* [Running in Production](https://runninginproduction.com/) * [Talk Python To Me](https://talkpython.fm/) -* [Test and Code](https://testandcode.com/) +* [Python Test](https://podcast.pythontest.com/) * [The Real Python Podcast](https://realpython.com/podcasts/rpp/) # Contributing Your contributions are always welcome! Please take a look at the [contribution guidelines](https://github.com/vinta/awesome-python/blob/master/CONTRIBUTING.md) first. -I will keep some pull requests open if I'm not sure whether those libraries are awesome, you could [vote for them](https://github.com/vinta/awesome-python/pulls) by adding :+1: to them. Pull requests will be merged when their votes reach **20**. - - - - If you have any question about this opinionated list, do not hesitate to contact me [@VintaChen](https://twitter.com/VintaChen) on Twitter or open an issue on GitHub. From 3d9af26937d19e7eed1a5d0d1902a4e9cb2a194c Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 23 Feb 2024 00:33:07 +0800 Subject: [PATCH 150/154] update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dfaf06f2..778fc8b2f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Awesome Python [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) -An opinionated curated list of awesome Python frameworks, libraries, software and resources. +An opinionated list of awesome Python frameworks, libraries, software and resources. Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). From 0b8a5d1d9355c1706e2d6c7f3c570e21e1fb1293 Mon Sep 17 00:00:00 2001 From: Adam Ross <14985050+R055A@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:52:24 +1200 Subject: [PATCH 151/154] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 778fc8b2f..afcab0dbf 100644 --- a/README.md +++ b/README.md @@ -415,6 +415,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [keras](https://github.com/keras-team/keras) - A high-level neural networks library and capable of running on top of either TensorFlow or Theano. * [pytorch](https://github.com/pytorch/pytorch) - Tensors and Dynamic neural networks in Python with strong GPU acceleration. * [pytorch-lightning](https://github.com/Lightning-AI/pytorch-lightning) - Deep learning framework to train, deploy, and ship AI products Lightning fast. +* [Stable Baselines3](https://github.com/DLR-RM/stable-baselines3) - PyTorch implementations of stable baselines (deep) reinforcement learning algorithms. * [tensorflow](https://github.com/tensorflow/tensorflow) - The most popular Deep Learning framework created by Google. * [theano](https://github.com/Theano/Theano) - A library for fast numerical computation. From 1b70a45ba020de0e8b1d8d9cf0bbe5dbaaafbf1d Mon Sep 17 00:00:00 2001 From: Adam Ross <14985050+R055A@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:21:48 +1200 Subject: [PATCH 152/154] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index afcab0dbf..1a846f4fe 100644 --- a/README.md +++ b/README.md @@ -415,7 +415,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [keras](https://github.com/keras-team/keras) - A high-level neural networks library and capable of running on top of either TensorFlow or Theano. * [pytorch](https://github.com/pytorch/pytorch) - Tensors and Dynamic neural networks in Python with strong GPU acceleration. * [pytorch-lightning](https://github.com/Lightning-AI/pytorch-lightning) - Deep learning framework to train, deploy, and ship AI products Lightning fast. -* [Stable Baselines3](https://github.com/DLR-RM/stable-baselines3) - PyTorch implementations of stable baselines (deep) reinforcement learning algorithms. +* [stable-baselines3](https://github.com/DLR-RM/stable-baselines3) - PyTorch implementations of Stable Baselines (deep) reinforcement learning algorithms. * [tensorflow](https://github.com/tensorflow/tensorflow) - The most popular Deep Learning framework created by Google. * [theano](https://github.com/Theano/Theano) - A library for fast numerical computation. From 4248513e5d067ec86cebba1a8e04e3e981f07c73 Mon Sep 17 00:00:00 2001 From: Rajan Poudel <117752332+r-a-j-a-n@users.noreply.github.com> Date: Sat, 13 Apr 2024 15:51:16 +0545 Subject: [PATCH 153/154] Added streamlit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 778fc8b2f..a99fed92d 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [flower](https://github.com/mher/flower) - Real-time monitor and web admin for Celery. * [jet-bridge](https://github.com/jet-admin/jet-bridge) - Admin panel framework for any application with nice UI (ex Jet Django). * [wooey](https://github.com/wooey/wooey) - A Django app which creates automatic web UIs for Python scripts. +* [streamlit](https://github.com/streamlit/streamlit) - A framework which lets you build dashboards, generate reports, or create chat apps in minutes. ## Algorithms and Design Patterns From 8bfda028291ba5dc88d79ab211d70f81ce89a214 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Mon, 17 Jun 2024 01:45:05 +0800 Subject: [PATCH 154/154] Update FUNDING.yml --- .github/FUNDING.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 7b835f591..aa22b9d0a 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1 @@ # These are supported funding model platforms -open_collective: awesome-python