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.8 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.8 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 --search graph --json
unicode-animatio --show edgepulse
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")
wide_animation = provider.get("helix", length=3)
metadata = provider.describe("helix")

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

length repeats each frame in sync, so a host can request a wider animation without combining independently phased indicators. It defaults to 1 and does not change the frame count or interval.

The provider exposes structural animation records with frames, interval_ms, category, tags, frame count, width hints, motion hints, and usage descriptions. 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,
    metadata_for_spinner,
    search_spinner_names,
    spinner_names_for_category,
)

print(spinner_names_for_category("graph"))
print(SPINNER_CATEGORIES["edgepulse"])
print(search_spinner_names("knowledge", category="graph"))
print(metadata_for_spinner("edgepulse").description)

spinner_names_for_category() returns canonical preset names. SPINNER_CATEGORIES maps each preset name to its category. search_spinner_names() searches preset names, categories, and tags in catalog order.

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 --search knowledge --category graph Searches names, categories, and tags
unicode-animatio --show edgepulse Shows one preset with integration metadata
unicode-animatio --list --category graph --json Prints machine-readable metadata
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
unicode-animatio --search knowledge --category graph
unicode-animatio --show edgepulse
unicode-animatio --show edgepulse --json

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

The browser gallery includes category chips, search, theme toggle, reduced-motion toggle, a selected-preset details panel, and a copyable provider snippet for host integration. It starts from the operating system's color and reduced-motion preferences, remembers explicit choices, supports arrow-key preset selection, shows live filter-result counts, and announces copy and search status to assistive technology.

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, metadata, and searchable tags
  • 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
  • provider-level reduced-motion or accessibility policy beyond metadata hints; the bundled browser preview manages only its own presentation preferences
  • 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 --search stream
unicode-animatio packetflow

For public-facing previews, start with edgepulse, packetflow, helix, synapse, focusbeam, and shimmergrid. They show graph traversal, data movement, thinking, inspection, and high-energy showcase states without needing an application renderer.

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.8.tar.gz (51.2 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.8-py3-none-any.whl (25.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: unicode_animatio-0.0.8.tar.gz
  • Upload date:
  • Size: 51.2 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.8.tar.gz
Algorithm Hash digest
SHA256 81bc8b9d29f2168823b61bbb2e6f4964aec9318f2dbeb27833954b19c729e947
MD5 362b758ef46d07497603f5fa24928c23
BLAKE2b-256 4938298b08d210c8d479486389fdfd28811fe449704d597ccc3daa608640e079

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicode_animatio-0.0.8.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.8-py3-none-any.whl.

File metadata

File hashes

Hashes for unicode_animatio-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 d6a62cb308a340878bcc3a992a072e2bc4633da0532559f72085f44499741e8a
MD5 9b89708bf09556595462f2c47de35a0d
BLAKE2b-256 fbda7ae5ecb3d0555ebad0419624a38c33d6c034cbd83f9fdcd8225282bae199

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicode_animatio-0.0.8-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

This release

0.0.8 This release

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

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