Skip to main content

Unicode Animatio logo

Unicode Animatio

Lightweight Unicode and ASCII terminal animation data for Python.

GitHub · PyPI · Website · Docs · X

PyPI Python License Status

Unicode Animatio v0.0.5 packages deterministic animation frames and timing for terminals and other text renderers. It has no runtime dependencies and does not take ownership of colors, labels, layout, progress, or task state.

The distribution and CLI name is unicode-animatio. The Python import root is unicode_animations.

Read This First

  1. Read At a Glance for the package naming and renderer boundary.
  2. Follow Install and Quick Start to read animation frames and render a first spinner.
  3. Use Python Examples for braille grids, provider integration, and category lookup.
  4. Use Preview Every Animation before choosing a preset.
  5. Read Development before changing the package.

Trust and Brand Safety

Unicode Animatio has no official token, coin, NFT, airdrop, staking program, treasury product, or investment offering. Any claim otherwise is unauthorized and should be treated as a scam.

At a Glance

Distribution unicode-animatio
Import root unicode_animations
Current line v0.0.5 beta
Python 3.9+
Catalog 58 animations across 10 categories
Runtime dependencies None
Not the claim Progress tracking, task orchestration, or framework rendering

Common Commands

python3 -m pip install unicode-animatio
unicode-animatio --list
unicode-animatio --categories
unicode-animatio helix
unicode-animatio-web --port 8765

Install

Install from PyPI:

python3 -m pip install unicode-animatio

For a source checkout:

python3 -m pip install -e ".[dev]"

Quick Start

Animation records contain immutable frames plus an interval in milliseconds:

from unicode_animations import spinners

spinner = spinners["braille"]
print(spinner.frames)
print(spinner.interval)

The host application owns rendering. A minimal terminal loop looks like this:

from itertools import cycle, islice
import sys
import time

from unicode_animations import spinners

spinner = spinners["braille"]

for frame in islice(cycle(spinner.frames), 30):
    sys.stdout.write(f"\r{frame} Working...")
    sys.stdout.flush()
    time.sleep(spinner.interval / 1000)

sys.stdout.write("\n")

This example stops after 30 frames. A real renderer should also handle cancellation, cursor cleanup, reduced-motion preferences, and non-interactive output.

Python Examples

Build a braille frame

Use make_grid to create a dot grid and grid_to_braille to convert it to Unicode braille cells:

from unicode_animations import grid_to_braille, make_grid

grid = make_grid(rows=4, cols=4)
grid[0][0] = True
grid[1][1] = True

print(grid_to_braille(grid))

The compatibility aliases makeGrid and gridToBraille remain available, but new code should use the snake-case names.

Use the provider boundary

Use the provider boundary when the consumer should not depend on the catalog implementation:

from unicode_animations import get_provider

provider = get_provider()
animation = provider.get("helix")

print(provider.provider_id)
print(animation.frames)
print(animation.interval_ms)

The provider exposes structural animation records with frames and interval_ms. This is the preferred boundary for plugin hosts and applications that may swap animation providers.

Browse by category

Use the category API when an application wants to offer a constrained preset picker:

from unicode_animations import SPINNER_CATEGORIES, spinner_names_for_category

print(spinner_names_for_category("graph"))
print(SPINNER_CATEGORIES["edgepulse"])

spinner_names_for_category() returns canonical preset names. SPINNER_CATEGORIES maps each preset name to its category.

Preview Every Animation

The preview tools are the fastest way to understand the catalog. They render the raw records but are not application UI frameworks.

Command What it does
unicode-animatio --list Lists every preset with its category and timing
unicode-animatio --categories Lists the available categories
unicode-animatio --list --category graph Lists only graph presets
unicode-animatio Cycles through the full catalog in a terminal
unicode-animatio helix Runs one preset until interrupted
unicode-animatio --web Opens the local browser gallery
unicode-animatio-web Starts the browser gallery server directly

Terminal preview

Discover presets:

unicode-animatio --list
unicode-animatio --categories
unicode-animatio --list --category graph

Cycle through all animations or run one by name:

unicode-animatio
unicode-animatio helix
unicode-animatio edgepulse

The preview respects terminal color capability by default. Override it when testing a renderer:

unicode-animatio helix --color auto --foreground gray

Press Ctrl+C to stop a running terminal preview.

Browser preview

Open the local gallery through either command:

unicode-animatio --web
unicode-animatio-web --port 8765

For a remote development machine:

unicode-animatio-web --host 0.0.0.0 --port 8765 --no-open

Binding to 0.0.0.0 exposes the preview server to the machine's network. Use that option only on a trusted development network.

Source-checkout terminal demo

The repository includes a longer Python API demo that can cycle through the catalog or focus on one preset:

python examples/terminal_demo.py
python examples/terminal_demo.py --seconds-per-spinner 2 --loops 2
python examples/terminal_demo.py helix
python examples/terminal_demo.py --list

This script is part of the source checkout; it is not installed as a console command.

What Unicode Animatio Provides

  • immutable animation frame data and millisecond timing
  • canonical animation names, categories, and category lookup
  • braille-grid helpers: make_grid and grid_to_braille
  • compatibility aliases: makeGrid and gridToBraille
  • a structural provider entry point for host applications
  • a terminal preview CLI: unicode-animatio
  • a local browser preview CLI: unicode-animatio-web
  • a PEP 561 type marker and typed public API

What Unicode Animatio Does Not Provide

  • terminal UI or async rendering frameworks
  • progress bars, task orchestration, or job-state tracking
  • renderer colors, backgrounds, labels, or layout
  • automatic reduced-motion or accessibility policy
  • hosted demos or remote APIs
  • framework-specific Rich, Textual, or Typer adapters

The host renderer owns presentation and accessibility. The package returns raw frames and timing only.

Available animations

The catalog currently contains 58 deterministic animations:

Category Presets
subtle braille, pulse, orbit, breathe, softdot, slowbreath, quietorbit, dimwave
scan scan, scanline, snake, diagswipe, hscan, vscan, radar, focusbeam
build blocks, stack, assemble, brickline
thinking ellipsis, mindwave, synapse, neuron
tool terminalblink, gearspin, wrench, sparkplug
data braillewave, dna, rain, cascade, columns, waverows, helix, bitstream, packetflow, matrixrain, columns2
graph nodes, edgepulse, cluster, orbitnodes
progress fillsweep, meter, ladder, risingblocks, fillbar2
alert sparkle, warningpulse, heartbeat, ping, flashdot
dense checkerboard, plasma, noise, moire, shimmergrid

Representative first frames show the range of the catalog. The browser and terminal previews show the complete frame sequences.

Preset Category First frame Interval
braille subtle 80 ms
focusbeam scan ---- 90 ms
synapse thinking *.. 100 ms
terminalblink tool $_ 160 ms
packetflow data [>]--- 100 ms
edgepulse graph o---o 90 ms
meter progress [ ] 120 ms
shimmergrid dense .+. 90 ms

Choosing a Preset

Category Good fit
subtle Calm background activity
scan Indexing, searching, or retrieval
build Assembly and compilation
thinking Model or reasoning activity
tool Command and tool execution
data Streaming and data movement
graph Relation traversal and knowledge graphs
progress Steady forward motion
alert Short attention states
dense High-energy or diagnostic displays

Inspect exact names and timing rather than selecting from memory:

unicode-animatio --categories
unicode-animatio --list --category data
unicode-animatio packetflow

Development

make dev-install
make hooks-install
make check

Use make release-check before publishing or changing the documented public surface.

Docs and Release

Questions and bug reports belong in GitHub Issues.

Community

License and Brand-use Boundary

  • Source code license: MIT
  • Brand/trademark grant: none

The license grants rights to use, modify, and redistribute the code. It does not grant rights to present a fork, clone, token, website, or social account as the official Unicode Animatio or OpenMinion project or imply affiliation or endorsement.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unicode_animatio-0.0.5.tar.gz (43.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

unicode_animatio-0.0.5-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file unicode_animatio-0.0.5.tar.gz.

File metadata

  • Download URL: unicode_animatio-0.0.5.tar.gz
  • Upload date:
  • Size: 43.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unicode_animatio-0.0.5.tar.gz
Algorithm Hash digest
SHA256 126323c49ec6122f75132798982a994749883bb18f53e355cc7e45b57d6d6775
MD5 3afc90a7c65295f7fc262283f266f236
BLAKE2b-256 a8c1812be3ec426b72f3919cb61d0a43ca0428e93126164b51c0af3d179cf72e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicode_animatio-0.0.5.tar.gz:

Publisher: release.yml on openminion/unicode-animatio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicode_animatio-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for unicode_animatio-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 03ddacd4f399a8425a9f4d32b7bad1d34e40ae442871147b99ad70584fb6463f
MD5 f57459a33ce3894dc8cff7b1d428f048
BLAKE2b-256 cc5d39b99fa6598cb055abf7e073e65c7a76673e8e32a0c207397a3adda70dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicode_animatio-0.0.5-py3-none-any.whl:

Publisher: release.yml on openminion/unicode-animatio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

This release

0.0.5 This release

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page