Skip to main content

zivo is a simple and intuitive TUI file manager that lets you browse, search, and operate files without memorizing commands — a Zero-friction Interface for Viewing & Operations.

Project description

zivo

CI License Python Release Ruff


English | 日本語

zivo is a simple and intuitive TUI file manager that lets you browse, search, and operate files without memorizing commands — a Zero-friction Interface for Viewing & Operations.

zivo aims to be usable by everyone without complex configuration, plugin installation, or script creation. It does not aim to do everything — it focuses on making common operations comfortable and simple to perform.

  • No memorization needed: Common actions are always visible in the help bar
  • Never get lost: All actions can be called from the command palette
  • Clear 3-pane layout: Parent, current, and right panes displayed side by side, with text, image, and document preview for focused files
  • Transfer mode: Put two directories side by side to copy or move files with ease
  • Tabbed browsing: Keep multiple browser workspaces open inside one TUI and switch between them quickly
  • Powerful search: Jump directly to files with recursive file search and grep search
  • Terminal editor integration: Launch your preferred terminal editor in the current directory
  • External app integration: Open files directly with their default applications

Features

  • Simple three-pane layout for parent / current / right panes. When the cursor is on a directory, the right pane shows its children. When the cursor is on a common text file, the right pane shows a syntax-highlighted text preview. Common image formats can be previewed as character art through chafa, and pdf, docx, xlsx, and pptx files can also be previewed in the right pane. You can switch to a two-pane transfer layout for side-by-side directory copy and move workflows. You can navigate directories, multi-select items, copy, cut, paste, undo recent file operations, move items to trash, delete files, copy paths, rename, create files or directories, extract archives, create zip archives, preview and replace text across selected files, replace text in files found by file search or grep search, search for files, run grep searches, and execute one-line shell commands entirely from the keyboard. Common actions stay visible in the help bar at the bottom.

  • Less frequent actions are grouped in the command palette, so you can discover and run them without memorizing every shortcut.

  • The beginning of text files, pdfs, docx, xlsx, and pptx files can be previewed directly, so you can quickly inspect the file without opening it. The preview is limited to the first 64 KiB of the file.

  • Images can be previewed as character-based art using chafa.

  • Multiple tabs let you keep separate working directories open in one zivo session. You can open a new tab, switch to the next or previous tab, and close the current tab without leaving the TUI.

  • You can switch to a two-pane transfer layout that places directories side by side for easy copy and move operations.

  • Press ! to execute one-line shell commands in the current directory. Command results are displayed in the status bar, making it convenient for quick tasks while maintaining your zivo session.

  • Recursive file search makes it easy to jump to the file you want. Just type part of the name to instantly filter through thousands of files and reach your target without drilling through the directory tree manually. Search results also support file preview, making it easy to find what you are looking for.

  • Recursive grep search is available under the current directory. You can jump from search results directly to the matching file. Context lines around each match can be previewed, making it easy to find what you are looking for. The palette includes Filter: Filename, Include extensions, and Exclude extensions fields so you can narrow matches before opening them. You can also open the matching location directly in a terminal editor.

  • Text replacement with preview and execution is available for selected files and files found through searches. A diff preview is displayed in the right pane, allowing you to verify changes before applying batch replacements. You can specify replacement target files through multiple methods: selected files, file search results, or grep search results. You can also narrow targets by filename pattern or extensions, or perform grep search with a keyword before replacement. To prevent accidental changes, you can always verify replacements with a preview before execution.

  • Filter input and sort switching are supported. The example below filters by .py and sorts by modified time in descending order.

  • Bookmarks let you jump directly to saved directories.

  • History lets you jump back to recently visited directories.

  • Press e on a file to switch into a terminal editor in the current terminal session. Editors such as nvim, vim, and nano can be used seamlessly. The following shows an example of opening Vim from zivo.

  • Press t to pause zivo and open an interactive shell in the foreground in your current terminal. When you exit the shell with exit, zivo automatically resumes, eliminating the need to manage separate windows or terminal multiplexers. This is convenient for temporary command execution or directory operations while maintaining your zivo session.

  • Multiple themes are available so you can choose your preferred look.

  • Files and directories can be opened with the OS default application. For example, you can open the current directory in the OS file manager, open a file in VS Code if it is associated on the OS side, or launch an external terminal window rooted at the current directory.

Supported OS

OS Support Status Notes
Ubuntu Supported Primary verified environment at the moment.
Ubuntu (WSL) Supported WSL running Ubuntu is part of the verified environments.
macOS Supported Grant Full Disk Access to your terminal for trash operations.
Windows Supported Drive navigation, file operations, clipboard, shell commands, external terminal, undo, and most features. zivo-cd is not yet available on Windows.

Installation

Prerequisites: Install uv

zivo uses uv as the package manager. If you don't have it yet, install it first:

curl -LsSf https://astral.sh/uv/install.sh | sh

For other installation methods, see the uv official documentation.

Install from PyPI

With uv installed, install zivo directly from PyPI.

uv tool install zivo

Install from repository

Alternatively, clone the repository and install zivo as a tool.

git clone https://github.com/devgamesan/zivo.git
cd zivo
uv tool install --from . zivo

To update, pull the latest changes and run the same install command again.

Dependencies

zivo itself can be installed and started with uv, but some features depend on external commands being available on PATH. The required tools vary by OS or environment.

Feature Ubuntu / Debian Ubuntu (WSL) macOS Windows
Document preview (docx / xlsx / pptx) pandoc 3.8.3+ pandoc 3.8.3+ pandoc 3.8.3+ pandoc 3.8.3+
Image preview (png / jpg / gif / webp / etc.) chafa chafa chafa chafa
PDF preview (pdf) poppler-utils poppler-utils poppler poppler (pdftotext)
Grep search (g) ripgrep ripgrep ripgrep ripgrep
Copy path (C) X11: xclip / Wayland: wl-clipboard Usually none (clip.exe), optional: xclip / wl-clipboard None (pbcopy built in) Built-in
GUI bridge commands None wslu recommended None Built-in

Note: Some distributions may not provide pandoc 3.8.3+ through their package managers. If the installed version is older than 3.8.3, install the latest version manually from the official pandoc website: https://pandoc.org/installing.html

Install example:

# Ubuntu / Debian (X11)
sudo apt install chafa pandoc poppler-utils ripgrep xclip

# Ubuntu / Debian (Wayland)
sudo apt install chafa pandoc poppler-utils ripgrep wl-clipboard

# Ubuntu (WSL)
sudo apt install chafa pandoc poppler-utils ripgrep wslu

# macOS
brew install chafa pandoc poppler ripgrep

Windows

On Windows, drive roots such as C:\ support pressing to return to the drive list so you can switch between drives without leaving zivo.

Install the required dependencies from their official websites:

On macOS, grant Full Disk Access to your terminal application. Open System Settings > Privacy & Security > Full Disk Access and enable the terminal app you use to run zivo (for example Terminal.app, iTerm2, or Alacritty). Without this permission, operations that access ~/.Trash or other protected directories will fail.

Run

zivo

zivo itself cannot change the current directory of the parent shell. If you want your shell to follow the last directory you visited after quitting zivo, add shell integration first:

eval "$(zivo init bash)"  # for bash
eval "$(zivo init zsh)"   # for zsh

Note: Shell integration (zivo-cd) is currently not supported on Windows. Use plain zivo on Windows.

This defines a shell function named zivo-cd. Start zivo with zivo-cd when you want the parent shell to cd into the last directory on exit:

zivo-cd

Use plain zivo when you only want to browse without changing the shell's working directory.

When a file is focused, press e to switch into a terminal editor in the current terminal session. zivo prefers config.toml editor.command when set, then falls back to $EDITOR, then built-in defaults such as nvim, vim, or nano.

Keybindings

Normal Mode

You can open an external terminal directly from zivo. Press t to suspend zivo and open an interactive shell in the current terminal at zivo's current directory. When you exit the shell, zivo resumes automatically—no need to manually change directories or manage multiple terminal windows. Alternatively, press T to launch a separate terminal window.

Key Action
j / Move down
PageUp / PageDown Move cursor by page
k / Move up
Home / End Jump to first/last visible entry
h / Go to parent directory
l / Enter directory
Shift+↑ / Shift+↓ Extend selection
Enter Open file/enter directory
Space Toggle selection and move down
a Select all visible entries
Esc Clear selection / Cancel filter
c Copy selected items
x Cut selected items
v Paste from clipboard
z Undo the last reversible file operation
C Copy paths to clipboard
r Rename selected item
n Create new file
N Create new directory
d Move selected items to trash
D Permanently delete selected items
Delete Move selected items to trash (fn + Delete on macOS)
Shift+Delete Permanently delete selected items (fn + Shift + Delete on macOS)
i Show file attributes
e Open file in terminal editor
! Execute shell command
f Find files (recursive search)
g Grep search
/ Filter files
H Show history
b Show bookmarks
B Toggle current directory bookmark
G Go to path
~ Go to home directory
. Toggle hidden files
s Cycle sort
R Reload directory
t Open terminal in foreground (suspend zivo, open shell in current terminal, resume on exit)
T Open terminal at current directory (separate window)
o Open new tab
w Close current tab
1-9, 0 Switch to tab 1-9, or tab 10 with 0
tab Switch to next tab
shift+tab Switch to previous tab
M Open current directory in file manager
: Open command palette
q Quit
[ Scroll the right-pane text preview up by a page
] Scroll the right-pane text preview down by a page
{ Go back in history
} Go forward in history
p Toggle two-pane transfer mode

Transfer Mode

Key Action
Esc Return to normal mode / Clear selection
[ / ] Focus the left/right transfer pane
j / Move down in the focused pane
k / Move up in the focused pane
PageUp / PageDown Move by page in the focused pane
Home / End Jump to first/last visible entry in the focused pane
h / Go to parent directory in the focused pane
~ Go to home directory in the focused pane
l / / Enter Enter directory in the focused pane
Space Toggle selection and move down in the focused pane
Shift+↑ / Shift+↓ Extend selection in the focused pane
a Select all visible entries in the focused pane
c Copy selected items to clipboard
x Cut selected items to clipboard
v Paste from clipboard to focused pane
y Copy focused-pane targets to opposite pane (copy-to-pane)
m Move focused-pane targets to opposite pane (move-to-pane)
d Delete focused-pane targets to trash
r Rename focused or single selected entry
z Undo the last file operation
. Toggle hidden files
N Create new directory in the focused pane
b Show bookmarks
H Show history
: Open a transfer-mode command palette with transfer-available commands only
o Open new tab
w Close current tab
1-9, 0 Switch to tab 1-9, or tab 10 with 0
tab Switch to next tab
shift+tab Switch to previous tab
p / Esc Return to normal mode

Input Dialogs

Key Action
Enter Confirm
Esc Cancel
Tab Complete (where supported)
Ctrl+v Paste from clipboard

Search Results Mode (File Search / Grep Search)

Key Action
/ Move cursor through results
Ctrl+n / Ctrl+p Move cursor down/up through results
PageUp / PageDown Move cursor by page
Home / End Jump to first/last result
Enter Open selected result
Ctrl+e Open selected result in editor
Esc Close search

Note: In search results mode, use arrow keys to navigate. j/k keys are used for typing the search query.

Filter Mode

Key Action
Text input Update filter string
Backspace Delete one character
Enter / Apply filter and return to list navigation
Esc Clear the filter

Command Palette Mode

Key Action
Text input / / / Ctrl+n / Ctrl+p / k / j / Enter / Esc Filter, select, run, or cancel commands. In Find files and Grep search, j / k are treated as text input and result navigation uses / or Ctrl+n / Ctrl+p.

When the Replace text preview is open in the right pane, Shift+↑ / Shift+↓ scroll that preview.

Config Editor Mode

Key Action
/ / Ctrl+n / Ctrl+p Move between settings
/ / Enter Change the selected value
s Save config.toml
e Open the raw config file in a terminal editor
r Reset help bar text to the built-in defaults
Esc Close the config editor

Name Input Mode

Key Action
Text input / Backspace / Enter / Esc Edit, confirm, or cancel rename/create input

Confirmation Dialog Mode

Key Action
Enter / Esc Confirm or cancel trash / permanent delete
o / s / r / Esc Resolve a paste conflict with overwrite / skip / rename / cancel

Command Palette

Less frequent actions are grouped in the command palette opened with :. In transfer mode, the command palette only shows commands that are available for the active transfer pane. The tab strip is only shown when two or more browser tabs are open.

Command Shown when Behavior / Notes
New tab Always Opens a new browser tab initialized from the current directory. Also available with o.
Next tab Two or more tabs are open Activates the next browser tab. Also available with tab.
Previous tab Two or more tabs are open Activates the previous browser tab. Also available with shift+tab.
Close current tab Two or more tabs are open Closes the active browser tab. The last remaining tab cannot be closed. Also available with w.
Find files Always Opens recursive file search.
Grep search Always Opens recursive grep search (ripgrep / rg required on PATH) with keyword, filename, include-extension, and exclude-extension filters.
Grep in selected files A file is focused or one or more files are selected in the current directory Opens grep search limited to the selected files, or the focused file when nothing is explicitly selected. Type a keyword to search within those files via grep, and matching lines appear in the palette. Use / or Ctrl+n / Ctrl+p to move between results, Enter to navigate to the file, and Ctrl+e to open the file in a terminal editor.
History search Always Opens directory history list and jump to a selected directory.
Show bookmarks Always Opens the saved bookmark list and jumps to the selected directory.
Go back Directory history has a previous entry Moves to the previous directory in history.
Go forward Directory history has a forward entry Moves to the next directory in history.
Go to path Always Opens go-to-path input to navigate to a specific path, shows matching directories, and supports Tab completion for the selected candidate. On native Windows, drive roots are also offered so you can switch between drives quickly.
Go to home directory Always Navigates to the home directory.
Reload directory Always Reloads the current directory.
Toggle transfer mode / Close transfer mode Always Switches between the normal three-pane browser and the two-pane transfer layout. Also available with p from normal mode, and p / Esc while transfer mode is open.
Undo last file operation Undo history is not empty Reverses the most recent undoable rename, paste, or trash operation. Also available with z.
Select all Current directory has at least one visible entry Selects every currently visible entry in the current directory, respecting hidden-file visibility and any active filter.
Replace text in selected files A file is focused or one or more files are selected in the current directory Opens a two-field replacement palette for the selected files, or the focused file when nothing is explicitly selected. Matching files appear in the palette, ↑↓ and Ctrl+n / Ctrl+p move between them, and the right pane shows the selected file's diff before Enter applies the replacement. Shift+↑ / Shift+↓ scrolls the diff preview.
Replace text in found files Always Opens a three-field replacement palette (filename, find, replace). Type a filename pattern to search for files, then type find/replace text to preview replacements. Tab / Shift+Tab cycle between fields. The right pane shows the diff preview, and Enter applies the replacement.
Replace text in grep results Always Opens a five-field replacement palette (keyword, replace, filename filter, include extensions, exclude extensions). The keyword is both the grep search term and the text to replace. Type a keyword to grep search, then type a replacement to preview changes. Optional filename and extension filters narrow which matched files are affected. Tab / Shift+Tab cycle between fields. The right pane shows the diff preview, and Enter applies the replacement.
Grep and replace in selected files A file is focused or one or more files are selected in the current directory Opens a two-field replacement palette (keyword, replace) for the selected files, or the focused file when nothing is explicitly selected. The keyword searches within those files via grep, matching lines appear in the palette, and the right pane shows the selected file's diff before Enter applies the replacement. Tab / Shift+Tab cycle between fields.
Show attributes Exactly one target is selected or focused Opens the read-only attribute dialog for the selected item. Also available with i.
Rename Exactly one target is selected or focused Starts rename input for a single target.
Compress as zip At least one target is selected or focused Starts zip compression for the selected items, or the focused item when nothing is selected. The destination input accepts absolute and relative paths resolved from the current directory, defaults to a .zip path next to the selected content, and asks for confirmation before overwriting an existing zip file.
Extract archive Exactly one supported archive file is selected or focused Starts archive extraction for .zip, .tar, .tar.gz, or .tar.bz2. The destination input accepts absolute and relative paths. Relative paths are resolved from the archive file's parent directory, and the default value is a same-name directory next to the archive. Existing destination paths are confirmed before extraction, and the status bar shows entry-count progress while the extraction runs.
Open in editor Exactly one file is selected or focused Opens the focused file in a terminal editor, using editor.command -> $EDITOR -> built-in defaults.
Copy path At least one target is selected or focused Copies the selected path list, or the focused path when nothing is selected, to the system clipboard. Also available with C.
Move to trash At least one target is selected or focused Moves the selected items, or the focused item, to trash (confirmation is enabled by default and can be configured). On Windows this uses the Recycle Bin via send2trash.
Empty trash Always Permanently deletes all items from the trash. Shows a confirmation dialog before emptying. On Windows this uses PowerShell's Clear-RecycleBin to empty the Recycle Bin.
Open in file manager Always Opens the current directory in the OS file manager. Also available with M.
Open terminal Always Launches an external terminal rooted at zivo's current directory, using config.toml templates before built-in fallbacks. Also available with T and t.
Run shell command Always Opens a one-line shell command dialog, runs the command in the current directory in the background, and returns the first output line or failure summary in the status bar. On Windows, zivo prefers powershell.exe, then pwsh, then cmd.exe, so command syntax follows the selected Windows shell rather than POSIX sh. Also available with !.
Bookmark this directory / Remove bookmark Always Saves or removes the current directory in [bookmarks].paths. The label reflects whether the current directory is already bookmarked. Also available with B.
Show hidden files / Hide hidden files Always Toggles hidden-file visibility for the browser panes. The label reflects the current visibility state. Also available with ..
Edit config Always Opens the settings overlay for startup defaults. You can edit the preferred terminal editor, external terminal launch mode, hidden-file visibility, directory-size visibility, text preview visibility, image preview visibility, PDF preview visibility, Office preview visibility, preview size limit, theme, sorting, default paste-conflict behavior, and delete confirmation. The overlay also explains what the selected setting changes so you do not need to cross-reference the README while browsing options. Theme changes are previewed immediately. Use / or Ctrl+n / Ctrl+p to move, / / Enter to change values, s to save config.toml, and e to open the raw config file in a terminal editor.
Create file Always Starts the inline create-file flow in the current directory.
Create directory Always Starts the inline create-directory flow in the current directory.

Configuration File

On startup, zivo reads config.toml from the platform-specific user config directory. If the file does not exist yet, zivo creates it automatically with default values.

  • Linux: ${XDG_CONFIG_HOME:-~/.config}/zivo/config.toml
  • macOS: ~/Library/Application Support/zivo/config.toml
  • Windows: %APPDATA%\\zivo\\config.toml

The supported settings are:

Section Key Values Description
terminal linux Array of shell-style command templates Optional terminal launch commands for Linux. Use {path} as the working-directory placeholder. Invalid or empty entries are ignored.
terminal macos Array of shell-style command templates Optional terminal launch commands for macOS, validated the same way as Linux entries.
terminal windows Array of shell-style command templates Optional terminal launch commands for Windows and WSL bridge workflows.
editor command Shell-style string, for example nvim -u NONE Optional terminal editor command used by e. Do not include the file path; zivo appends it automatically. Unsupported GUI editors or invalid commands are ignored.
display show_hidden_files true / false Default hidden-file visibility when the app starts.
display show_directory_sizes true / false Shows recursive directory sizes in the current pane. Defaults to true. Large directories can be expensive to scan. zivo also calculates sizes automatically while the main pane is sorted by size.
display enable_text_preview true / false Shows text-file previews in the right pane. Defaults to true. grep result context preview follows the same setting.
display enable_image_preview true / false Shows image-file previews in the right pane through chafa. Defaults to true. When chafa is missing, zivo shows a dependency message instead of failing.
display enable_pdf_preview true / false Enables PDF preview conversion through pdftotext. Defaults to true. When disabled, PDF files fall back to the usual unsupported-file message.
display enable_office_preview true / false Enables pandoc-based preview conversion for docx, xlsx, and pptx files. Defaults to true. When disabled, those formats fall back to the usual unsupported-file message.
display show_help_bar true / false Shows the help bar at the bottom of the screen. Defaults to true. The help bar is always shown when the command palette is open, regardless of this setting.
display theme Any built-in Textual theme, for example textual-dark, textual-light, dracula, or tokyo-night Default UI theme applied on startup. In the settings editor, theme changes are previewed immediately and are persisted when you save.
display preview_syntax_theme auto or a supported Pygments style, for example one-dark, xcode, nord, or gruvbox-dark Syntax-highlighting colors used by the right-pane text preview. auto keeps the current light/dark-based default selection. In the settings editor, changes are previewed immediately when a text preview is visible.
display preview_max_kib 64 / 128 / 256 / 512 / 1024 Maximum amount of text read for right-pane file previews and preview sampling. Defaults to 64. Larger values allow deeper previews at the cost of more I/O.
display default_sort_field name / modified / size Default sort field for the main pane.
display default_sort_descending true / false Starts the main-pane sort in descending order when enabled.
display directories_first true / false Keeps directories grouped before files in the main pane.
behavior confirm_delete true / false Shows a confirmation dialog before moving items to trash. Permanent delete via D / Shift+Delete always asks for confirmation.
behavior paste_conflict_action prompt / overwrite / skip / rename Chooses the default paste-conflict behavior. prompt keeps the conflict dialog enabled.
logging enabled true / false Enables file output for startup failures and unhandled exceptions.
logging level DEBUG / INFO / WARNING / ERROR / CRITICAL Log level for file output. Defaults to ERROR. Requires app restart to take effect.
logging path Path string Optional log file path. Leave empty to use zivo.log next to config.toml. Default log file locations: Linux: ~/.config/zivo/zivo.log, macOS: ~/Library/Application Support/zivo/zivo.log.
bookmarks paths Array of absolute path strings Bookmarked directories shown by b and Show bookmarks in the command palette. Duplicate paths are removed when the config is loaded.
file_search max_results Integer or empty Maximum number of file search results. Leave empty for unlimited (default). Set to reduce memory usage on large repositories.

Example:

[terminal]
launch_mode = "window"
linux = ["konsole --working-directory {path}", "gnome-terminal --working-directory={path}"]
macos = ["open -a Terminal {path}"]
windows = ["wt -d {path}"]

[editor]
command = "nvim -u NONE"

[display]
show_hidden_files = false
show_directory_sizes = true
enable_text_preview = true
enable_image_preview = true
enable_pdf_preview = true
enable_office_preview = true
show_help_bar = true
theme = "textual-dark"
preview_syntax_theme = "auto"
preview_max_kib = 64
default_sort_field = "name"
default_sort_descending = false
directories_first = true

[behavior]
confirm_delete = true
paste_conflict_action = "prompt"

[logging]
enabled = true
level = "ERROR"
path = ""

[bookmarks]
paths = ["/home/user/src", "/home/user/docs"]

Invalid config values do not stop startup. zivo falls back to built-in defaults and shows a warning after the initial directory load. When logging is enabled, startup failures and unhandled exceptions are appended to the configured log file for later investigation. The accepted display.theme values come from the built-in themes shipped with the installed Textual version. The accepted display.preview_syntax_theme values are auto plus the Pygments styles available in the installed environment.

Notes

  • Refer to the "Supported OS" section above for current support status.
  • GUI integration such as default-app launch, file-manager launch, and external terminal launch is currently verified mainly on Ubuntu and Ubuntu running under WSL.
  • config.toml can override both the preferred terminal editor and external terminal launch commands before built-in fallbacks are used.
  • On WSL, wslu is recommended so wslview is available for the preferred bridge behavior.
  • On WSL, zivo prefers Windows-side bridges such as wslview, explorer.exe, and clip.exe when available, while keeping Linux-side fallbacks for WSLg and desktop Linux environments.
  • Behavior and keybindings may change in future revisions.
  • File mutations operate on the selected directory entry. If the selected item is a symlink, zivo mutates the symlink itself instead of silently following and mutating the link target.
  • Command palette symlink creation stores a relative target by default and supports Tab path completion in the destination input.

Related Documents

License

zivo is licensed under the MIT License. See LICENSE for details.

Third-Party Licenses

zivo depends on third-party packages. For a complete list of dependencies and their licenses, see NOTICE.txt.

To update NOTICE.txt after dependency changes:

uv run pip-licenses --format=plain --from=mixed --with-urls --output-file NOTICE.txt

Development

To prepare the development environment:

uv sync --python 3.12 --dev

To launch the app directly from a local checkout, run this from the repository root:

uv run zivo

Lint and test:

uv run ruff check .
uv run pytest

Install from TestPyPI

For testing pre-release versions, install from TestPyPI:

uv tool install \
  --index-url https://test.pypi.org/simple/ \
  --extra-index-url https://pypi.org/simple/ \
  --index-strategy unsafe-best-match \
  zivo

Project details


Download files

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

Source Distribution

zivo-0.18.1.tar.gz (2.5 MB view details)

Uploaded Source

Built Distribution

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

zivo-0.18.1-py3-none-any.whl (237.4 kB view details)

Uploaded Python 3

File details

Details for the file zivo-0.18.1.tar.gz.

File metadata

  • Download URL: zivo-0.18.1.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zivo-0.18.1.tar.gz
Algorithm Hash digest
SHA256 6139836d27d56de3fb3fb1a7ae4101db63a09b1051231db2b2c79ad71b2b8b37
MD5 566de03296b6c186627b8c1557f735c4
BLAKE2b-256 faf1c5bb5d4dcfc0bec41cf77ca4b63df46ca0da70c39dd3cd30142d6da7dcd7

See more details on using hashes here.

File details

Details for the file zivo-0.18.1-py3-none-any.whl.

File metadata

  • Download URL: zivo-0.18.1-py3-none-any.whl
  • Upload date:
  • Size: 237.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zivo-0.18.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1ccf3c2f0b793d076473831b2d8087fc90995b7b57b611ff90a4f0cf771f2618
MD5 2eebbba1ca2110a9eece1629c14e84e6
BLAKE2b-256 adadbd4930e65724f3491b3eabd06caf6c6e27ff6fb65c97dbb6cf9a6e0d1bca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page