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/SekaiKode-pastekan-cli"><h6 class="font-weight-bold ">Pastekan adalah website paste kode / teks sederhana</h6></a> <p class="mb-0 text-muted"> Pastekan pastekan adalah website paste kode / teks sederhana. install pip install pastekan penggunaan pastekan myfile.txt atau echo "hi" | pastekan </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/95667297?v=4&s=60" alt="Sekai Kode"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 1 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 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/HallerPatrick-py_lsp-nvim-python-command-line-tools"><h6 class="font-weight-bold ">Lsp Plugin for working with Python virtual environments</h6></a> <p class="mb-0 text-muted"> py_lsp.nvim What is py_lsp? py_lsp.nvim is a neovim plugin that helps with using the lsp feature for python development. It tackles the problem about </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/22773355?v=4&s=60" alt="Patrick Haller"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 55 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 27, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/dylannalex-Physics2Calculator-python-command-line-tools"><h6 class="font-weight-bold ">šŸ’» Physics2Calculator - A simple and powerful calculator for Physics 2</h6></a> <p class="mb-0 text-muted"> šŸ’» Physics2Calculator A simple and powerful calculator for Physics 2 šŸ”Œ Predefined constants pi = 3.14159... k = 8988000000 (coulomb constant) e0 = 8.</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/59183947?v=4&s=60" alt="Dylan Tintenfich"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 4 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Dec 01, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/bart358-wordle"><h6 class="font-weight-bold ">Analysis of a daily word game "Wordle"</h6></a> <p class="mb-0 text-muted"> Wordle Analysis of a daily word game "Wordle" https://www.powerlanguage.co.uk/wordle/ Description Worlde is a daily word game in which a player attemp</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/63881724?v=4&s=60" alt="Bartek"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 1 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Feb 07, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/KingWaffleIII-kommander"><h6 class="font-weight-bold ">A simple web-based SSH client.</h6></a> <p class="mb-0 text-muted"> Kommander A simple web-based SSH client. It supports: entering SSH login details (including private key and custom ports) and connecting user authenti</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/43790097?v=4&s=60" alt="KingWaffleIII"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 2 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jan 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/Wojnstup-PipeCat-python-command-line-tools"><h6 class="font-weight-bold ">PipeCat - A command line Youtube music player written in python.</h6></a> <p class="mb-0 text-muted"> A command line Youtube music player written in python. It's an app written for Linux. It also supports offline playlists that are stored in a </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/78437858?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 34 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Nov 27, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/lukexyz-tactivity"><h6 class="font-weight-bold ">Custom function scheduler TUI (text-based user interface) in the console</h6></a> <p class="mb-0 text-muted"> Custom function scheduler TUI (text-based user interface) in the console</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/13252029?v=4&s=60" alt="Luke"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 1 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 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/samdobson-Azure-Container-Registry-Browser"><h6 class="font-weight-bold ">A terminal application for managing images and artifacts in Azure Container Registry.</h6></a> <p class="mb-0 text-muted"> acr-browser acr-browser is a terminal-based user interface for managing container images and artifacts in Azure Container Registry. šŸš€ This project ow</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/1309834?v=4&s=60" alt="Sam Dobson"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 5 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Jul 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/martriay-nile-python-command-line-tools"><h6 class="font-weight-bold ">CLI tool to develop StarkNet projects written in Cairo</h6></a> <p class="mb-0 text-muted"> ā›µ Nile Navigate your StarkNet projects written in Cairo. Installation pip install cairo-nile Usage Install Cairo Use nile to install a given version o</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/1703831?v=4&s=60" alt="MartĆ­n Triay"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 305 <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/jwodder-ps1-py-python-command-line-tools"><h6 class="font-weight-bold ">Yet another bash/zsh prompt script</h6></a> <p class="mb-0 text-muted"> Here we have yet another script for Git-aware customization of the command prompt in Bash and zsh. Unlike all the other scripts, I wrote this one, so </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/98207?v=4&s=60" alt="John T. Wodder II"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 5 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 13, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/zijianjiao2017-pyCLD-python-command-line-tools"><h6 class="font-weight-bold ">A simple command line dumper written in Python 3.</h6></a> <p class="mb-0 text-muted"> A simple command line dumper written in Python 3.</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/61231083?v=4&s=60" alt="ImFatF1sh"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 1 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 10, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/dsc-iiest-todo-cli"><h6 class="font-weight-bold ">Command Line Based Todo Script</h6></a> <p class="mb-0 text-muted"> Todo-CLI Features Full-Fledged Command Line Based Todo List with the following features planned: Interactive Interface OS Notifications Save and Remov</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/88282317?v=4&s=60" alt="DSC IIEST"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 5 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Nov 17, 2021 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/popovicn-grepgithub-python-command-line-tools"><h6 class="font-weight-bold ">Command line util for grep.app - Search across a half million git repos</h6></a> <p class="mb-0 text-muted"> grepgithub Command line util for grep.app - Search across a half million git repos Grepgithub uses grep.app API to search GitHub repositories, providi</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/31278778?v=4&s=60" alt="Nenad Popovic"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 18 <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/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/GamestonkTerminal-GamestonkTerminal-python-command-line-tools"><h6 class="font-weight-bold ">Gamestonk Terminal is an awesome stock and crypto market terminal </h6></a> <p class="mb-0 text-muted"> Gamestonk Terminal is an awesome stock and crypto market terminal. A FOSS alternative to Bloomberg 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/80064875?v=4&s=60" alt="Gamestonk Terminal"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 18.6k <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/dwreeves-Flask-Postgres-python-command-line-tools"><h6 class="font-weight-bold ">Simple CLI for managing Postgres databases in Flask.</h6></a> <p class="mb-0 text-muted"> Overview Simple CLI that provides the following commands: flask psql create flask psql init flask psql drop flask psql setup: create ā†’ init flask psql</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/31971762?v=4&s=60" alt="Daniel Reeves"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 21 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 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/tmux-plugins-tmux-fpp-python-command-line-tools"><h6 class="font-weight-bold ">Quickly open any path on your terminal window in your $EDITOR of choice!</h6></a> <p class="mb-0 text-muted"> Tmux fpp Plugin wrapper around Facebook PathPicker. Quickly open any path on your terminal window in your $EDITOR of choice! Demo Dependencies fpp - F</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/8289877?v=4&s=60" alt=""> <i class="fa fa-star ml-3" aria-hidden="true"></i> 257 <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/TheOddZer0-MiShell-python-command-line-tools"><h6 class="font-weight-bold ">MiShell is a multi-platform, multi-architecture project based on the first version (MiShell32)</h6></a> <p class="mb-0 text-muted"> MiShell is a multi-platform, multi-architecture project based on the first version (MiShell32), which offers super super small reverse shell payloads great for injection in buffer overflow vulnerabil</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/65390948?v=4&s=60" alt="Kamyar Hatamnezhad"> <i class="fa fa-star ml-3" aria-hidden="true"></i> 0 <i class="fa fa-clock-o ml-3" aria-hidden="true"></i> Oct 27, 2022 </div> </div> <div class="box shadow-sm mb-3 rounded bg-white ads-box"> <div class="p-3 border-bottom"> <a href="/repo/ydlogcs-Loading-Animation"><h6 class="font-weight-bold ">Loading animation; a progress bar</h6></a> <p class="mb-0 text-muted"> Loading animation; a progress bar. When you know the remaining time or task completion percentage, then youā€™re able to show an animated progress bar: </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/95511924?v=4&s=60" alt="Goldy"> <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 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/ostin-power-HostManager"><h6 class="font-weight-bold ">A small system that allow you to manage hosts stored in your .ssh/config file</h6></a> <p class="mb-0 text-muted"> A small system that allow you to manage hosts stored in your .ssh/config using simple commands.</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/77856088?v=4&s=60" alt="Simone Ostini"> <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 24, 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=1715318867" type="text/javascript"></script> </body> </html>