asciinema - Terminal session recorder ๐Ÿ“น

Overview

Note: This is README for development branch. See the version for latest stable release.

asciinema

Build Status PyPI license

Terminal session recorder and the best companion of asciinema.org.

demo

Quick intro

asciinema lets you easily record terminal sessions and replay them in a terminal as well as in a web browser.

Install latest version (other installation options):

sudo pip3 install asciinema

Record your first session:

asciinema rec first.cast

Now replay it with double speed:

asciinema play -s 2 first.cast

Or with normal speed but with idle time limited to 2 seconds:

asciinema play -i 2 first.cast

You can pass -i 2 to asciinema rec as well, to set it permanently on a recording. Idle time limiting makes the recordings much more interesting to watch. Try it.

If you want to watch and share it on the web, upload it:

asciinema upload first.cast

The above uploads it to asciinema.org, which is a default asciinema-server instance, and prints a secret link you can use to watch your recording in a web browser.

You can record and upload in one step by omitting the filename:

asciinema rec

You'll be asked to confirm the upload when the recording is done. Nothing is sent anywhere without your consent.

These are the basics, but there's much more you can do. The following sections cover installation, usage and hosting of the recordings in more detail.

Installation

Python package

asciinema is available on PyPI and can be installed with pip (Python 3 with setuptools required):

sudo pip3 install asciinema

This is the recommended way of installation, which gives you the latest released version.

Native packages

asciinema is included in repositories of most popular package managers on Mac OS X, Linux and FreeBSD. Look for package named asciinema. See the list of available packages.

Running latest version from source code checkout

If you can't use Python package or native package for your OS is outdated you can clone the repo and run asciinema straight from the checkout.

Clone the repo:

git clone https://github.com/asciinema/asciinema.git
cd asciinema

If you want latest stable version:

git checkout master

If you want current development version:

git checkout develop

Then run it with:

python3 -m asciinema --version

Docker image

asciinema Docker image is based on Ubuntu 18.04 and has the latest version of asciinema recorder pre-installed.

docker pull asciinema/asciinema

When running it don't forget to allocate a pseudo-TTY (-t), keep STDIN open (-i) and mount config directory volume (-v):

docker run --rm -ti -v "$HOME/.config/asciinema":/root/.config/asciinema asciinema/asciinema rec

Container's entrypoint is set to /usr/local/bin/asciinema so you can run the container with any arguments you would normally pass to asciinema binary (see Usage section for commands and options).

There's not much software installed in this image though. In most cases you may want to install extra programs before recording. One option is to derive new image from this one (start your custom Dockerfile with FROM asciinema/asciinema). Another option is to start the container with /bin/bash as the entrypoint, install extra packages and manually start asciinema rec:

docker run --rm -ti -v "$HOME/.config/asciinema":/root/.config/asciinema --entrypoint=/bin/bash asciinema/asciinema
[email protected]:~# apt-get install foobar
[email protected]:~# asciinema rec

Usage

asciinema is composed of multiple commands, similar to git, apt-get or brew.

When you run asciinema with no arguments help message is displayed, listing all available commands with their options.

rec [filename]

Record terminal session.

By running asciinema rec [filename] you start a new recording session. The command (process) that is recorded can be specified with -c option (see below), and defaults to $SHELL which is what you want in most cases.

You can temporarily pause recording of terminal by pressing Ctrl+P. This is useful when you want to execute some commands during the recording session that should not be captured (e.g. pasting secrets). Resume by pressing Ctrl+P again.

Recording finishes when you exit the shell (hit Ctrl+D or type exit). If the recorded process is not a shell then recording finishes when the process exits.

If the filename argument is omitted then (after asking for confirmation) the resulting asciicast is uploaded to asciinema-server (by default to asciinema.org), where it can be watched and shared.

If the filename argument is given then the resulting recording (called asciicast) is saved to a local file. It can later be replayed with asciinema play and/or uploaded to asciinema server with asciinema upload .

ASCIINEMA_REC=1 is added to recorded process environment variables. This can be used by your shell's config file (.bashrc, .zshrc) to alter the prompt or play a sound when the shell is being recorded.

Available options:

  • --stdin - Enable stdin (keyboard) recording (see below)
  • --append - Append to existing recording
  • --raw - Save raw STDOUT output, without timing information or other metadata
  • --overwrite - Overwrite the recording if it already exists
  • -c, --command= - Specify command to record, defaults to $SHELL
  • -e, --env= - List of environment variables to capture, defaults to SHELL,TERM
  • -t, --title=</code> - Specify the title of the asciicast</li> <li><code>-i, --idle-time-limit=<sec></code> - Limit recorded terminal inactivity to max <code><sec></code> seconds</li> <li><code>-y, --yes</code> - Answer "yes" to all prompts (e.g. upload confirmation)</li> <li><code>-q, --quiet</code> - Be quiet, suppress all notices/warnings (implies -y)</li> </ul> <p>Stdin recording allows for capturing of all characters typed in by the user in the currently recorded shell. This may be used by a player (e.g. <a href="https://github.com/asciinema/asciinema-player">asciinema-player</a>) to display pressed keys. Because it's basically a key-logging (scoped to a single shell instance), it's disabled by default, and has to be explicitly enabled via <code>--stdin</code> option.</p> <h3><a id="user-content-play-filename" class="anchor" aria-hidden="true" href="#play-filename"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a><code>play <filename></code></h3> <p><strong>Replay recorded asciicast in a terminal.</strong></p> <p>This command replays given asciicast (as recorded by <code>rec</code> command) directly in your terminal.</p> <p>Following keyboard shortcuts are available:</p> <ul> <li><kbd>Space</kbd> - toggle pause,</li> <li><kbd>.</kbd> - step through a recording a frame at a time (when paused),</li> <li><kbd>Ctrl+C</kbd> - exit.</li> </ul> <p>Playing from a local file:</p> <pre><code>asciinema play /path/to/asciicast.cast </code></pre> <p>Playing from HTTP(S) URL:</p> <pre><code>asciinema play https://asciinema.org/a/22124.cast asciinema play http://example.com/demo.cast </code></pre> <p>Playing from asciicast page URL (requires <code><link rel="alternate" type="application/x-asciicast" href="/my/ascii.cast"></code> in page's HTML):</p> <pre><code>asciinema play https://asciinema.org/a/22124 asciinema play http://example.com/blog/post.html </code></pre> <p>Playing from stdin:</p> <pre><code>cat /path/to/asciicast.cast | asciinema play - ssh user@host cat asciicast.cast | asciinema play - </code></pre> <p>Playing from IPFS:</p> <pre><code>asciinema play dweb:/ipfs/QmNe7FsYaHc9SaDEAEXbaagAzNw9cH7YbzN4xV7jV1MCzK/ascii.cast </code></pre> <p>Available options:</p> <ul> <li><code>-i, --idle-time-limit=<sec></code> - Limit replayed terminal inactivity to max <code><sec></code> seconds</li> <li><code>-s, --speed=<factor></code> - Playback speed (can be fractional)</li> </ul> <blockquote> <p>For the best playback experience it is recommended to run <code>asciinema play</code> in a terminal of dimensions not smaller than the one used for recording, as there's no "transcoding" of control sequences for new terminal size.</p> </blockquote> <h3><a id="user-content-cat-filename" class="anchor" aria-hidden="true" href="#cat-filename"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a><code>cat <filename></code></h3> <p><strong>Print full output of recorded asciicast to a terminal.</strong></p> <p>While <code>asciinema play <filename></code> replays the recorded session using timing information saved in the asciicast, <code>asciinema cat <filename></code> dumps the full output (including all escape sequences) to a terminal immediately.</p> <p><code>asciinema cat existing.cast >output.txt</code> gives the same result as recording via <code>asciinema rec --raw output.txt</code>.</p> <h3><a id="user-content-upload-filename" class="anchor" aria-hidden="true" href="#upload-filename"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a><code>upload <filename></code></h3> <p><strong>Upload recorded asciicast to asciinema.org site.</strong></p> <p>This command uploads given asciicast (recorded by <code>rec</code> command) to asciinema.org, where it can be watched and shared.</p> <p><code>asciinema rec demo.cast</code> + <code>asciinema play demo.cast</code> + <code>asciinema upload demo.cast</code> is a nice combo if you want to review an asciicast before publishing it on asciinema.org.</p> <h3><a id="user-content-auth" class="anchor" aria-hidden="true" href="#auth"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a><code>auth</code></h3> <p><strong>Link your install ID with your asciinema.org user account.</strong></p> <p>If you want to manage your recordings (change title/theme, delete) at asciinema.org you need to link your "install ID" with asciinema.org user account.</p> <p>This command displays the URL to open in a web browser to do that. You may be asked to log in first.</p> <p>Install ID is a random ID (<a href="https://en.wikipedia.org/wiki/Universally_unique_identifier" rel="nofollow">UUID v4</a>) generated locally when you run asciinema for the first time, and saved at <code>$HOME/.config/asciinema/install-id</code>. Its purpose is to connect local machine with uploaded recordings, so they can later be associated with asciinema.org account. This way we decouple uploading from account creation, allowing them to happen in any order.</p> <blockquote> <p>A new install ID is generated on each machine and system user account you use asciinema on, so in order to keep all recordings under a single asciinema.org account you need to run <code>asciinema auth</code> on all of those machines.</p> </blockquote> <blockquote> <p>asciinema versions prior to 2.0 confusingly referred to install ID as "API token".</p> </blockquote> <h2><a id="user-content-hosting-the-recordings-on-the-web" class="anchor" aria-hidden="true" href="#hosting-the-recordings-on-the-web"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a>Hosting the recordings on the web</h2> <p>As mentioned in the <code>Usage > rec</code> section above, if the <code>filename</code> argument to <code>asciinema rec</code> is omitted then the recorded asciicast is uploaded to <a href="https://asciinema.org" rel="nofollow">asciinema.org</a>. You can watch it there and share it via secret URL.</p> <p>If you prefer to host the recordings yourself, you can do so by either:</p> <ul> <li>recording to a file (<code>asciinema rec demo.cast</code>), and using <a href="https://github.com/asciinema/asciinema-player#self-hosting-quick-start">asciinema's standalone web player</a> in your HTML page, or</li> <li>setting up your own <a href="https://github.com/asciinema/asciinema-server">asciinema-server</a> instance, and <a href="https://github.com/asciinema/asciinema-server/wiki/Installation-guide#using-asciinema-recorder-with-your-instance">setting API URL accordingly</a>.</li> </ul> <h2><a id="user-content-configuration-file" class="anchor" aria-hidden="true" href="#configuration-file"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a>Configuration file</h2> <p>You can configure asciinema by creating config file at <code>$HOME/.config/asciinema/config</code>.</p> <p>Configuration is split into sections (<code>[api]</code>, <code>[record]</code>, <code>[play]</code>). Here's a list of all available options for each section:</p> <div class="highlight highlight-source-ini"> <pre><span class="pl-en">[api]</span> <span class="pl-c"><span class="pl-c">;</span> API server URL, default: https://asciinema.org</span> <span class="pl-c"><span class="pl-c">;</span> If you run your own instance of asciinema-server then set its address here</span> <span class="pl-c"><span class="pl-c">;</span> It can also be overriden by setting ASCIINEMA_API_URL environment variable</span> <span class="pl-k">url</span> = https://asciinema.example.com <span class="pl-en">[record]</span> <span class="pl-c"><span class="pl-c">;</span> Command to record, default: $SHELL</span> <span class="pl-k">command</span> = /bin/bash -l <span class="pl-c"><span class="pl-c">;</span> Enable stdin (keyboard) recording, default: no</span> <span class="pl-k">stdin</span> = yes <span class="pl-c"><span class="pl-c">;</span> List of environment variables to capture, default: SHELL,TERM</span> <span class="pl-k">env</span> = SHELL,TERM,USER <span class="pl-c"><span class="pl-c">;</span> Limit recorded terminal inactivity to max n seconds, default: off</span> <span class="pl-k">idle_time_limit</span> = 2 <span class="pl-c"><span class="pl-c">;</span> Answer "yes" to all interactive prompts, default: no</span> <span class="pl-k">yes</span> = true <span class="pl-c"><span class="pl-c">;</span> Be quiet, suppress all notices/warnings, default: no</span> <span class="pl-k">quiet</span> = true <span class="pl-c"><span class="pl-c">;</span> Define hotkey for pausing recording (suspending capture of output),</span> <span class="pl-c"><span class="pl-c">;</span> default: C-\</span> <span class="pl-k">pause_key</span> = C-p <span class="pl-c"><span class="pl-c">;</span> Define hotkey prefix key - when defined other recording hotkeys must</span> <span class="pl-c"><span class="pl-c">;</span> be preceeded by it, default: no prefix</span> <span class="pl-k">prefix_key</span> = C-a <span class="pl-en">[play]</span> <span class="pl-c"><span class="pl-c">;</span> Playback speed (can be fractional), default: 1</span> <span class="pl-k">speed</span> = 2 <span class="pl-c"><span class="pl-c">;</span> Limit replayed terminal inactivity to max n seconds, default: off</span> <span class="pl-k">idle_time_limit</span> = 1 <span class="pl-c"><span class="pl-c">;</span> Define hotkey for pausing/resuming playback,</span> <span class="pl-c"><span class="pl-c">;</span> default: space</span> <span class="pl-k">pause_key</span> = p <span class="pl-c"><span class="pl-c">;</span> Define hotkey for stepping through playback, a frame at a time,</span> <span class="pl-c"><span class="pl-c">;</span> default: .</span> <span class="pl-k">pause_key</span> = ] <span class="pl-en">[notifications]</span> <span class="pl-c"><span class="pl-c">;</span> Should desktop notifications be enabled, default: yes</span> <span class="pl-k">enabled</span> = no <span class="pl-c"><span class="pl-c">;</span> Custom notification command</span> <span class="pl-c"><span class="pl-c">;</span> Environment variable $TEXT contains notification text</span> <span class="pl-k">command</span> = tmux display-message <span class="pl-s"><span class="pl-pds">"</span>$TEXT<span class="pl-pds">"</span></span></pre> </div> <p>A very minimal config file could look like that:</p> <div class="highlight highlight-source-ini"> <pre><span class="pl-en">[record]</span> <span class="pl-k">idle_time_limit</span> = 2</pre> </div> <p>Config directory location can be changed by setting <code>$ASCIINEMA_CONFIG_HOME</code> environment variable.</p> <p>If <code>$XDG_CONFIG_HOME</code> is set on Linux then asciinema uses <code>$XDG_CONFIG_HOME/asciinema</code> instead of <code>$HOME/.config/asciinema</code>.</p> <blockquote> <p>asciinema versions prior to 1.1 used <code>$HOME/.asciinema</code>. If you have it there you should <code>mv $HOME/.asciinema $HOME/.config/asciinema</code>.</p> </blockquote> <h2><a id="user-content-contributing" class="anchor" aria-hidden="true" href="#contributing"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a>Contributing</h2> <p>If you want to contribute to this project check out <a href="https://asciinema.org/contributing" rel="nofollow">Contributing</a> page.</p> <h2><a id="user-content-authors" class="anchor" aria-hidden="true" href="#authors"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a>Authors</h2> <p>Developed with passion by <a href="http://ku1ik.com" rel="nofollow">Marcin Kulik</a> and great open source <a href="https://github.com/asciinema/asciinema/contributors">contributors</a>.</p> <h2><a id="user-content-license" class="anchor" aria-hidden="true" href="#license"> <svg class="octicon octicon-link" viewbox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"> <path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path> </svg></a>License</h2> <p>Copyright ยฉ 2011โ€“2019 Marcin Kulik.</p> <p>All code is licensed under the GPL, v3 or later. See LICENSE file for details.</p> </article> </div> </div> </div> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" type="3463953c43b18c592a02463e-text/javascript"></script> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-2693323733590204" data-ad-slot="1585190487"></ins> <script type="3463953c43b18c592a02463e-text/javascript">(adsbygoogle = window.adsbygoogle || []).push({});</script> </div> <div class="col-lg-4 right"> <div id="basic" class="tab-pane fade show active"> <div class="box shadow-sm rounded bg-white mb-3"> <div class="box-title border-bottom p-3"> <h6 class="m-0">Owner</h6> </div> <div class="d-flex align-items-center p-3 job-item-header"> <div class="overflow-hidden mr-2"> <h6 class="font-weight-bold -dark mb-0 text-truncate"> asciinema</h6> <div class="small text-gray-500"> Record and share your terminal sessions, the right way.</div> </div> <img class="img-fluid ml-auto" style="border-radius: 50%;" src="https://avatars.githubusercontent.com/u/6506055?v=4&s=60" alt="asciinema"> </div> <div class="box-body p-3"> <a href="/repo/gitHubRepo/asciinema-asciinema-python-command-line-tools" rel="nofollow" target="_blank" class="btn btn-lg btn-block btn-danger mb-3"><i class="fa fa-github" aria-hidden="true"></i> GitHub Repository</a> <a href="https://asciinema.org" rel="nofollow" target="_blank" class="btn btn-lg btn-block btn-dark mb-3"><i class="fa fa-home" aria-hidden="true"></i> https://asciinema.org</a> </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/simonw-sqlite-utils-python-command-line-tools"><h6 class="font-weight-bold ">Python CLI utility and library for manipulating SQLite databases</h6></a> <p class="mb-0 text-muted"> sqlite-utils Python CLI utility and library for manipulating SQLite databases. Some feature highlights Pipe JSON (or CSV or TSV) directly into a new S</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/9599?v=4&s=60" alt="Simon Willison"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 1.1k <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 04, 2023 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/Second-Hand-Friends-kleinanzeigen-bot"><h6 class="font-weight-bold ">A dilligent command line tool to publish ads on ebay-kleinanzeigen.de </h6></a> <p class="mb-0 text-muted"> kleinanzeigen-bot Feedback and high-quality pull requests are highly welcome! About Installation Usage Development Notes License About kleinanzeigen-b</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/96446223?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 83 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 26, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/Matthias1590-ProgressBars"><h6 class="font-weight-bold ">A python package to display progress of loops to the user</h6></a> <p class="mb-0 text-muted"> ProgressBars A python package to display progress of loops to the user. Installation This package can be installed using pip. pip install progressbars</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/48327140?v=4&s=60" alt="Matthias"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 3 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 16, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/rahulunair-repo-peek"><h6 class="font-weight-bold ">open a remote repo locally quickly</h6></a> <p class="mb-0 text-muted"> A command line tool to peek a remote repo hosted on github or gitlab locally and view it in your favorite editor. The tool handles cleanup of the repo once you exit your editor.</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/786476?v=4&s=60" alt="Rahul Nair"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 44 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 16, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/microsoft-aui-cli"><h6 class="font-weight-bold ">Command line client for Audience Insights</h6></a> <p class="mb-0 text-muted"> Dynamics 365 Audience Insights CLI The AuI CLI is a command line tool for Dynamics 365 Audience Insights. It is based on the customerinsights Python l</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/6154722?v=4&s=60" alt="Microsoft"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 8 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 09, 2023 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/ericmjl-pyds-cli-python-command-line-tools"><h6 class="font-weight-bold ">Helping you manage your data science projects sanely.</h6></a> <p class="mb-0 text-muted"> PyDS CLI Helping you manage your data science projects sanely. Requirements Anaconda/Miniconda/Miniforge/Mambaforge (Mambaforge recommended!) git on y</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/2631566?v=4&s=60" alt="Eric Ma"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 16 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Apr 25, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/Eroxl-MacOS-Folder-Icon-Changer"><h6 class="font-weight-bold ">A simple command line tool for changing the icons of folders or files on MacOS.</h6></a> <p class="mb-0 text-muted"> Mac OS File Icon Changer Description A small and simple script to quickly change large amounts or a few files and folders icons to easily customize th</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/77178777?v=4&s=60" alt="Eroxl"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 3 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 02, 2023 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/CS-SI-eodag-python-command-line-tools"><h6 class="font-weight-bold ">EODAG is a command line tool and a plugin-oriented Python framework for searching, aggregating results and downloading remote sensed images while offering a unified API for data access regardless of the data provider</h6></a> <p class="mb-0 text-muted"> EODAG (Earth Observation Data Access Gateway) is a command line tool and a plugin-oriented Python framework for searching, aggregating results and downloading remote sensed images while offering a un</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/6223127?v=4&s=60" alt="CS GROUP"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 205 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 03, 2023 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/wilrnh-sync-my-tasks-python-command-line-tools"><h6 class="font-weight-bold ">sync-my-tasks is a CLI tool that copies tasks between apps.</h6></a> <p class="mb-0 text-muted"> sync-my-tasks Copy tasks between apps Report a Bug ยท Request a Feature . Ask a Question Table of Contents Table of Contents Getting Started Developmen</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/555966?v=4&s=60" alt="William Hutson"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 2 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 14, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/DivyanshFalodiya-plagiarism-detector-python-command-line-tools"><h6 class="font-weight-bold ">A CLI Application to detect plagiarism in Source Code Files.</h6></a> <p class="mb-0 text-muted"> Plag Description A CLI Application to detect plagiarism in Source Code Files. Features Compare source code files for plagiarism. Extract code features</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/33622561?v=4&s=60" alt="default=dev"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 2 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Nov 10, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/dallas123456789-vba_bin_runner-python-command-line-tools"><h6 class="font-weight-bold ">Basic python tools to generate shellcode runner in vba</h6></a> <p class="mb-0 text-muted"> vba_bin_runner Basic python tools to generate shellcode runner in vba. The stub use ZwAllocateVirtualMemory to allocate memory, RtlMoveMemory to write</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/87316528?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 4 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Aug 24, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/tlkh-asitop-python-command-line-tools"><h6 class="font-weight-bold ">Apple Silicon 'top' CLI</h6></a> <p class="mb-0 text-muted"> asitop pip install asitop What A nvtop/htop style/inspired command line tool for Apple Silicon (aka M1) Macs. Note that it requires sudo to run due to</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/5409617?v=4&s=60" alt="Timothy Liu"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 1.2k <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 31, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/k-zehnder-pyflycli"><h6 class="font-weight-bold ">Python Command Line Application (CLI) using Typer, SQLModel, Async-PostgrSQL, and FastAPI</h6></a> <p class="mb-0 text-muted"> pyflycli is a command-line interface application built with Typer that allows you to view flights above your location.</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/51463990?v=4&s=60" alt="Kevin Zehnder"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 14 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 01, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/timofurrer-try-python-command-line-tools"><h6 class="font-weight-bold ">Dead simple CLI tool to try Python packages - It's never been easier! :package: </h6></a> <p class="mb-0 text-muted"> try - It's never been easier to try Python packages try is an easy-to-use cli tool to try out Python packages. Features Install specific package versi</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/1008252?v=4&s=60" alt="Timo Furrer"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 659 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 28, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/jason-chao-wordle-solver"><h6 class="font-weight-bold ">Wordle-solver - A tool that helps people who struggle with vocabulary to enjoy the famous game of WORDLE</h6></a> <p class="mb-0 text-muted"> Wordle-Solver Wordle-Solver helps people who struggle with vocabulary to enjoy t</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/21163588?v=4&s=60" alt="Jason Chao"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 104 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 31, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/Kerkpower-duckari-python-command-line-tools"><h6 class="font-weight-bold ">A Hikari command handler for people who love ducks.</h6></a> <p class="mb-0 text-muted"> duckari A Hikari command handler made with love by ducks. Currently Duckari is work in progress. Documentation is WIP. The wiki is no longer used as d</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/78611077?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 2 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 09, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/salahdin-ahmed-vimBrain"><h6 class="font-weight-bold ">vimBrain is a brainfuck-based vim-inspired esoteric programming language.</h6></a> <p class="mb-0 text-muted"> vimBrain vimBrain is a brainfuck-based vim-inspired esoteric programming language. vimBrainPy Currently, the only interpreter available is written in </p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/63563250?v=4&s=60" alt="SalahDin Ahmed"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 3 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> May 08, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/onetwopunch-gcptree-python-command-line-tools"><h6 class="font-weight-bold "> gcptree - Like the unix tree command but for GCP Org Heirarchy</h6></a> <p class="mb-0 text-muted"> gcptree Like the unix tree command but for GCP Org Heirarchy. For a note on coloring, the org node is green, folders and blue, and projects that are n</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/1054518?v=4&s=60" alt="Ryan Canty"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 25 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Sep 06, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/GToidZ-life-is-fantasy-epic-python-command-line-tools"><h6 class="font-weight-bold ">A fantasy life simulator and role-playing game hybrid distributed as CLI, written in Python 3.</h6></a> <p class="mb-0 text-muted"> Life is Fantasy Epic (LIFE) A fantasy life simulator and role-playing game hybrid distributed as CLI, written in Python 3. This repository will be pro</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/39559733?v=4&s=60" alt="Pawitchaya Chaloeijanya"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 2 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 24, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/skvark-opencv-python-python-command-line-tools"><h6 class="font-weight-bold ">Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.</h6></a> <p class="mb-0 text-muted"> OpenCV on Wheels Pre-built CPU-only OpenCV packages for Python. Check the manual build section if you wish to compile the bindings from source to enab</p> </div> <div class="p-2"> <img class="lazy img-fluid mr-3" style="border-radius: 50%; width: 50px; height: 50px;" data-original="https://avatars.githubusercontent.com/u/5009934?v=4&s=60" alt="OpenCV"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 3.2k <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 04, 2023 </div> </div> </div> </div> </div> </div> <footer class="bg-white"> <div class="container"> <div class="copyright"> <div class="logo"> <a href="/"> <img src="/assets/images/logo_pythonrepo.png"> </a> </div> <p>2022.PythonRepo </p> <ul class="social"> <li> <a href="/about">About</a>   </li> <li> <a href="/contact">Contact Us</a>   </li> <li> <a href="/dmca">DMCA</a>   </li> <li> <a href="/disclaimer">Disclaimer</a>   </li> <li> <a href="/privacypolicy">Privacy Policy</a>   </li> </ul> </div> </div> </footer> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha512-bnIvzh6FU75ZKxp0GXLH9bewza/OIw6dLVh9ICg0gogclmYGguQJWl8U30WpbsGTqbIiAwxTsbe76DErLq5EDQ==" crossorigin="anonymous" type="3463953c43b18c592a02463e-text/javascript"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.bundle.min.js" integrity="sha512-Oy5BruJdE3gP9+LMJ11kC5nErkh3p4Y0GawT1Jrcez4RTDxODf3M/KP3pEsgeOYxWejqy2SPnj+QMpgtvhDciQ==" crossorigin="anonymous" type="3463953c43b18c592a02463e-text/javascript"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/js/select2.min.js" integrity="sha512-2ImtlRlf2VVmiGZsjm9bEyhjGW4dU7B6TNwh/hx/iSByxNENtj3WVE6o/9Lj4TJeVXPi4bnOIMXFIJJAeufa0A==" crossorigin="anonymous" type="3463953c43b18c592a02463e-text/javascript"></script> <script src="/assets/js/custom.js" type="3463953c43b18c592a02463e-text/javascript"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazyload/1.9.1/jquery.lazyload.min.js" type="3463953c43b18c592a02463e-text/javascript"></script> <script type="3463953c43b18c592a02463e-text/javascript"> $(function() { $("img.lazy").lazyload({ threshold :180, failurelimit :20, effect : "fadeIn" }); }); </script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js" type="3463953c43b18c592a02463e-text/javascript"></script> <script type="3463953c43b18c592a02463e-text/javascript"> hljs.initHighlightingOnLoad(); </script> <script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="3463953c43b18c592a02463e-|49" defer=""></script> <script src="/static/js/jquery-3.6.0.min.js" type="text/javascript"></script> <script src="/adview_pic_cpc_cpm_cpa_guanggao_gg_ads_300x250.js?v=1737543134" type="text/javascript"></script> </body> </html>