Skip to content

Instantly share code, notes, and snippets.

@jaimevalero
Last active May 13, 2023 00:29
Show Gist options
  • Save jaimevalero/3db5c5753373b37d1e687700d2039b07 to your computer and use it in GitHub Desktop.
Save jaimevalero/3db5c5753373b37d1e687700d2039b07 to your computer and use it in GitHub Desktop.
Which awesome resource has more awesomess in an awesome list
# Order an awesome list by number stars.
#
# Tis one liner scripts extracts the number of stars from each repo from a given awesome list, and order repos by the number of start
# This one liner uses jq command, so you should have it installed in your machine
# Parameter
# Awesome List to extract, in raw
AWESOME_LIST=https://raw.githubusercontent.com/pditommaso/awesome-pipeline/master/README.md
#CREDENTIALS="jaimevalero:mysecret"
CREDENTIALS="replace-for-your-github-user:replace-for-your-github-password"
curl -L --user "$CREDENTIALS" -s "$AWESOME_LIST" | \
egrep -E -o 'https://github.com/.*/.*\)' | \
cut -d\/ -f 4-5 | cut -d\) -f1 | \
while read line ; do \
echo "[$line](https://github.com/$line)" \| \
`curl --user "$CREDENTIALS" -s -L -k "https://api.github.com/repos/$line" | \
jq -c '[ .stargazers_count ,"ยบ" , .description , "ยบ"] ' | \
tr -d '\[' | tr -d '\]' | tr -d ',' | tr -d '\"' | tr -d '\|' | tr 'ยบ' '|' `; \
done | sort -r -u -t \| -k2 -n | sed -e 's/^/\|/g' | sed -e 's@||@|@g'
@jaimevalero
Copy link
Author

jaimevalero commented Feb 17, 2018

For https://github.com/vinta/awesome-python/

Repo Stars Description
tensorflow/tensorflow 147708 An Open Source Machine Learning Framework for Everyone
sindresorhus/awesome 139063 ๐Ÿ˜Ž Awesome lists about all kinds of interesting topics
vinta/awesome-python#restful-api 85763 A curated list of awesome Python frameworks libraries software and resources
TheAlgorithms/Python 82407 All Algorithms implemented in Python
nvbn/thefuck 54880 Magnificent app which corrects your previous console command.
keras-team/keras 49342 Deep Learning for humans
jakubroztocil/httpie 47885 As easy as /aitch-tee-tee-pie/ ๐Ÿฅง Modern user-friendly command-line HTTP client for the API era. JSON support colors sessions downloads plugins & more. https://twitter.com/clihttp
josephmisiti/awesome-machine-learning#python 46119 A curated list of awesome Machine Learning frameworks libraries and software.
ansible/ansible 44450 Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deployment to network configuration to cloud management in a language that approaches plain English using SSH with no agents to install on remote systems. https://docs.ansible.com.
psf/requests 43330 A simple yet elegant HTTP library.
pytorch/pytorch 41256 Tensors and Dynamic neural networks in Python with strong GPU acceleration
python/cpython 33104 The Python programming language
BVLC/caffe 30730 Caffe: a fast open framework for deep learning.
faif/python-patterns 25582 A collection of design patterns/idioms in Python
ziadoz/awesome-php 24016 A curated list of amazingly awesome PHP libraries resources and shiny things.
fxsjy/jieba 23886 ็ป“ๅทดไธญๆ–‡ๅˆ†่ฏ
fighting41love/funNLP 23410 ไธญ่‹ฑๆ–‡ๆ•ๆ„Ÿ่ฏใ€่ฏญ่จ€ๆฃ€ๆต‹ใ€ไธญๅค–ๆ‰‹?
Valloric/YouCompleteMe 21698 A code-completion engine for Vim
sorrycc/awesome-javascript#data-visualization 20839 ๐Ÿข A collection of awesome browser-side JavaScript libraries resources and shiny things.
pyenv/pyenv 20471 Simple Python version management
tiangolo/fastapi 20021 FastAPI framework high performance easy to learn fast to code ready for production
dmlc/xgboost 19631 Scalable Portable and Distributed Gradient Boosting (GBDT GBRT or GBM) Library for Python R Java Scala C++ and more. Runs on single machine Hadoop Spark Flink and DataFlow
dmlc/mxnet 18924 Lightweight Portable Flexible Distributed/Mobile Deep Learning with Dynamic Mutation-aware Dataflow Dep Scheduler; for Python R Julia Scala Go Javascript and more
sqlmapproject/sqlmap 17968 Automatic SQL injection and database takeover tool
keon/algorithms 17720 Minimal examples of data structures and algorithms in Python
google/python-fire 17588 Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.
python/black 17229 The uncompromising Python code formatter
ChristosChristofidis/awesome-deep-learning 15682 A curated list of awesome Deep Learning tutorials projects and communities.
tqdm/tqdm 15536 A Fast Extensible Progress Bar for Python and CLI
binux/pyspider 14510 A Powerful Spider(Web Crawler) System in Python.
huge-success/sanic 14038 Async Python 3.6+ web server/framework Build fast. Run fast.
bokeh/bokeh 13865 Interactive Data Visualization in the browser from Python
spotify/luigi 13643 Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution workflow management visualization etc. It also comes with Hadoop support built in.
locustio/locust 13587 Scalable user load testing tool written in Python
ray-project/ray 12783 A fast and simple framework for building and running distributed applications. Ray is packaged with RLlib a scalable reinforcement learning library and Tune a scalable hyperparameter tuning library.
audreyr/cookiecutter 12639 A command-line utility that creates projects from cookiecutters (project templates) e.g. Python package projects VueJS projects.
fabric/fabric 12425 Simple Pythonic remote execution and deployment.
willmcgugan/rich 11975 Rich is a Python library for rich text and beautiful formatting in the terminal.
sdispater/poetry 11883 Python dependency management and packaging made easy.
quantopian/zipline 11705 Zipline a Pythonic Algorithmic Trading Library
saltstack/salt 11189 Software to automate the management and configuration of any infrastructure or application at scale. Get access to the Salt software package repository here:
psf/requests-html 11108 Pythonic HTML Parsing for Humansโ„ข
RaRe-Technologies/gensim 11088 Topic Modelling for Humans
micropython/micropython 11019 MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Miserlou/Zappa 10956 Serverless Python
google/yapf 10954 A formatter for Python files
mkdocs/mkdocs 10611 Project documentation with Markdown.
joke2k/faker 10392 Faker is a Python package that generates fake data for you.
google/grumpy 10134 Grumpy is a Python to Go source code transcompiler and runtime.
codelucas/newspaper 9970 News full-text and article metadata extraction in Python 3. Advanced docs:
AtsushiSakai/PythonRobotics 9903 Python sample codes for robotics algorithms.
getpelican/pelican 9834 Static site generator that supports Markdown and reST syntax. Powered by Python.
beetbox/beets 9538 music library manager and MusicBrainz tagger
Theano/Theano 9209 Theano is a Python library that allows you to define optimize and evaluate mathematical expressions involving multi-dimensional arrays efficiently. It can use GPUs and perform efficient symbolic differentiation.
chriskiehl/Gooey 9093 Turn (almost) any Python command line program into a full GUI application with one line
humiaozuzu/awesome-flask 9084 A curated list of awesome Flask resources and plugins
dbcli/pgcli 8878 Postgres CLI with autocompletion and syntax highlighting
dbcli/mycli 8863 A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.
andymccurdy/redis-py 8754 Redis Python Client
gleitz/howdoi 8381 instant coding answers via the command line
falconry/falcon 7949 The no-nonsense minimalist web services and app backend framework for Python developers with a focus on reliability correctness and performance at scale.
thumbor/thumbor 7904 thumbor is an open-source photo thumbnail service by globo.com
scrapinghub/portia 7863 Visual scraping for Scrapy
coleifer/peewee 7758 a small expressive orm -- supports postgresql mysql and sqlite
python-pillow/Pillow 7636 The friendly PIL fork (Python Imaging Library)
dbader/schedule 7625 Python job scheduling for humans.
mre/awesome-static-analysis 7574 Static analysis tools for all programming languages build tools config files and more.
clips/pattern 7547 Web mining module for Python with tools for scraping natural language processing machine learning network analysis and visualization.
mwaskom/seaborn 7540 Statistical data visualization using matplotlib
spotify/annoy 7453 Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk
sympy/sympy 7268 A computer algebra system written in pure Python
pallets/jinja 7215 A very fast and expressive template engine.
seatgeek/fuzzywuzzy 7213 Fuzzy String Matching in Python
JaidedAI/EasyOCR 7212 Ready-to-use OCR with 40+ languages supported including Chinese Japanese Korean and Thai
rq/rq 7199 Simple job queues for Python
MagicStack/uvloop 7107 Ultra fast asyncio event loop.
benoitc/gunicorn 7086 gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX fast clients and sleepy applications.
dask/dask 7085 Parallel computing with task scheduling
pyinstaller/pyinstaller 7072 Freeze (package) Python programs into stand-alone executables
Delgan/loguru 6757 Python logging made (stupidly) simple
giampaolo/psutil 6520 Cross-platform lib for process and system monitoring in Python
jonathanslenders/python-prompt-toolkit 6464 Library for building powerful interactive command line applications in Python
paramiko/paramiko 6430 The leading native Python SSHv2 protocol library.
dhamaniasad/awesome-postgres 6408 A curated list of awesome PostgreSQL software libraries tools and resources inspired by awesome-mysql
Supervisor/supervisor 6322 Supervisor process control system for UNIX
hugapi/hug 6305 Embrace the APIs of the future. Hug aims to make developing APIs as simple as possible but no simpler.
pyeve/eve 6170 REST API framework designed for human beings
numenta/nupic 6120 Numenta Platform for Intelligent Computing is an implementation of Hierarchical Temporal Memory (HTM) a theory of intelligence based strictly on the neuroscience of the neocortex.
PyMySQL/PyMySQL 6090 Pure Python MySQL Client
ajenti/ajenti 6086 Ajenti Core and stock plugins
jazzband/django-debug-toolbar 6056 A configurable set of panels that display various debug information about the current request/response.
facebookresearch/pytext 5965 A natural language modeling framework based on PyTorch
Manisso/fsociety 5924 fsociety Hacking Tools Pack โ€“ A Penetration Testing Framework
mingrammer/diagrams 5864 ๐ŸŽจ Diagram as Code for prototyping cloud system architectures
benfred/py-spy 5803 Sampling profiler for Python programs
altair-viz/altair 5797 Declarative statistical visualization library for Python
pennersr/django-allauth 5749 Integrated set of Django applications addressing authentication registration account management as well as 3rd party (social) account authentication.
boto/boto3 5706 AWS SDK for Python
flask-restful/flask-restful 5694 Simple framework for creating REST APIs
SerpentAI/SerpentAI 5658 Game Agent Framework. Helping you create AIs / Bots that learn to play any game you own!
trustedsec/social-engineer-toolkit 5656 The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here.
spyder-ide/spyder 5620 Official repository for Spyder - The Scientific Python Development Environment
secdev/scapy 5518 Scapy: the Python-based interactive packet manipulation program & library. Supports Python 2 & Python 3.
encode/apistar 5474 The Web API toolkit. ๐Ÿ› 
statsmodels/statsmodels 5455 Statsmodels: statistical modeling and econometrics in Python
encode/httpx 5446 A next generation HTTP client for Python. ๐Ÿฆ‹
pallets/werkzeug 5419 The comprehensive WSGI web application library.
amoffat/sh 5368 Python process launching
mahmoud/boltons 5221 ๐Ÿ”ฉ Like builtins but boltons. 250+ constructs recipes and snippets which extend (and rely on nothing but) the Python standard library. Nothing like Michael Bolton.
pymc-devs/pymc3 5194 Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano
worldveil/dejavu 5094 Audio fingerprinting and recognition in Python
python-mode/python-mode 5074 Vim python-mode. PyLint Rope Pydoc breakpoints from box.
lancopku/pkuseg-python 4999 pkusegๅคš้ข†ๅŸŸไธญๆ–‡ๅˆ†่ฏๅทฅๅ…ท; The pkuseg toolkit for multi-domain Chinese word segmentation
h2oai/h2o-3 4946 Open Source Fast Scalable Machine Learning Platform For Smarter Applications: Deep Learning Gradient Boosting & XGBoost Random Forest Generalized Linear Modeling (Logistic Regression Elastic Net) K-Means PCA Stacked Ensembles Automatic Machine Learning (AutoML) etc.
marshmallow-code/marshmallow 4926 A lightweight library for converting complex objects to and from simple Python datatypes.
robotframework/robotframework 4921 Generic automation framework for acceptance testing and RPA
isnowfy/snownlp 4908 Python library for processing Chinese text
burnash/gspread 4884 Google Sheets Python API
robinhood/faust 4818 Python Stream Processing
facebook/pyre-check 4727 Performant type-checking for python.
jiaaro/pydub 4668 Manipulate audio with a simple and easy high level interface
stanfordnlp/stanza 4573 Official Stanford NLP Python Library for Many Human Languages
donnemartin/saws 4565 A supercharged AWS command line interface (CLI).
HypothesisWorks/hypothesis 4557 Hypothesis is a powerful flexible and easy to use library for property-based testing.
dropbox/pyston 4537 An open-source Python implementation using JIT techniques.
django/channels 4527 Developer-friendly asynchrony for Django
davidhalter/jedi-vim 4508 Using the jedi autocompletion library for VIM.
facebook/PathPicker 4442 PathPicker accepts a wide range of input -- output from git commands grep results searches -- pretty much anything.After parsing the input PathPicker presents you with a nice UI to select which files you're interested in. After that you can open them in your favorite editor or execute arbitrary commands.
sshwsfc/xadmin 4438 Drop-in replacement of Django admin comes with lots of goodies fully extensible with plugin support pretty UI based on Twitter Bootstrap.
jazzband/pip-tools 4436 A set of tools to keep your pinned Python dependencies fresh.
mher/flower 4380 Real-time monitor and web admin for Celery distributed task queue
tschellenbach/Stream-Framework 4357 Stream Framework is a Python library which allows you to build news feed activity streams and notification systems using Cassandra and/or Redis. The authors of Stream-Framework also provide a cloud service for feed technology:
flask-admin/flask-admin 4355 Simple and extensible administrative interface framework for Flask
dylanaraps/pywal 4337 ๐ŸŽจ Generate and change color-schemes on the fly.
wireservice/csvkit 4331 A suite of utilities for converting to and working with CSV the king of tabular file formats.
PySimpleGUI/PySimpleGUI 4321 Launched in 2018 Actively developed and supported. Supports tkinter Qt WxPython Remi (in browser). Create custom layout GUI's simply. Python 2.7 & 3 Support. 200+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples using Machine Learning(GUI OpenCV Integration Chatterbot) Floating Desktop Widgets Matplotlib + Pyplot integration add GUI to command line scripts PDF & Image Viewer. For both beginning and advanced programmers .
NicolasHug/Surprise 4301 A Python scikit for building and analyzing recommender systems
platformio/platformio-core 4289 PlatformIO is a professional collaborative platform for embedded development ๐Ÿ‘ฝ A place where Developers and Teams have true Freedom! No more vendor lock-in!
gorakhargosh/watchdog 4240 Python library and shell utilities to monitor filesystem events.
asweigart/pyautogui 4177 A cross-platform GUI automation Python module for human beings. Used to programmatically control the mouse & keyboard.
stephenmcd/mezzanine 4114 CMS framework for Django
martinblech/xmltodict 4061 Python module that makes working with XML feel like you are working with JSON
sdispater/pendulum 4040 Python datetimes made easy
dpkp/kafka-python 3967 Python client for Apache Kafka
django-crispy-forms/django-crispy-forms 3956 The best way to have DRY Django forms. The app provides a tag and filter that lets you quickly render forms in a div format while providing an enormous amount of capability to configure and control the rendered HTML.
pudo/dataset 3858 Easy-to-use data handling for SQL data stores with support for implicit table creation bulk loading and transactions.
librosa/librosa 3829 Python library for audio and music analysis
ChrisKnott/Eel 3766 A little Python library for making simple Electron-like HTML/JS GUI apps
conda/conda 3758 OS-agnostic system-level binary package manager and ecosystem
jazzband/tablib 3755 Python Module for Tabular Datasets in XLS CSV JSON YAML &c.
jonathanslenders/ptpython 3725 A better Python REPL
nvdv/vprof 3667 Visual profiler for Python
msiemens/tinydb 3655 TinyDB is a lightweight document oriented database optimized for your happiness :)
pypa/virtualenv 3652 Virtual Python Environment builder
MechanicalSoup/MechanicalSoup 3528 A Python library for automating interaction with websites.
mininet/mininet 3500 Emulator for rapid prototyping of Software Defined Networks
spyoungtech/grequests 3477 Requests + Gevent = <3
jmcarp/robobrowser 3471 null
rkern/line_profiler 3470 (OLD REPO) Line-by-line profiling for Python - Current repo ->
sphinx-doc/sphinx 3450 Main repository for the Sphinx documentation builder
s3tools/s3cmd 3401 Official s3cmd repo -- Command line tool for managing Amazon S3 and CloudFront services
jpadilla/pyjwt 3386 JSON Web Token implementation in Python
python-trio/trio 3355 Trio โ€“ a friendly Python library for async concurrency and I/O
tyiannak/pyAudioAnalysis 3347 Python Audio Analysis Library: Feature Extraction Classification Segmentation and Applications
lektor/lektor 3321 The lektor static file content management system
mstamy2/PyPDF2 3266 A utility to read and write PDFs with Python
lyst/lightfm 3244 A Python implementation of LightFM a hybrid recommendation algorithm.
MongoEngine/mongoengine 3236 A Python Object-Document-Mapper for working with MongoDB
timothycrosley/isort 3214 A Python utility / library to sort imports.
python-attrs/attrs 3186 Python Classes Without Boilerplate
timofurrer/maya 3168 Datetimes for Humansโ„ข
coleifer/huey 3124 a little task queue for python
pytransitions/transitions 3115 A lightweight object-oriented finite state machine implementation in Python with many extensions
madmaze/pytesseract 3094 A Python wrapper for Google Tesseract
mongodb/mongo-python-driver 3088 PyMongo - the Python driver for MongoDB
Instagram/MonkeyType 3059 A system for Python that generates static type annotations by collecting runtime types
coala/coala 3039 coala provides a unified command-line interface for linting and fixing all your code regardless of the programming languages you use.
kachayev/fn.py 3028 Functional programming in Python: implementation of missing features to enjoy FP
django-haystack/django-haystack 3026 Modular search for Django
what-studio/profiling 3006 An interactive continuous Python profiler.
elastic/elasticsearch-dsl-py 2982 High level Python client for Elasticsearch
evhub/coconut 2978 Simple elegant Pythonic functional programming.
encode/uvicorn 2974 The lightning-fast ASGI server. ๐Ÿฆ„
geopy/geopy 2972 Geocoding library for Python.
pyinvoke/invoke#readme 2950 Pythonic task management & command execution.
mooz/percol 2942 adds flavor of interactive filtering to the traditional pipe concept of UNIX shell
lk-geimfari/mimesis 2940 Mimesis is a high-performance fake data generator for Python which provides data for a variety of purposes in a variety of languages.
esnme/ultrajson 2923 Ultra fast JSON decoder and encoder written in C with Python bindings
joestump/python-oauth2 2920 A fully tested abstract interface to creating OAuth clients and servers.
blaze/blaze 2895 NumPy and Pandas interface to Big Data
aaugustin/websockets 2894 Library for building WebSocket servers and clients in Python
Julian/jsonschema 2893 An(other) implementation of JSON Schema for Python
pytoolz/toolz 2882 A functional standard library for Python.
bloomberg/bqplot 2873 Plotting library for IPython/Jupyter notebooks
deanmalmgren/textract 2856 extract text from any document. no muss. no fuss.
tony/tmuxp 2833 ๐Ÿ’ป tmux session manager. built on libtmux
geex-arts/django-jet 2829 Modern responsive template for the Django admin interface with improved functionality. We are proud to announce completely new Jet. Please check out Live Demo
sloria/doitlive 2819 Because sometimes you need to do it live
omab/python-social-auth 2790 Social auth made simple
mozillazg/python-pinyin 2782 ๆฑ‰ๅญ—่ฝฌๆ‹ผ้Ÿณ(pypinyin)
kornia/kornia 2771 Open Source Differentiable Computer Vision Library for PyTorch
LuminosoInsight/python-ftfy 2750 Fixes mojibake and other glitches in Unicode text after the fact.
django-guardian/django-guardian 2724 Per object permissions for Django
facebookresearch/hydra 2667 Hydra is a framework for elegantly configuring complex applications
wsvincent/awesome-django 2666 A curated list of awesome things related to Django
0rpc/zerorpc-python 2661 zerorpc for python
mobolic/facebook-sdk 2534 Python SDK for Facebook's Graph API
daviddrysdale/python-phonenumbers 2521 Python port of Google's libphonenumber
spulec/freezegun 2517 Let your Python tests travel through time
Yelp/mrjob 2499 Run MapReduce jobs on Hadoop or Amazon Web Services
mhammond/pywin32 2479 Python for Windows (pywin32) Extensions
timofurrer/awesome-asyncio 2469 A curated list of awesome Python asyncio frameworks libraries software and resources
pypa/warehouse 2462 The Python Package Index
jazzband/django-taggit 2441 Simple tagging for django
sightmachine/SimpleCV 2426 The Open Source Framework for Machine Vision
vispy/vispy 2415 Main repository for Vispy
shazow/urllib3 2403 Python HTTP library with thread-safe connection pooling file post support sanity friendly and more.
jonashaag/bjoern 2399 A screamingly fast Python 2/3 WSGI server written in C.
zoofIO/flexx 2383 Write desktop and web apps in pure Python
pybee/toga 2372 A Python native OS native GUI toolkit.
schematics/schematics 2366 Python Data Structures for Humansโ„ข.
django-compressor/django-compressor 2356 Compresses linked and inline javascript or CSS into a single cached file.
Suor/funcy 2345 A fancy and practical functional tools
has2k1/plotnine 2329 A grammar of graphics for Python
jmcnamara/XlsxWriter 2321 A Python module for creating Excel XLSX files.
python-openxml/python-docx 2311 Create and modify Word documents with Python
errbotio/errbot 2303 Errbot is a chatbot a daemon that connects to your favorite chat service and bring your tools and some fun into the conversation.
Microsoft/PTVS 2285 Python Tools for Visual Studio
ponyorm/pony 2280 Pony Object Relational Mapper
awesto/django-shop 2277 A Django based shop system
cobrateam/splinter 2266 splinter - python test framework for web applications
FactoryBoy/factory_boy 2247 A test fixtures replacement for Python
waylan/Python-Markdown 2237 A Python implementation of John Gruberโ€™s Markdown with Extension support.
maciejkula/spotlight 2236 Deep recommender models using PyTorch.
pythonnet/pythonnet 2228 Python for .NET is a package that gives Python programmers nearly seamless integration with the .NET Common Language Runtime (CLR) and provides a powerful application scripting tool for .NET developers.
crossbario/autobahn-python 2204 WebSocket and WAMP in Python for Twisted and asyncio
rochacbruno/quokka 2195 LOOKING FOR NEW MAINTAINER - Quokka is a Content Management System - docker run --rm -it -p 5000:5000 quokka/quokka
dyve/django-bootstrap3 2194 Bootstrap 3 integration with Django.
lincolnloop/python-qrcode 2192 Python QR Code image generator
pyeve/cerberus 2160 Lightweight extensible data validation library for Python
Bogdanp/dramatiq 2157 A fast and reliable background task processing library for Python 3.
andialbrecht/sqlparse 2139 A non-validating SQL parser module for Python
keleshev/schema 2132 Schema validation just got Pythonic
jindaxiang/akshare 2112 AkShare is an elegant and simple financial data interface library for Python built for human beings! ๅผ€?
DamnWidget/anaconda 2084 Anaconda turns your Sublime Text 3 in a full featured Python development IDE including autocompletion code linting IDE features autopep8 formating McCabe complexity checker Vagrant and Docker support for Sublime Text 3 using Jedi PyFlakes pep8 MyPy PyLint pep257 and McCabe that will never freeze your Sublime Text 3
idan/oauthlib 2073 A generic spec-compliant thorough implementation of the OAuth request-signing logic
pallets/itsdangerous 2047 Safely pass trusted data to untrusted environments and back.
benfred/implicit 2036 Fast Python Collaborative Filtering for Implicit Feedback Datasets
boppreh/keyboard 2025 Hook and simulate global keyboard events on Windows and Linux.
emirozer/fake2db 2022 create custom test databases that are populated with fake data
evonove/django-oauth-toolkit 1994 OAuth2 goodies for the Djangonauts!
lepture/authlib 1982 The ultimate Python library in building OAuth OpenID Connect clients and servers. JWSJWEJWKJWAJWT included.
r0x0r/pywebview 1965 Build GUI for your Python program with JavaScript HTML and CSS
peterbrittain/asciimatics 1964 A cross platform package to do curses-like operations plus higher level APIs and widgets to create text UIs and ASCII art animations
mozilla/bleach 1961 Bleach is an allowed-list-based HTML sanitizing library that escapes or strips markup and attributes
getnikola/nikola 1945 A static website and blog generator
unoconv/unoconv 1928 Universal Office Converter - Convert between any document format supported by LibreOffice/OpenOffice.
gawel/pyquery 1883 A jquery-like library for python
buriy/python-readability 1853 fast python port of arc90's readability tool updated to match latest readability.js!
gruns/furl 1848 ๐ŸŒ URL parsing and manipulation made easy.
lepture/mistune 1830 A fast yet powerful Python Markdown parser with renderers and plugins.
inducer/pudb 1827 Full-screen console debugger for Python
grantjenks/python-sortedcontainers 1825 Python Sorted Container Types: Sorted List Sorted Dict and Sorted Set
kootenpv/yagmail 1820 Send email in Python conveniently for gmail using yagmail
gabrielfalcao/HTTPretty 1806 HTTP client mocking tool for Python - inspired by Fakeweb for Ruby
markusschanta/awesome-jupyter 1804 A curated list of awesome Jupyter projects libraries and resources
justquick/django-activity-stream 1786 Generate generic activity streams from the actions on your site. Users can follow any actors' activities for personalized streams.
PyMySQL/mysqlclient-python 1785 MySQL database connector for Python (with Python 3 support)
python/typeshed 1781 Collection of library stubs for Python with static types
PetrochukM/PyTorch-NLP 1776 Basic Utilities for PyTorch Natural Language Processing (NLP)
orsinium/textdistance 1763 Compute distance between sequences. 30+ algorithms pure python implementation common interface optional external libs usage.
kevin1024/vcrpy 1757 Automatically mock your HTTP interactions to simplify and speed up testing
ryanmcgrath/twython 1737 Actively maintained pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs.
dabeaz/ply 1716 Python Lex-Yacc
cloudnativelabs/kube-shell 1681 Kubernetes shell: An integrated shell for working with the Kubernetes
myusuf3/delorean 1675 Delorean: Time Travel Made Easy
jschneier/django-storages 1662 https://django-storages.readthedocs.io/
aboSamoor/polyglot 1650 Multilingual text (NLP) processing toolkit
ahupp/python-magic 1646 A python wrapper for libmagic
seatgeek/sixpack 1641 Sixpack is a language-agnostic a/b-testing framework
saffsd/langid.py 1636 Stand-alone language identification system
alecthomas/voluptuous 1629 CONTRIBUTIONS ONLY: Voluptuous despite the name is a Python data validation library.
jorgenschaefer/elpy 1617 Emacs Python Development Environment
modoboa/modoboa 1601 Mail hosting made simple
realpython/list-of-python-api-wrappers 1595 List of Python API Wrappers and Libraries
google/pyringe 1581 Debugger capable of attaching to and injecting code into python processes.
bpython/bpython 1553 bpython - A fancy curses interface to the Python interactive interpreter
gruns/icecream 1543 ๐Ÿฆ Sweet and creamy print debugging.
napalm-automation/napalm 1538 Network Automation and Programmability Abstraction Layer with Multivendor support
mongodb/motor 1520 Motor - the async Python driver for MongoDB and Tornado or asyncio
cdgriffith/Box 1506 Python dictionaries with advanced dot notation access
amitt001/delegator.py 1496 Subprocesses for Humans 2.0.
erikrose/more-itertools 1495 More routines for operating on iterables beyond itertools
Kozea/wdb 1483 An improbable web debugger through WebSockets
wooey/wooey 1462 A Django app that creates automatic web UIs for Python scripts.
gak/pycallgraph 1457 pycallgraph is a Python module that creates call graphs for Python programs.
henriquebastos/python-decouple 1450 Strict separation of config from code.
glamp/bashplotlib 1443 plotting in the terminal
guestwalk/libffm 1439 A Library for Field-aware Factorization Machines
Maratyszcza/PeachPy 1435 x86-64 assembler embedded in Python
MasoniteFramework/masonite 1430 The Modern And Developer Centric Python Web Framework. Be sure to read the documentation and join the Slack channel questions: http://slack.masoniteproject.com
Parsely/streamparse 1415 Run Python in Apache Storm topologies. Pythonic API CLI tooling and a topology DSL.
mailgun/flanker 1412 Python email address and Mime parsing library
spotify/dh-virtualenv 1383 Python virtualenvs in Debian packages
jazzband/django-pipeline 1374 Pipeline is an asset packaging library for Django.
chineking/cola 1372 A high-level distributed crawling framework.
nickstenning/honcho 1364 Honcho: a python clone of Foreman. For managing Procfile-based applications.
dateutil/dateutil 1359 Useful extensions to the standard Python datetime features
chardet/chardet 1349 Python 2/3 compatible character encoding detector.
Microsoft/Pyjion 1348 Pyjion - A JIT for Python based upon CoreCLR
benhamner/Metrics 1347 Machine learning evaluation metrics implemented in Python R Haskell and MATLAB / Octave
abhiTronix/vidgear 1342 High-performance cross-platform Video Processing Python framework powerpacked with unique trailblazing features โœจ
django/daphne 1330 Django Channels HTTP/WebSocket server
skorokithakis/shortuuid 1318 A generator library for concise unambiguous and URL-safe UUIDs.
pynamodb/PynamoDB 1308 A pythonic interface to Amazon's DynamoDB
PyCQA/prospector 1292 Inspects Python source files and provides information about type and location of classes methods etc
sirfz/tesserocr 1290 A Python wrapper for the tesseract-ocr API
dry-python/returns 1287 Make your functions return something meaningful typed and safe!
Suor/django-cacheops 1279 A slick ORM cache with automatic granular event-driven invalidation.
dcramer/django-devserver 1254 A drop-in replacement for Django's runserver.
sebastien/cuisine 1240 Chef-like functionality for Fabric
gotcha/ipdb 1239 Integration of IPython pdb
pybuilder/pybuilder 1237 Software build automation tool for Python.
fabtools/fabtools 1235 Tools for writing awesome Fabric files
dbcli/litecli 1186 CLI for SQLite Databases with auto-completion and syntax highlighting
laixintao/iredis 1176 Interactive Redis: A Terminal Client for Redis with AutoCompletion and Syntax Highlighting.
datastax/python-driver 1166 DataStax Python Driver for Apache Cassandra
nficano/python-lambda 1159 A toolkit for developing and deploying serverless Python code in AWS Lambda.
python-greenlet/greenlet 1158 Lightweight in-process concurrent programming
wtforms/wtforms 1143 A flexible forms validation and rendering library for Python.
pyfilesystem/pyfilesystem2 1122 Python's Filesystem abstraction layer
scanny/python-pptx 1121 Create Open XML PowerPoint documents in Python
wemake-services/wemake-python-styleguide 1115 The strictest and most opinionated python linter ever!
fengsp/plan 1112 Crontab jobs management in Python
davidaurelio/hashids-python 1109 Implementation of hashids (http://hashids.org) in Python. Compatible with Pythonโ€‰2 and Pythonโ€‰3
dfunckt/django-rules 1108 Awesome Django authorization without the database
jek/blinker 1103 A fast Python in-process signal/event dispatching system.
mining/mining 1096 Business Intelligence (BI) in Python OLAP
jfkirk/tensorrec 1076 A TensorFlow recommendation algorithm and framework in Python.
indico/indico 1073 Indico - A feature-rich event management system made @ CERN the place where the Web was born.
marshmallow-code/webargs 1053 A friendly library for parsing HTTP request arguments with built-in support for popular web frameworks including Flask Django Bottle Tornado Pyramid webapp2 Falcon and aiohttp.
selwin/python-user-agents 1049 A Python library that provides an easy way to identify devices like mobile phones tablets and their capabilities by parsing (browser) user agent strings.
prabhupant/python-ds 1048 Repository for data structure and algorithms in Python for coding interviews
eliben/pyelftools 1045 Parsing ELF and DWARF in Python
tylerlaberge/PyPattyrn 1038 A simple library for implementing common design patterns.
linkedin/shiv 1030 shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441 but with all their dependencies included.
encode/orm 1027 An async ORM. ๐Ÿ—ƒ
bloomreach/s4cmd 1017 Super S3 command line tool
dahlia/wand 1010 The ctypes-based simple ImageMagick binding for Python
jendrikseipp/vulture 992 Find dead Python code
Alir3z4/html2text 967 Convert HTML to Markdown-formatted text.
python-rope/rope 964 a python refactoring library
awslabs/aws-data-wrangler 957 Pandas on AWS
agiliq/merchant 951 A Django app to accept payments from various payment processors via Pluggable backends.
fogleman/Quads 945 Computer art based on quadtrees.
vandersonmota/model_mommy 938 No longer maintained please migrate to model_bakery
martinrusev/imbox 934 Python IMAP for Human beings
nucleic/enaml 933 Declarative User Interfaces for Python
SavinaRoja/PyUserInput 927 A module for cross-platform control of the mouse and keyboard in python that is simple to install and use.
ironmussa/Optimus 925 ๐Ÿšš Agile Data Preparation Workflows made
Fizzadar/pyinfra 919 pyinfra automates infrastructure super fast at massive scale. It can be used for ad-hoc command execution service deployment configuration management and more.
jaraco/path.py 915 Object-oriented file system path manipulation
tomerfiliba/rpyc 902 RPyC (Remote Python Call) - A transparent and symmetric RPC library for python
mitsuhiko/pluginbase 900 A simple but flexible plugin system for Python.
srusskih/SublimeJEDI 898 awesome Python autocompletion with SublimeText
un33k/python-slugify 895 Returns unicode slugs
benedekrozemberczki/karateclub 891 A general purpose community detection and network embedding library for research built on NetworkX.
miracle2k/webassets 885 Asset management for Python web development.
ibayer/fastFM 861 fastFM: A Library for Factorization Machines
Acrotrend/awesome-dash 859 A curated list of awesome Dash (plotly) resources
html5lib/html5lib-python 854 Standards-compliant library for parsing and serializing HTML documents and fragments in Python
SmileyChris/django-countries 853 A Django application that provides country choices for use with forms flag icons static files and a country field for models.
ztane/python-Levenshtein 845 The Levenshtein Python C extension module contains functions for fast computation of Levenshtein distance and string similarity
pyparsing/pyparsing 835 Python library for creating PEG parsers
pyexcel/pyexcel 830 Single API for reading manipulating and writing data in csv ods xls xlsx and xlsm files
pricingassistant/mrq 817 Mr. Queue - A distributed worker task queue in Python using Redis & gevent
Pylons/waitress 810 Waitress - A WSGI server for Python 2 and 3
elapouya/python-docx-template 802 Use a docx as a jinja2 template
django-cache-machine/django-cache-machine 790 Automatic caching and invalidation for Django models through the ORM.
zostera/django-bootstrap4 781 Bootstrap 4 integration with Django.
SciTools/cartopy 780 Cartopy - a cartographic python library with matplotlib support
thauber/django-schedule 778 A calendaring app for Django. It is now stable Please feel free to use it now. Active development has been taken over by bartekgorny.
feincms/feincms 777 A Django-based CMS with a focus on extensibility and concise code
jet-admin/jet-bridge 762 Jet Bridge (Universal) for Jet Admin โ€“ API-based Admin Panel Framework for your application
scottrogowski/code2flow 760 Turn your Python and Javascript code into DOT flowcharts
hhatto/nude.py 740 Nudity detection with Python
rsalmei/alive-progress 732 A new kind of Progress Bar with real time throughput eta and very cool animations!
getsentry/sentry-python 730 The new Python SDK for Sentry.io
pytoolz/cytoolz 727 Cython implementation of Toolz: High performance functional utilities
klen/pylama 718 Code audit tool for python.
pyca/pynacl 713 Python binding to the Networking and Cryptography (NaCl) library
klen/mixer 702 Mixer -- Is a fixtures replacement. Supported Django Flask SqlAlchemy and custom python objects.
mpdavis/python-jose 689 A JOSE implementation in Python
pwaller/pyfiglet 682 An implementation of figlet written in Python
obspy/obspy 681 ObsPy: A Python Toolbox for seismology/seismological observatories.
mitmproxy/pdoc 667 A simple command line tool and library to auto generate API documentation for Python libraries.
khamidou/lptrace 663 Trace any Python program anywhere!
yoloseem/awesome-sphinxdoc 662 A curated list of awesome tools for Sphinx Python Documentation Generator
CleanCut/green 656 Green is a clean colorful fast python test runner.
quodlibet/mutagen 648 Python module for handling audio metadata
plasticityai/supersqlite 646 A supercharged SQLite library for Python
nose-devs/nose2 643 The successor to nose based on unittest2
stackless-dev/stackless 631 The Stackless Python programming language
keunwoochoi/kapre 624 kapre: Keras Audio Preprocessors
jab/bidict 619 The bidirectional mapping library for Python.
stephenmcd/cartridge 618 Ecommerce for Mezzanine
django-haystack/pysolr 564 Pysolr โ€” Python Solr client
frewsxcv/python-geojson 561 Python bindings and utilities for GeoJSON
timofurrer/try 554 Dead simple CLI tool to try Python packages - It's never been easier! ๐Ÿ“ฆ
ionelmc/python-hunter 550 Hunter is a flexible code tracing toolkit.
kiwicom/schemathesis 543 A tool that generates and runs test cases for Open API / GraphQL based apps
mitsuhiko/python-modernize 542 Modernizes Python code for eventual Python 3 migration. Build on top of 2to3
wbolster/happybase 541 A developer-friendly Python library to interact with Apache HBase
typeddjango/awesome-python-typing 537 Collection of awesome Python types stubs plugins and tools to work with them.
antocuni/pdb 534 pdb++ a drop-in replacement for pdb (the Python debugger)
pyglet/pyglet 530 pyglet is a cross-platform windowing and multimedia library for Python for developing games and other visually rich applications.
twisted/treq 504 Python requests like API built on top of Twisted's HTTP client.
michaelhelmick/lassie 502 Web Content Retrieval for Humansโ„ข
coleifer/micawber 497 a small library for extracting rich content from urls
noxrepo/pox 496 The POX network software platform
mikeorr/Unipath 489 An object-oriented approach to Python file/directory operations.
patx/pickledb 487 pickleDB is an open source key-value store using Python's json module.
appliedsec/pygeoip 482 DEPRECATED: Pure Python API for Maxmind's binary GeoIP databases
stchris/untangle 474 Converts XML to Python objects
chapmanb/bcbb 472 Incubator for useful bioinformatics code primarily in Python and R
soravux/scoop 460 SCOOP (Scalable COncurrent Operations in Python)
dimka665/awesome-slugify 450 Python flexible slugify function
bbangert/beaker 446 WSGI middleware for sessions and caching
moggers87/salmon 439 A Python Mail Server
lericson/pylibmc 436 A Python wrapper around the libmemcached interface from TangentOrg.
shahraizali/awesome-django 433 The Best Django Resource Awesome Django for mature packages.
kiddouk/redisco 432 A Python Library for Simple Models and Containers Persisted in Redis
derek73/python-nameparser 422 A simple Python module for parsing human names into their individual components
zopefoundation/ZODB 413 Python object-oriented database
patrys/httmock 406 A mocking library for requests
devpi/devpi 402 Python PyPi staging server and packaging testing release tool
devsnd/tinytag 398 Read music meta data and length of MP3 OGG OPUS MP4 M4A FLAC WMA and Wave files with python 2 or 3
python-rapidjson/python-rapidjson 391 Python wrapper around rapidjson
httplib2/httplib2 377 Small fast HTTP client library for Python. Features persistent connections cache and Google App Engine support. Originally written by Joe Gregorio now supported by community.
DmytroLitvinov/awesome-flake8-extensions 370 :octocat: A curated awesome list of flake8 extensions. Feel free to contribute! ๐ŸŽ“
jazzband/localshop 369 local pypi server (custom packages and auto-mirroring of pypi)
TkTech/pysimdjson 366 Python bindings for the simdjson project.
mitsuhiko/unp 365 Unpacks things.
Cornices/cornice 359 Build Web Services with Pyramid.
Kotti/Kotti 352 Kotti is a high-level Pythonic web application framework based on Pyramid and SQLAlchemy. It includes an extensible Content Management System called the Kotti CMS.
pallets/markupsafe 342 Safely add untrusted strings to HTML/XML markup.
beetbox/audioread 337 cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding for Python
Pylons/deform 333 A Python HTML form library.
MicroPyramid/forex-python 330 Foreign exchange rates Bitcoin price index and currency conversion using ratesapi.io
web2py/pydal 325 A pure Python Database Abstraction Layer
lxneng/alipay 316 An Unofficial Alipay API for Python
istrategylabs/django-wordpress 313 WordPress models and views for Django.
KoffeinFlummi/Chronyk 309 A Python 3 library for parsing human-written times and dates
RaylockLLC/DearPyGui 305 DearPyGui: A GPU Accelerated Python GUI Framework
metawilm/cl-python 301 An implementation of Python in Common Lisp
mozilla/unicode-slugify 293 A slugifier that works in unicode
ionelmc/python-manhole 292 Debugging manhole for python applications.
Parisson/TimeSide 288 Scalable audio processing framework written in Python with a RESTful API
rockymeza/wifi 266 unmaintained WiFi tools for linux
stephenmcd/hot-redis 263 Rich Python data types for Redis
ellisonleao/pyshorteners 261 ๐Ÿ”Œ Generating short urls with python has never been easier
libvips/pyvips 254 python binding for libvips using cffi
codeinthehole/purl 245 A simple immutable URL class with a clean API for interrogation and manipulation.
nicfit/eyeD3 244 eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate sample frequency play time etc.) is also provided. The formats supported are ID3v1 (1.0/1.1) and ID3v2 (2.3/2.4).
sergree/matchering 241 ๐ŸŽš๏ธ Open Source Audio Matching and Mastering
podio/valideer 237 Lightweight data validation and adaptation Python library.
DiffSK/configobj 232 Python 3+ compatible port of the configobj library
gmr/queries 226 PostgreSQL database access simplified
maxmind/geoip-api-python 207 GeoIP Legacy Python API
marrow/mailer 201 A light-weight modular message representation and mail delivery framework for Python.
WiserTogether/django-remote-forms 199 A platform independent django form serializer
mindflayer/python-mocket 195 a socket mock framework - for all kinds of socket animals web-clients included
daboth/pagan 194 Python avatar generator for absolute nerds
carlospalol/money 186 Python money class with optional CLDR-backed locale-aware formatting and an extensible currency exchange solution.
dirn/When.py 185 Friendly Python Dates
rossgoodwin/hmap 175 Image histogram remapping
davedoesdev/python-jwt 172 Python module for generating and verifying JSON Web Tokens
josephreisinger/vowpal_porpoise 156 lightweight python wrapper for vowpal wabbit
vinta/pangu.py 149 Paranoid text spacing in Python
shinux/PyTime 137 PyTime is an easy-use Python module which aims to operate date/time/datetime by string.
ovalhub/pyicu 118 PyICU project repository
carlosescri/DottedDict 102 Python library that provides a method of accessing lists and dicts with a dotted path notation.
ajkumar25/pygram 94 Instagram-like image filters.
tartiflette/tartiflette-asgi 66 ASGI support for the Tartiflette GraphQL engine
fabianp/memory_profiler 56 Monitor Memory usage of Python code
TomNicholas/Python-for-Scientists 49 A list of recommended Python libraries and resources intended for scientific Python users.
Alir3z4/python-currencies 44 Display money format and its filthy currencies for all money lovers out there.

@jaimevalero
Copy link
Author

jaimevalero commented Feb 17, 2018

For https://github.com/agarrharr/awesome-cli-apps

Repo Stars Description
sindresorhus/awesome 139063 ๐Ÿ˜Ž Awesome lists about all kinds of interesting topics
ytdl-org/youtube-dl 69948 Command-line program to download videos from YouTube.com and other video sites
nvbn/thefuck 54880 Magnificent app which corrects your previous console command.
jkbrzt/httpie 47885 As easy as /aitch-tee-tee-pie/ ๐Ÿฅง Modern user-friendly command-line HTTP client for the API era. JSON support colors sessions downloads plugins & more. https://twitter.com/clihttp
neovim/neovim 38149 Vim-fork focused on extensibility and usability
sindresorhus/awesome-nodejs#command-line-apps 36866 โšก Delightful Node.js packages and resources
junegunn/fzf 31337 ๐ŸŒธ A command-line fuzzy finder
tldr-pages/tldr 28113 ๐Ÿ“š Collaborative cheatsheets for console commands
herrbischoff/awesome-macos-command-line#readme 23801 Use your macOS terminal shell to do awesome things.
ncw/rclone 22978 \rsync for cloud storage\ - Google Drive Amazon Drive S3 Dropbox Backblaze B2 One Drive Swift Hubic Cloudfiles Google Cloud Storage Yandex Files
sharkdp/bat 22248 A cat(1) clone with wings.
BurntSushi/ripgrep 21244 ripgrep recursively searches directories for a regex pattern
vim/vim 21053 The official Vim repository
tatsuhiro-t/aria2 20725 aria2 is a lightweight multi-protocol & multi-source cross platform download utility operated in command-line. It supports HTTP/HTTPS FTP SFTP BitTorrent and Metalink.
github/hub 20120 A command-line tool that makes git easier to use with GitHub.
alebcay/awesome-shell#readme 19898 A curated list of awesome command-line frameworks toolkits guides and gizmos. Inspired by awesome-php.
stedolan/jq 17580 Command-line JSON processor
jesseduffield/lazydocker 16028 The lazier way to manage everything docker
zyedidia/micro 14792 A modern and intuitive terminal-based text editor
sharkdp/fd 14666 A simple fast and user-friendly alternative to 'find'
svg/svgo 14655 ๐Ÿฏ Node.js tool for optimizing SVG files
yudai/gotty 14325 Share your terminal as a web application
tj/git-extras 14198 GIT utilities -- repo summary repl changelog population author commit percentages and more
audreyr/cookiecutter 12640 A command-line utility that creates projects from cookiecutters (project templates) e.g. Python package projects VueJS projects.
rupa/z 12123 z - jump around
wting/autojump 11572 A cd command that learns - easily navigate directories from the command line
ogham/exa 10538 A modern version of โ€˜lsโ€™.
localtunnel/localtunnel 10260 expose yourself
aws/aws-cli 9973 Universal Command Line Interface for Amazon Web Services
sivel/speedtest-cli 9965 Command line interface for testing internet bandwidth using speedtest.net
antonmedv/fx 9814 Command-line tool and terminal JSON viewer ๐Ÿ”ฅ
beetbox/beets 9538 music library manager and MusicBrainz tagger
dylanaraps/neofetch 9405 ๐Ÿ–ผ๏ธ A command-line system information tool written in bash 3.2+
k4m4/terminals-are-sexy#readme 9322 ๐Ÿ’ฅ A curated list of Terminal frameworks plugins & resources for CLI lovers.
jonas/tig 9260 Text-mode interface for git
jarun/nnn 8920 n
dbcli/pgcli 8878 Postgres CLI with autocompletion and syntax highlighting
dbcli/mycli 8863 A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.
gleitz/howdoi 8381 instant coding answers via the command line
asciinema/asciinema 8362 Terminal session recorder ๐Ÿ“น
unixorn/awesome-zsh-plugins#readme 8130 A collection of ZSH frameworks plugins themes and tutorials.
ranger/ranger 8095 A VIM-inspired filemanager for the console
eliangcs/http-prompt 7890 An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete syntax highlighting and more. https://twitter.com/clihttp
klaussinani/taskbook 7723 Tasks boards & notes for the command-line habitat
kefranabg/readme-md-generator 7681 ๐Ÿ“„ CLI that generates beautiful README.md files
denisidoro/navi 7584 An interactive cheatsheet tool for the command-line and application launchers
kamranahmedse/git-standup 6713 Recall what you did on the last working day. Psst! or be nosy and find what someone else in your team did ;-)
cyrus-and/gdb-dashboard 6644 Modular visual interface for GDB in Python
schachmat/wego 6429 weather app for the terminal
Rigellute/spotify-tui 6350 Spotify for the terminal written in Rust ๐Ÿš€
mps-youtube/mps-youtube 6317 Terminal based YouTube player and downloader
mawww/kakoune 6210 mawww's experiment for a better code editor
sindresorhus/fkill-cli 6128 Fabulously kill processes. Cross-platform.
zeit/serve 6070 Static file serving and directory listing
imsnif/bandwhich 5676 Terminal bandwidth utilization tool
tjunnone/npm-check-updates 5595 Find newer versions of package dependencies than what your package.json allows
IonicaBizau/git-stats 5412 ๐Ÿ€ Local git statistics including GitHub-like contributions calendars.
sindresorhus/np 5410 A better npm publish
santinic/how2 5273 stackoverflow from the terminal
clvv/fasd 5114 Command-line productivity booster offers quick access to files and directories inspired by autojump z and v.
akavel/up 5025 Ultimate Plumber is a tool for writing Linux pipes with instant live preview
streamlink/streamlink 5019 Streamlink is a CLI utility which pipes video streams from various services into a video player
timvisee/ffsend 4947 ๐Ÿ“ฌ Easily and securely share files from the command line. A fully featured Firefox Send client.
joeyespo/grip 4803 Preview GitHub README.md files locally before committing them.
rastapasta/mapscii 4670 ?
mixn/carbon-now-cli 4658 ๐ŸŽจ Beautiful images of your code โ€” from right inside your terminal.
jarun/googler 4614 ๐Ÿ” Google from the terminal
donnemartin/saws 4565 A supercharged AWS command line interface (CLI).
facebook/pathpicker 4442 PathPicker accepts a wide range of input -- output from git commands grep results searches -- pretty much anything.After parsing the input PathPicker presents you with a nice UI to select which files you're interested in. After that you can open them in your favorite editor or execute arbitrary commands.
dylanaraps/pywal 4337 ๐ŸŽจ Generate and change color-schemes on the fly.
soimort/translate-shell 4331 ๐Ÿ’ฌ Command-line translator using Google Translate Bing Translator Yandex.Translate etc.
Canop/broot 4281 A new way to see and navigate directory trees : https://dystroy.org/broot
wp-cli/wp-cli 4201 โš™๏ธ WP-CLI framework
busyloop/lolcat 4170 Rainbows and unicorns!
cmus/cmus 3856 Small fast and powerful console music player for Unix-like operating systems.
visit1985/mdp 3814 A command-line based markdown presentation tool.
jarun/Buku 3808 ๐Ÿ”– Browser-independent bookmark manager
rgburke/grv 3700 GRV is a terminal interface for viewing git repositories
mjswensen/themer 3688 ๐ŸŽจ themer takes a set of colors and generates themes for your apps (editors terminals wallpapers and more).
wooorm/alex 3649 Catch insensitive inconsiderate writing
s3tools/s3cmd 3401 Official s3cmd repo -- Command line tool for managing Amazon S3 and CloudFront services
icholy/ttygif 3383 Convert terminal recordings to animated gifs
webpro/release-it 3374 ๐Ÿš€ Automate versioning and package publishing
sindresorhus/speed-test 3372 Test your internet connection speed and ping using speedtest.net from the CLI
shobrook/rebound 3261 Command-line tool that instantly fetches Stack Overflow results when an exception is thrown
DTVD/rainbowstream 3168 A smart and nice Twitter client on terminal written in Python.
chjj/ttystudio 3166 A terminal-to-gif recorder minus the headaches.
yeoman/yo 3130 CLI tool for running Yeoman generators
thlorenz/doctoc 3070 ๐Ÿ“œ Generates table of contents for markdown files inside local git repository. Links are compatible with anchors generated by github or other sites.
zeit/release 2941 Generate changelogs with a single command
sharkdp/pastel 2940 A command-line tool to generate analyze convert and manipulate colors
dylanaraps/fff 2922 ๐Ÿ“ A simple file manager written in bash.
herrbischoff/awesome-command-line-apps#readme 2843 ๐Ÿš Use your terminal shell to do awesome things.
yaronn/wopr 2794 A simple markup language for creating rich terminal reports presentations and infographics
lirantal/dockly 2661 Immersive terminal interface for managing docker containers and services
emacs-mirror/emacs 2573 Mirror of GNU Emacs
carloscuesta/gitmoji-cli 2406 A gitmoji interactive command line tool for using emojis on commits. ๐Ÿ’ป
gokcehan/lf 2380 Terminal file manager
kohler/gifsicle 2289 Create manipulate and optimize GIF images and animations
insanum/gcalcli 2239 Google Calendar Command Line Interface
irssi/irssi 2205 The client of the future
clangen/musikcube 2076 a cross-platform terminal-based music player audio engine metadata indexer and server in c++
VitaliyRodnenko/geeknote 2065 Console client for Evernote.
sobolevn/git-secret 2046 ๐Ÿ‘ฅ A bash-tool to store your private data inside a git repository.
Azure/azure-cli 2014 Azure Command-Line Interface
sindresorhus/emoj 2010 Find relevant emoji from text on the command-line ๐Ÿ˜ฎ โœจ ๐Ÿ™Œ ๐Ÿด ๐Ÿ’ฅ ๐Ÿ™ˆ
alexfernandez/loadtest 1938 Runs a load test on the selected URL. Easy to extend minimally for your own ends.
kurolabs/stegcloak 1841 Hide secrets with invisible characters in plain text securely using passwords ๐Ÿง™๐Ÿปโ€โ™‚๏ธโญ
dnote/dnote 1824 A simple command line notebook for programmers
hlandau/acme 1786 ๐Ÿ”’ acmetool an automatic certificate acquisition tool for ACME (Let's Encrypt)
zquestz/s 1750 Open a web search in your terminal.
jhspetersson/fselect 1718 Find files with SQL-like queries
skywind3000/z.lua 1695 โšก A new cd command that helps you navigate faster by learning your habits (ๅธฆๅญฆไน ๅŠŸ่ƒฝ็š„ๅฟซ้€Ÿ่ทฏๅพ„ๅˆ‡ๆขๅทฅๅ…ท)
ddopson/underscore-cli 1634 Command-line utility-belt for hacking JSON and Javascript.
astefanutti/decktape 1617 PDF exporter for HTML presentations
miguelmota/cointop 1549 A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies
TailorDev/Watson 1539 โŒš A wonderful CLI to track your time!
spolu/warp 1500 Secure and simple terminal sharing
Treri/cmatrix 1476 Terminal based \The Matrix\ like implementation
pimutils/khal 1472 ๐Ÿ“† CLI calendar application
sgentle/caniuse-cmd 1448 Caniuse command line tool
axiros/terminal_markdown_viewer 1376 Styled Terminal Markdown Viewer
ajeetdsouza/zoxide 1352 A faster way to navigate your filesystem
yask123/Instant-Music-Downloader 1318 ๐ŸŽท Downloads Music From The Web
sindresorhus/pageres-cli 1305 Capture website screenshots
MidnightCommander/mc 1262 Midnight Commander's repository
pipeseroni/pipes.sh 1231 Animated pipes terminal screensaver
stevemao/awesome-git-addons#readme 1228 ๐Ÿ˜Ž A curated list of add-ons that extend/enhance the git CLI.
newsboat/newsboat 1222 An RSS/Atom feed reader for text terminals
kislyuk/yq 1215 Command-line YAML and XML processor - jq wrapper for YAML/XML documents
laixintao/iredis 1176 Interactive Redis: A Terminal Client for Redis with AutoCompletion and Syntax Highlighting.
MusicPlayerDaemon/MPD 1157 Music Player Daemon
tmrts/boilr 1148 โšก boilerplate template manager that generates files or directories from template repositories
samg/timetrap 1131 Simple command line timetracker
jaebradley/uber-cli 1128 ๐Ÿš—Uber at your fingertips
golbin/git-commander 1062 A git tool with an easy terminal interface.
smallhadroncollider/taskell 998 Command-line Kanban board/task manager with support for Trello boards and GitHub projects
arybczak/ncmpcpp 989 Featureful ncurses based MPD client inspired by ncmpc
ManrajGrover/football-cli 983 โšฝ Command line interface for Hackers who love football
mptre/yank 947 Yank terminal output to clipboard
erkin/ponysay 944 Pony rewrite of cowsay.
ivanilves/xiringuito 943 SSH-based \VPN for poors|
cytopia/ffscreencast 888 ffscreencast - ffmpeg screencast/desktop-recording with video overlay and multi monitor support
ttscoff/doing 771 null
pimutils/vdirsyncer 758 ๐Ÿ“‡ Synchronize calendars and contacts.
nosarthur/gita 754 Manage many git repos with sanity ็†?
sindresorhus/trash-cli 742 Move files and folders to the trash
alichtman/stronghold 732 Easily configure macOS security settings from the terminal.
jarun/imgp 671 ๐Ÿ“ธ High-performance CLI batch image resizer & rotator
keepcosmos/terjira 666 Terjira is a very interactive and easy to use CLI tool for Jira.
agentofuser/ipfs-deploy 660 Zero-Config CLI to Deploy Static Websites to IPFS
xxczaki/oji 653 (โ—•โ€ฟโ—•) Text Emoticons Maker
alichtman/shallow-backup 644 Git-integrated backup tool for macOS and Linux devs.
iridakos/goto 627 Alias and navigate to directories with tab completion in Linux
clog-tool/clog-cli 616 Generate beautiful changelogs from your Git commit history
msoap/shell2http 613 Executing shell commands via HTTP server
djadmin/medium-cli 609 Medium for Hackers - ๐Ÿ’ป A CLI for Medium Stories.
feross/webtorrent-cli 566 WebTorrent the streaming torrent client. For the command line.
kimmobrunfeldt/chokidar-cli 554 Fast cross-platform cli utility to watch file system changes
himynameisdave/git-labelmaker 518 ๐ŸŽ Manage your GitHub labels from the command line!
captainsafia/legit 514 Add licenses to projects at the command line
sindresorhus/dark-mode 505 Control the macOS dark mode from the command-line
c0bra/deviceframe 504 ๐Ÿ“ฑ Put device frames around your mobile/web/progressive app screenshots.
wustho/epr 492 CLI Epub Reader
raine/ramda-cli 485 ๐Ÿ A CLI tool for processing data with functional pipelines
nanovms/ops 471 ops - build and run nanos unikernels
ddsol/speedtest.net 470 node.js SpeedTest.net client module
brandonweiss/discharge 464 โšก๏ธ A simple easy way to deploy static websites to Amazon S3.
mbostock/gistup 459 Create a gist from terminal then use git to update it.
dthree/wat 447 Instant central community-built docs
TejasQ/add-gitignore 435 An interactive CLI tool that adds a .gitignore to your projects.
rawnly/splash-cli 405 ๐Ÿ“ธ Beautiful wallpapers from Unsplash ๐Ÿ–ผ๏ธ๐Ÿ› ๏ธ
mischah/itunes-remote 402 ๐ŸŽถ Control iTunes via CLI
IonicaBizau/cli-github 400 ๐Ÿ˜ธ A fancy GitHub client for command line.
arvindch/pockyt 394 Automate & manage your Pocket.com collection.
diit/overtime-cli 389 Easy time-overlap tables for remote teams.
GothenburgBitFactory/timewarrior 386 Timewarrior - Commandline Time Reporting
lukechilds/gifgen 373 Simple high quality GIF encoding
julianhyde/sqlline 357 Shell for issuing SQL to relational databases via JDBC
mellowcandle/bitwise 349 Terminal based bit manipulator in ncurses
changyuheng/fz 334 Cli shell plugin the missing fuzzy tab completion feature of z jump around command.
specious/facebook-cli 333 ๐Ÿ’ป Facebook command line tool
insanum/sncli 313 Simplenote CLI
bnagy/cgasm 307 We're insanely passionate about command line asm documentation in the cloud and we're crushing it!
jarun/bcal 306 ๐Ÿ”ข Storage and regular CLI calculator
oysttyer/oysttyer 303 An interactive console text-based command-line Twitter client written in Perl
bevacqua/hget 294 ๐Ÿ‘ Render websites in plain text from your terminal
oguzhaninan/korkut 289 Quick and simple image processing at the command line. ๐Ÿ”จ
bntzio/wipe-modules 280 ๐Ÿ—‘๏ธ Easily remove the node_modules folder of non-active projects
sindresorhus/is-up-cli 269 Check whether a website is up or down
kdabir/has 265 โœ… checks presence of various command line tools and their versions on the path
rtfpessoa/diff2html-cli 262 Pretty diff to html javascript cli (diff2html-cli)
sindresorhus/kill-tabs 259 Kill all Chrome tabs to improve performance decrease battery usage and save memory
Trendyol/docker-shell 256 A simple interactive prompt for docker
ManrajGrover/organize-cli 250 ๐Ÿ“‹ Organize your files imagine cleaning up your downloads in an instant
sugyan/ttygif 239 ttyrec to gif
simeg/eureka 229 ๐Ÿ’ก CLI tool to input and store your ideas without leaving the terminal
sindresorhus/npm-name-cli 224 Check whether a package or organization name is available on npm
BibleJS/BibleApp 213 ๐Ÿ“– Bible.JS CLI client. Read the Holy Bible via the command line.
passy/givegif 210 GIFs on the command line
vishwanatharondekar/gitlab-cli 206 Create a merge request from command line in gitlab
frinyvonnick/gitmoji-changelog 200 A changelog generator for gitmoji ๐Ÿ˜œ
marionebl/share-cli 196 ๐ŸŒ Quickly share files from your command line
kevva/brightness-cli 180 Change the screen brightness
yeoman/yosay 179 Tell Yeoman what to say
sindresorhus/del-cli 177 Delete files and directories
NISH1001/playx 172 Search and play any song from terminal
albinekb/open-pip-cli 171 ?
sindresorhus/npm-home 170 Open the npm page Yarn page or GitHub repo of a package
aweary/alder 168 A minimal implementation of the UNIX tree command with colors!
lukechilds/htconvert 167 Convert .htaccess redirects to nginx.conf redirects
mingrammer/awesome-finder 165 ๐Ÿ˜Ž Search the awesome curated list without browser
iCHAIT/moviemon 160 ๐ŸŽฅ Everything about your movies within the command line.
IonicaBizau/idea 158 ๐Ÿ’ก A lightweight CLI tool and module for keeping ideas in a safe place quick and easy.
xxczaki/cash-cli 150 ๐Ÿ’ฐ๐Ÿ’ฐ Convert currency rates directly from your terminal!
sindresorhus/gzip-size-cli 147 Get the gzipped size of a file or stdin
tnalpgge/rank-amateur-cowsay 140 Fork me if you want to maintain cowsay.
larose/utt 138 Ultimate Time Tracker - A simple command-line time tracker written in Python
zaaack/foy 137 A simple light-weight and modern task runner for general purpose.
Angelmmiguel/pm 132 The easy way to switch between your projects on ZSH
cezaraugusto/mklicense 130 ๐Ÿ“‹ ๐ŸŽ‰ CLI tool for generating Licenses. Easily.
shlomif/fortune-mod 129 Implementation of the Unix fortune command for displaying a random quotation for Linux and other systems.
dduan/tre 123 Tree command improved.
lordgiotto/google-font-installer 119 Download and install Google Web Fonts on your local machine. Both CLI and API available.
eneserdogan/trino 116 Trino: Master your translations with command line!
thompsonemerson/moeda 112 ๐Ÿ’ฐ ๐Ÿ“ˆ A foreign exchange rates and currency conversion using CLI
metadelta/mdlt 107 A command-line utility for quick math.
deepjyoti30/QuickWall 106 Set latest wallpapers from Unsplash from the commandline
JPeer264/node-semantic-git-commit-cli 104 A CLI for semantic git commits
jamesgeorge007/scaffold-static 102 Scaffolding utility for vanilla-js
sindresorhus/sparkly-cli 97 Generate sparklines โ–โ–‚โ–ƒโ–…โ–‚โ–‡
darrikonn/td-cli 96 A todo command line todo manager โœ”๏ธ
sindresorhus/get-port-cli 94 Get an available port
mayankchd/movie 90 A CLI for getting information about movies and comparing two movies
omgimanerd/getnews.tech 88 A web server that fetches data from the News API and formats it for display in the terminal.
beatfreaker/text-meme-cli 86 Generate text meme
bogem/nehm 84 (DEPRECATED) โ˜๏ธ CLI for downloading tracks from SoundCloud
jhotmann/node-rename-cli 76 A tool for renaming files quickly especially multiple files at once.
rockymadden/somafm-cli 74 ๐ŸŽต Listen to SomaFM in your terminal via pure bash
sanity-io/groq-cli 68 Run GROQ in your command line
pandastrike/yaml-cli 65 A simple CLI for querying and updating YAML files
zupzup/calories 64 Calories Tracker for the Commandline
ImFeelingDucky/undollar 63 undollar eats the dollar sign in the command you just pasted into your terminal
sindresorhus/hasha-cli 57 Hashing made simple. Get the hash of text or stdin.
sindresorhus/file-type-cli 54 Detect the file type of a file or stdin
silverwind/updates 51 Flexible npm dependency update tool
riyadhalnur/quote-cli 48 Get a random quote or the quote of the day in your CLI
SamVerschueren/mobisplash-cli 47 Mobile app splash screen generator
IonicaBizau/birthday 46 ๐ŸŽ‚ Know when a friend's birthday is coming.
busyloop/vj 45 vj - JSON Humanizer
kevva/viewport-list-cli 44 Return a list of devices and their viewports
sunsations/speed_read 43 speed_read: A simple terminal-based open source Spritz-alike
kevva/imgur-uploader-cli 41 Upload images to imgur
sindresorhus/parse-columns-cli 40 Parse text columns like the output of unix commands. Returns JSON that you can manipulate with tools like jq or underscore-cli.
xxczaki/nasa-cli 38 ๐Ÿš€ Download NASA Picture of the Day from your terminal!
Duroktar/YuleLog 37 A terminal based Yule Log fireplace for all the kids in the corner with sweatpants.
specious/meetup-cli 36 ๐Ÿ• An easy way to keep track of upcoming Meetup events
specious/bitly-client 35 ๐Ÿ”— Create and manage your Bitly shortlinks from the command line
sindresorhus/strip-json-comments-cli 33 Strip comments from JSON. Lets you use comments in your JSON files!
yask123/AutoScreenshotUploader 32 Automagically captures the screenshot of the screen uploads in imgurl copies the url into clipboard deletes the created image file from your desktop
koraa/pipe_exec 31 Execute binaries from pipes stdin and ttys
sindresorhus/app-path-cli 30 Get the path to an app (macOS)
sindresorhus/strip-css-comments-cli 28 Strip comments from CSS
Camji55/googlr 27 Googlr is a command line tool that lets you search Google from your terminal.
sggts04/dankcli 25 CLI Image Captioning Tool or Meme Generator which automatically adds whitespace and text to top
snwfdhmp/simplehttp 24 Pretty simple and lightweight http server for serving local files.
therealklanni/jp 23 A tiny commandline tool for parsing JSON from any source.
antonmedv/ll 21 Opinionated ls rewrite in Go ๐Ÿงฆ
sindresorhus/find-up-cli 20 Find a file by walking up parent directories
sindresorhus/bundle-id-cli 19 Get bundle identifier from a bundle name (macOS): Safari โ†’ com.apple.Safari
dolsup/cli-fireplace 18 ๐ŸŽ‰Enjoy your ๐ŸŽChristmas๐ŸŽ… watching digital fireplace๐Ÿ”ฅ on your own terminal๐Ÿ–ฅ
sindresorhus/npm-user-cli 17 Get user info of an npm user
sindresorhus/to-single-quotes-cli 16 Convert matching double-quotes to single-quotes: I \love\ unicorns โ†’ I 'love' unicorns
sindresorhus/website-popup-cli 14 Open a website in a popup (macOS)
sindresorhus/osx-version-cli 13 Get the macOS version of the current system
beatfreaker/is-reachable-cli 12 Check if hostnames are reachable or not
roma-guru/ricksay 11 Rick & Morty quotes of the day with ponies included!
sindresorhus/pkg-dir-cli 10 Find the root directory of a Node.js project or npm package
italolelis/reachable 9 Reachable is a CLI tool to check if a domain is up
jackel27/jackpaper 8 null
drselump14/ipt 6 interactive pivotal tracker command line interface
kevva/lnfs-cli 4 Safely force create symlinks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment