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/tom-doerr-zsh_codex-python-command-line-tools"><h6 class="font-weight-bold ">A ZSH plugin that enables you to use OpenAI's powerful Codex AI in the command line. </h6></a> <p class="mb-0 text-muted"> A ZSH plugin that enables you to use OpenAI's powerful Codex AI in the command line. </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/23431444?v=4&s=60" alt="Tom DΓΆrr"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 976 <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/DaVe-Smith-89-Shortcut-Maker-python-command-line-tools"><h6 class="font-weight-bold ">Shortcut-Maker - It is a tool that can be set to run any tool with a single command</h6></a> <p class="mb-0 text-muted"> Shortcut-Maker It is a tool that can be set to run any tool with a single command Coded by Dave Smith(Owner of Sl Cyber Warriors) Command list πŸ‘‡ pkg </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/73696370?v=4&s=60" alt="Dave Smith"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 10 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Sep 14, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/atomcorp-themes-python-command-line-tools"><h6 class="font-weight-bold ">Themes for Windows Terminal</h6></a> <p class="mb-0 text-muted"> Windows Terminal Themes Preview and copy themes for the new Windows Terminal. Use the project at windowsterminalthemes.dev How to use the themes This </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/3504434?v=4&s=60" alt="Tom"> <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 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/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/jacksalici-notion-cli-list-manager"><h6 class="font-weight-bold ">Notion-cli-list-manager - A simple command-line tool for managing Notion databases</h6></a> <p class="mb-0 text-muted"> A simple command-line tool for managing Notion List databases. ✨ </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/58181697?v=4&s=60" alt="Giacomo Salici"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 75 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 04, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/f9n-openstack-bucket-retention"><h6 class="font-weight-bold ">Openstack bucket retention cli</h6></a> <p class="mb-0 text-muted"> Openstack bucket retention cli</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/23155435?v=4&s=60" alt="Fatih Sarhan"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 3 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Apr 03, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/nmeum-saneterm-python-command-line-tools"><h6 class="font-weight-bold ">Modern line-oriented terminal emulator without support for TUIs.</h6></a> <p class="mb-0 text-muted"> Modern line-oriented terminal emulator without support for TUIs.</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/2326560?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 10 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jun 12, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/CalvinLoke-bad-apple-python-command-line-tools"><h6 class="font-weight-bold ">Bad Apple printed out on the console with Python!</h6></a> <p class="mb-0 text-muted"> Bad Apple printed out on the console with Python!</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/70929524?v=4&s=60" alt="CalvinLoke"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 186 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 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/wummel-patool"><h6 class="font-weight-bold ">Patool is a portable command line archive file manager</h6></a> <p class="mb-0 text-muted"> Patool Patool is an archive file manager. Various archive formats can be created, extracted, tested, listed, searched, repacked and compared with pato</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/1279658?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 318 <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/aws-aws-sam-cli"><h6 class="font-weight-bold ">CLI tool to build, test, debug, and deploy Serverless applications using AWS SAM</h6></a> <p class="mb-0 text-muted"> AWS SAM The AWS Serverless Application Model (SAM) is an open-source framework for building serverless applications. It provides shorthand syntax to e</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/2232217?v=4&s=60" alt="Amazon Web Services"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 6.2k <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 08, 2023 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/Gbox4-tstock"><h6 class="font-weight-bold ">Tstock - Check stocks from the terminal</h6></a> <p class="mb-0 text-muted"> tstock - Check stocks from the terminal! πŸ“ˆ tstock is a tool to easily generate stock charts from the command line. Just type tstock aapl to get a 3 m</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/48675187?v=4&s=60" alt="Gabe Banks"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 502 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 30, 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/Dekusec-ig-checker-python-command-line-tools"><h6 class="font-weight-bold ">Cek Username IG Yang Masih Bisa Dipake</h6></a> <p class="mb-0 text-muted"> Cek Username IG Cara Install $ pkg update && pkg upgrade $ pkg install python $ pkg install git $ git clone https://github.com/Dekusec/ig-checker $ cd</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/76611329?v=4&s=60" alt="Deku"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 3 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Nov 28, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/ahopkins-asynccli"><h6 class="font-weight-bold "> A CLI framework based on asyncio</h6></a> <p class="mb-0 text-muted"> asynccli A CLI framework based on asyncio. Note This is still in active development. Things will change. For now, the basic framework is operational. </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/166269?v=4&s=60" alt="Adam Hopkins"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 6 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Nov 13, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/Itz-fork-Gitfetch"><h6 class="font-weight-bold ">Gitfetch is a simple tool to get github user details</h6></a> <p class="mb-0 text-muted"> Gitfetch Just a (cli?) tool to get github user details πŸ™‚ Installation πŸ“‚ Install Gitfetch via pypi pip install gitfetch or pip install git+https://g</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/77770753?v=4&s=60" alt="I'm Not A Bot #Left_TG"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 7 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 23, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/AdityaSai2004-mood_music-python-command-line-tools"><h6 class="font-weight-bold ">A python program to detect your emotion and suggest a playlist.</h6></a> <p class="mb-0 text-muted"> mood_music A python program to detect your emotion and suggest a playlist. This program is written in python using opencv,FER() and tensorflow This pr</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/34617625?v=4&s=60" alt="Aditya_Sai"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 1 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 02, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/bbugyi200-shmgr"><h6 class="font-weight-bold ">CLI tool that helps manage shell libraries.</h6></a> <p class="mb-0 text-muted"> shmgr CLI tool that helps manage shell libraries. Badges πŸ“› project status badges: version badges: tools / frameworks used by test suite (i.e. used by</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/12310550?v=4&s=60" alt="Bryan Bugyi"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 0 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 15, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/a-simple-pydantic-to-form-fastapi-model-converter"><h6 class="font-weight-bold ">πŸͺ› A simple pydantic to Form FastAPI model converter.</h6></a> <p class="mb-0 text-muted"> pyfa-converter Makes it pretty easy to create a model based on Field [pydantic] and use the model for www-form-data. How to install? pip install pyfa_</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/64792903?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 20 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 22, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/kovidgoyal-kitty-python-command-line-tools"><h6 class="font-weight-bold "> kitty - the fast, feature-rich, cross-platform, GPU based terminal</h6></a> <p class="mb-0 text-muted"> kitty - the fast, feature-rich, cross-platform, GPU based terminal</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/1308621?v=4&s=60" alt="Kovid Goyal"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 17.3k <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/serumstudio-hype-python-command-line-tools"><h6 class="font-weight-bold ">βš™ A lightweight command line interface library for creating commands.</h6></a> <p class="mb-0 text-muted"> βš™ A lightweight command line interface library for creating cli commands. About | Installation | Usage | Features | Contributors | License About Next:</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/79014947?v=4&s=60" alt="Serum"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 16 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Sep 25, 2022 </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=1713939127" type="text/javascript"></script> </body> </html>