An integrated shell for working with the Kubernetes

Kube-shell: An integrated shell for working with the Kubernetes CLI Under the hood kube-shell still calls kubectl. Kube-shell aims to provide ease-of-use of kubectl and increasing productivity. kube-shell features Auto Completion of Commands and Options with in-line documentation Fish-Style Auto Suggestions Command History You can use up-arrow and down-arrow to walk through the history of    

Read more

A command-line client for SQLite databases that has auto-completion

Docs A command-line client for SQLite databases that has auto-completion and syntax highlighting. Installation If you already know how to install python packages, then you can install it via pip: You might need sudo on linux. $ pip install -U litecli The package is also available on Arch Linux through AUR in two versions: litecli is based the latest release (git tag) and litecli-git is based on the master branch of the git repo. You can install them manually or […]

Read more

Tmux session manager built on libtmux

tmuxp, tmux session manager. built on libtmux. We need help! tmuxp is a trusted session manager for tmux. If you could lend your time to helping answer issues and QA pull requests, please do! See issue #290! New to tmux? The Tao of tmux is available on Leanpub and Amazon Kindle. Read and browse the book for free on the web. Installation $ pip install –user tmuxp Load a tmux session Load tmux sessions    

Read more

Dead simple CLI tool to try Python packages

try is an easy-to-use cli tool to try out Python packages. Features Install specific package version from PyPI Install package from GitHub Install in virtualenv using specific version of python Specify alternative python package import name Keep try environment after interactive session Launch interactive python console with already imported package Launch editor instead of interpreter Launch arbitrary python shell instead of default python shell Usage try requests try requests –ipython try requests –shell ptipython try requests -p 3.5 try requests […]

Read more

A python tool that periodically collects a list of resources in cloud accounts

Cloudkeeper Cloudkeeper is a standalone CLI tool that periodically collects a list of resources in cloud accounts, provides metrics about them, and can clean them up. If you ever had a standstill in your CI pipeline because a broken job leaked cloud resources which triggered a quota limit wanted to find all the places an expired certificate is used in had to change the tags of thousands of EC2 instances at once needed to delete all unused EBS volumes that […]

Read more

A command-line photo search tool based on the awesome OpenAI’s CLIP neural network

rclip is a command-line photo search tool based on the awesome OpenAI’s CLIP neural network. Installation Currently, pre-built distributable is available only for Linux x86_64. Download the AppImage from the latest release. Execute following commands: $ chmod +x $ sudo mv /usr/local/bin/rclip Usage $ cd photos && rclip “search query” How do I preview the results? The command from below will open top-5 results for “kitty” in your default image viewer. For this to work, you’ll have to index the […]

Read more

A terminal tool for git with python

PIGIT A terminal tool for git. When we use git, do you feel very uncomfortable with too long commands. For example: git status –short, this project can help you improve it. This project is written in Python. Now most UNIX like systems come with Python. So you can easily install and use it. Installation Pip pip install -U pigit Source git clone https://github.com/zlj-zz/pigit.git cd pigit make install # or python setup.py install # On windows Usage You can run pigit […]

Read more

A tracking logs processor to feed your LRS

Ralph Ralph is a command-line tool to fetch, extract, convert and push your tracking logs (aka learning events) from various storage backends to your LRS or any other compatible storage or database backend. Quick start guide Ralph is distributed as a standard python package; it can be installed via pip or any other python package manager (e.g Poetry, Pipenv, etc.): $ pip install ralph-malph Once installed, the ralph command should be available in your PATH. Try to invoke the program […]

Read more

A cli Linux and Windows Nopaystation client made with python and wget

pyNPS pyNPS – A cli Linux and Windows Nopaystation client made with python 3 and wget PyNPS is a Nopaystation client writen in python 3 that, with the help of wget and pkg2zip, can search, download and decrypt/extract PSVita, PSP, PSX, PSM and PS3 games from Nopaystation database. It’s basically a command line version of NPSBrowser writen by a moron (aka me). There are tree methods you can install pyNPS: Using PIP This is for both 32 and 64bits systems. […]

Read more

Doing set operations on files considered as sets of lines

file-set CLI tool that can be used to do set operations like union on files considering them as a set of lines. Notes It ignores all empty lines with whitespaces. Each output line occurs only once, because we’re treating the files as sets and the lines as their elements. List data type has been used instead of set to maintain the order of lines. It ignores all lines endings (rn or n) when comparing lines, so two input lines compare […]

Read more
1 6 7 8 9 10 15