Interactive terminal viewer/editor for tabular data
Project description
DataFrame Textual
A powerful, interactive terminal-based viewer/editor for CSV/TSV/Excel/Parquet/JSON/NDJSON built with Python, Polars, and Textual. Inspired by VisiData, this tool provides smooth keyboard navigation, data manipulation, and a clean interface for exploring tabular data directly in terminal with multi-tab support for multiple files!
Features
Data Viewing
- 🚀 Fast Loading - Powered by Polars for efficient data handling
- 🎨 Rich Terminal UI - Beautiful, color-coded columns with various data types (e.g., integer, float, string)
- ⌨️ Comprehensive Keyboard Navigation - Intuitive controls
- 📊 Flexible Input - Read from files and/or stdin (pipes/redirects)
- 🔄 Smart Pagination - Lazy load rows on demand for handling large datasets
Data Manipulation
- 📝 Data Editing - Edit cells, delete rows, and remove columns
- 🔍 Search & Filter - Find values, highlight matches, and filter selected rows
- ↔️ Column/Row Reordering - Move columns and rows with simple keyboard shortcuts
- 📈 Sorting & Statistics - Multi-column sorting and frequency distribution analysis
- 💾 Save & Undo - Save edits back to file with full undo/redo support
Advanced Features
- 📂 Multi-File Support - Open multiple files in separate tabs
- 🔄 Tab Management - Seamlessly switch between open files with keyboard shortcuts
- 📑 Duplicate Tab - Create a copy of the current tab with the same data
- 📌 Freeze Rows/Columns - Keep important rows and columns visible while scrolling
- 🎯 Cursor Type Cycling - Switch between cell, row, and column selection modes
- 🔗 Link Column Creation - Generate clickable URLs using template expressions with placeholder support
Installation
Using pip
# Install from PyPI
pip install dataframe-textual
# With Excel support (fastexcel, xlsxwriter)
pip install dataframe-textual[excel]
This installs an executable dv.
Then run:
dv <file>
Using uv
# Quick run using uvx without installation
uvx https://github.com/need47/dataframe-textual.git <csvfile>
# Clone or download the project
cd dataframe-textual
uv sync --extra excel # with Excel support
# Run directly with uv
uv run dv <file>
Development installation
# Clone the repository
git clone https://github.com/need47/dataframe-textual.git
cd dataframe-textual
# Install from local source
pip install -e .
# Or with development dependencies
pip install -e ".[excel,dev]"
Usage
Basic Usage - Single File
# After pip install dataframe-textual
dv pokemon.csv
# Or run from module
python -m dataframe-textual pokemon.csv
# Or with uv
uv run python main.py pokemon.csv
# Read from stdin (defaults to TSV)
cat data.tsv | dv
dv < data.tsv
# Specify format for gzipped stdin
zcat data.csv.gz | dv -f csv
# Gzipped files are supported
dv data.csv.gz
Multi-File Usage - Multiple Tabs
# Open multiple files in tabs
dv file1.csv file2.csv file3.csv
# Open multiple sheets in tabs in an Excel file
dv file.xlsx
# Mix files and stdin
dv data1.tsv < data2.tsv
When multiple files are opened:
- Each file appears as a separate tab. An Excel file may contain multiple tabs.
- Switch between tabs using
>(next) or<(previous), or usebfor cycling through tabs - Save current tab to file with
Ctrl+T - Save all tabs to file with
Ctrl+A - Duplicate the current tab with
Ctrl+D - Open additional files with
Ctrl+O - Each file maintains its own state (edits, sort order, selections, history, etc.) and allow undo/redo.
Command Line Options
usage: dv [-h] [-f {csv,excel,tsv,parquet,json,ndjson}] [-H] [-I] [-E] [-c COMMENT_PREFIX] [-q QUOTE_CHAR] [-l SKIP_LINES] [-a SKIP_ROWS_AFTER_HEADER] [-n NULL [NULL ...]] [files ...]
Interactive terminal based viewer/editor for tabular data (e.g., CSV/TSV/Excel).
positional arguments:
files Input files (or read from stdin)
options:
-h, --help show this help message and exit
-f, --format {csv,excel,tsv,parquet,json,ndjson}
Specify the format of the input files
-H, --no-header Specify that input files have no header row
-I, --no-inferrence Do not infer data types when reading CSV/TSV
-E, --ignore-errors Ignore errors when reading CSV/TSV
-c, --comment-prefix COMMENT_PREFIX
Comment lines are skipped when reading CSV/TSV (default: skip none)
-q, --quote-char QUOTE_CHAR
Quote character for reading CSV/TSV (default: "; use -q without argument value to disable)
-l, --skip-lines SKIP_LINES
Skip lines when reading CSV/TSV (default: 0)
-a, --skip-rows-after-header SKIP_ROWS_AFTER_HEADER
Skip rows after header when reading CSV/TSV (default: 0)
-n, --null NULL [NULL ...]
Values to interpret as null values when reading CSV/TSV
CLI Examples
# View headless CSV file
dv -H data_no_header.csv
# Disable type inference for faster loading
dv -I large_data.csv
# Ignore parsing errors in malformed CSV
dv -E data_with_errors.csv
# Skip first 3 lines of file (e.g., metadata)
dv -l 3 data_with_meta.csv
# Skip 1 row after header (e.g., units row)
dv -a 1 data_with_units.csv
# Skip comment lines
dv -c "#" commented_data.csv
# Treat specific values as null/missing (e.g., 'NA', 'N/A', '-')
dv -n NA N/A - data.csv
# Use different quote character (e.g., single quote for CSV)
dv -q "'" data.csv
# Disable quote character processing for TSV with embedded quotes
dv -q data.tsv
# Complex CSV with comments and units row
dv -l 3 -a 1 -I messy_scientific_data.csv
# Process compressed data
dv data.csv.gz
zcat compressed_data.csv.gz | dv -f csv
Keyboard Shortcuts
App-Level Controls
File & Tab Management
| Key | Action |
|---|---|
> |
Move to next tab |
< |
Move to previous tab |
b |
Cycle through tabs |
B |
Toggle tab bar visibility |
q |
Close current tab (prompts to save unsaved changes) |
Q |
Close all tabs and app (prompts to save unsaved changes) |
Ctrl+Q |
Force to quit app (regardless of unsaved changes) |
Ctrl+T |
Save current tab to file |
Ctrl+A |
Save all tabs to file |
Ctrl+D |
Duplicate current tab |
Ctrl+O |
Open file in a new tab |
Double-click tab |
Rename tab |
View & Settings
| Key | Action |
|---|---|
F1 |
Toggle help panel |
k |
Cycle through dark, light and other themes |
Table-Level Controls
Navigation
| Key | Action |
|---|---|
g |
Jump to first row |
G |
Jump to last row (loads all remaining rows) |
↑ / ↓ |
Move up/down one row |
← / → |
Move left/right one column |
Home / End |
Jump to first/last column |
Ctrl + Home / Ctrl + End |
Jump to page top/bottom |
PageDown / PageUp |
Scroll down/up one page |
Ctrl+F |
Page forward |
Ctrl+B |
Page backforward |
Undo/Redo/Reset
| Key | Action |
|---|---|
u |
Undo last action |
U |
Redo last undone action |
Ctrl+U |
Reset to initial state |
Viewing & Display
| Key | Action |
|---|---|
Enter |
Record view of current row transposed |
F |
Show frequency distribution for current column |
s |
Show statistics for current column |
S |
Show statistics for entire dataframe |
K |
Cycle cursor types: cell → row → column → cell |
~ |
Toggle row labels |
_ (underscore) |
Expand column to full width |
z |
Freeze rows and columns |
, |
Toggle thousand separator for numeric display |
h |
Hide current column |
H |
Show all hidden rows/columns |
Data Editing
| Key | Action |
|---|---|
Double-click |
Edit cell or rename column header |
delete |
Clear current cell (set to NULL) |
e |
Edit current cell (respects data type) |
E |
Edit entire column with value/expression |
a |
Add empty column after current |
A |
Add column with name and value/expression |
@ |
Add a link column from URL template |
- (minus) |
Delete current column |
x |
Delete current row |
X |
Delete current row and all those below |
Ctrl+X |
Delete current row and all those above |
d |
Duplicate current column (appends '_copy' suffix) |
D |
Duplicate current row |
Searching & Filtering
| Key | Action |
|---|---|
\ |
Search in current column using cursor value and select matching rows |
| (pipe) |
Search in current column with expression and select matching rows |
{ |
Go to previous selected row |
} |
Go to next selected row |
/ |
Find in current column with cursor value and highlight matching cells |
? |
Find in current column with expression and highlight matching cells |
n |
Go to next matching cell |
N |
Go to previous matching cell |
' |
Select/deselect current row |
t |
Toggle row selections (invert) |
T |
Clear all row selections and/or cell matches |
" (quote) |
Filter to selected rows (and remove others) |
v |
View rows (and hide others) by row selections and/or cell matches or cursor value |
V |
View rows (and hide others) by expression |
SQL Interface
| Key | Action |
|---|---|
l |
Simple SQL interface (select columns & where clause) |
L |
Advanced SQL interface (full SQL query with syntax highlight) |
Find & Replace
| Key | Action |
|---|---|
; |
Find across all columns with cursor value |
: |
Find across all columns with expression |
r |
Find and replace in current column (interactive or replace all) |
R |
Find and replace across all columns (interactive or replace all) |
Sorting (supporting multiple columns)
| Key | Action |
|---|---|
[ |
Sort current column ascending |
] |
Sort current column descending |
Reordering
| Key | Action |
|---|---|
Shift+↑ |
Move current row up |
Shift+↓ |
Move current row down |
Shift+← |
Move current column left |
Shift+→ |
Move current column right |
Type Casting
| Key | Action |
|---|---|
# |
Cast current column to integer (Int64) |
% |
Cast current column to float (Float64) |
! |
Cast current column to boolean |
$ |
Cast current column to string |
Copy & Save
| Key | Action |
|---|---|
c |
Copy current cell to clipboard |
Ctrl+C |
Copy column to clipboard |
Ctrl+R |
Copy row to clipboard (tab-separated) |
Ctrl+S |
Save current tab to file |
Features in Detail
1. Color-Coded Data Types
Columns are automatically styled based on their data type:
- integer: Cyan text, right-aligned
- float: Yellow text, right-aligned
- string: Green text, left-aligned
- boolean: Blue text, centered
- temporal: Magenta text, centered
2. Row Detail View
Press Enter on any row to open a modal showing all column values for that row.
Useful for examining wide datasets where columns don't fit well on screen.
In the Row Detail Modal:
- Press
vto view all rows containing the selected column value (and hide others) - Press
"to filter all rows containing the selected column value (and remove others) - Press
qorEscapeto close the modal
3. Search & Select/Highlight
The application provides multiple search modes for different use cases:
Search Operations - Search by value/expression in current column and select rows:
\- Search cursor value|- Opens dialog to search with custom expression
Find Operations - Find by value/expression and highlight matching cells:
/- Find cursor value within current column?- Open dialog to search current column with expression;- Find cursor value across all columns:- Open dialog to search all columns with expression
Selection & Filtering:
'- Select/deselect current row (marks it for filtering or viewing)t- Flip selections of all rowsT- Clear all row selections and cell matches"- Filter to rows that are selected and contain matching cells (removes all others permanently)v- View rows that are selected or contain matching cells (others hidden but preserved)V- View rows using custom expression (others hidden but preserved)
Note:
- The
"(Filter) andv/V(View) operations appear similar but have very different effects on your data. See section 3b "Filter vs. View - Understanding the Difference" for detailed guidance on when to use each. - If currently there are no selectet rows and no matching cells, the
"(Filter) andv(View) will use cursor value for search.
Advanced Matching Options:
When searching or finding, you can use checkboxes in the dialog to enable:
- Match Nocase: Ignore case differences
- Match Whole: Match complete value, not partial substrings or words
These options work with plain text searches. Use Polars regex patterns in expressions for more control:
- Case-insensitive matching in expressions: Use
(?i)prefix in regex (e.g.,(?i)john) - Word boundaries in expressions: Use
\bin regex (e.g.,\bjohn\bmatches whole word)
Quick Tips:
- Search results highlight matching rows/cells in red
- Multiple searches accumulate - each new search adds to the selections or matches
- Type-aware matching automatically converts values. Resort to string comparison if conversion fails
- Use
uto undo any search or filter
3b. Filter vs. View
Both operations show selected rows, but with fundamentally different effects:
| Operation | Keyboard | Effect | Data Preserved |
|---|---|---|---|
| View | v, V |
Hides non-matching rows | Yes (hidden, can be restored by H) |
| Filter | " |
Removes non-matching rows | No (permanently deleted) |
When to use View (v or V):
- Exploring or analyzing data safely
- Switching between different perspectives
- Press
Hto restore hidden rows (and hidden columns)
When to use Filter ("):
- Cleaning data (removing unwanted rows)
- Creating a trimmed dataset for export
- Permanent row removal from your dataframe
Both support full undo with u.
4. Replace
Replace values in current column (r) or across all columns (R).
How It Works:
When you press r or R, enter:
- Find term: Value or expression to search for (done by string value)
- Replace term: Replacement value
- Matching options: Match Nocase (ignore case), Match Whole (complete match only)
- Replace mode: All at once or interactive review
Replace All:
- Replaces all matches with one operation
- Shows confirmation with match count
Replace Interactive:
- Review each match one at a time (confirm, skip, or cancel)
- Shows progress:
X of Y
Tips:
- Search are done by string value (i.e. ignoring data type)
- Type
NULLto replace null/missing values - Use
Match Nocasefor case-insensitive matching - Use
Match Wholeto avoid partial replacements - Supprot undo (
u)
5. Polars Expressions
Complex values or filters can be specified via Polars expressions, with the following adaptions for convenience:
Column References:
$_- Current column (based on cursor position)$1,$2, etc. - Column by 1-based index$age,$salary- Column by name (use actual column names)
Row References:
$#- Current row index (1-based)
Basic Comparisons:
$_ > 50- Current column greater than 50$salary >= 100000- Salary at least 100,000$age < 30- Age less than 30$status == 'active'- Status exactly matches 'active'$name != 'Unknown'- Name is not 'Unknown'$# <= 10- Top 10 rows
Logical Operators:
&- AND|- OR~- NOT
Practical Examples:
($age < 30) & ($status == 'active')- Age less than 30 AND status is active($name == 'Alice') | ($name == 'Bob')- Name is Alice or Bob$salary / 1000 >= 50- Salary divided by 1,000 is at least 50($department == 'Sales') & ($bonus > 5000)- Sales department with bonus over 5,000($score >= 80) & ($score <= 90)- Score between 80 and 90~($status == 'inactive')- Status is not inactive$revenue > $expenses- Revenue exceeds expenses
String Matching: (Polars string API reference)
$name.str.contains("John")- Name contains "John" (case-sensitive)$name.str.contains("(?i)john")- Name contains "john" (case-insensitive)$email.str.ends_with("@company.com")- Email ends with domain$code.str.starts_with("ABC")- Code starts with "ABC"$age.cast(pl.String).str.starts_with("7")- Age (cast to string first) starts with "7"
Number Operations:
$age * 2 > 100- Double age greater than 100($salary + $bonus) > 150000- Total compensation over 150,000$percentage >= 50- Percentage at least 50%
Null Handling:
$column.is_null()- Find null/missing values$column.is_not_null()- Find non-null valuesNULL- a value to represent null for convenience
Tips:
- Use column names that match exactly (case-sensitive)
- Use parentheses to clarify complex expressions:
($a & $b) | ($c & $d)
6. Sorting
- Press
[to sort current column ascending - Press
]to sort current column descending - Multi-column sorting supported (press multiple times on different columns)
- Press same key twice to remove the column from sorting
7. Frequency Distribution
Press F to see value distributions of the current column. The modal shows:
- Value, Count, Percentage, Histogram
- Total row at the bottom
In the Frequency Table:
- Press
[and]to sort by any column (value, count, or percentage) - Press
vto filter all rows with the selected value (others hidden but preserved) - Press
"to exclude all rows containing the selected value (others removed) - Press
qorEscapeto close the frequency table
This is useful for:
- Understanding value distributions
- Quickly filtering to specific values
- Identifying rare or common values
- Finding the most/least frequent entries
8. Column & Dataframe Statistics
Press s to see summary statistics for the current column, or press S for statistics across the entire dataframe.
Column Statistics (s):
- Shows calculated statistics using Polars'
describe()method - Displays: count, null count, mean, median, std, min, max, etc.
Dataframe Statistics (S):
- Shows statistics for all numeric and applicable columns simultaneously
- Displays: count, null count, mean, median, std, min, max, etc.
In the Statistics Modal:
- Press
qorEscapeto close the statistics table - Use arrow keys to navigate
- Useful for quick data validation and summary reviews
This is useful for:
- Understanding data distributions and characteristics
- Identifying outliers and anomalies
- Data quality assessment
- Quick statistical summaries without external tools
- Comparing statistics across columns
9. Data Editing
Edit Cell (e or Double-click):
- Opens modal for editing current cell
- Validates input based on column data type
Rename Column Header (Double-click column header):
- Quick rename by double-clicking the column header
Delete Row (x):
- Delete all selected rows (if any) at once
- Or delete single row at cursor
Delete Row and Below (X):
- Deletes the current row and all rows below it
- Useful for removing trailing data or the end of a dataset
Delete Row and Above (Ctrl+X):
- Deletes the current row and all rows above it
- Useful for removing leading rows or the beginning of a dataset
Delete Column (-):
- Removes the entire column from display and dataframe
10. Hide & Show Columns
Hide Column (h):
- Temporarily hides the current column from display
- Column data is preserved in the dataframe
- Hidden columns are included in saves
Show Hidden Columns (H):
- Restores all previously hidden columns (and hidden rows) to the display
11. Duplicate Column
Press d to duplicate the current column:
- Creates a new column immediately after the current column
- New column has '_copy' suffix (e.g., 'price' → 'price_copy')
- Duplicate preserves all data from original column
- New column is inserted into the dataframe
This is useful for:
- Creating backup copies of columns before transformation
- Working with alternative versions of column data
- Comparing original vs. processed column values side-by-side
12. Duplicate Row
Press D to duplicate the current row:
- Creates a new row immediately after the current row
- Duplicate preserves all data from original row
- New row is inserted into the dataframe
This is useful for:
- Creating variations of existing data records
- Batch adding similar rows with modifications
13. Column & Row Reordering
Move Columns: Shift+← and Shift+→
- Swaps adjacent columns
- Reorder is preserved when saving
Move Rows: Shift+↑ and Shift+↓
- Swaps adjacent rows
- Reorder is preserved when saving
14. Freeze Rows and Columns
Press z to open the dialog:
- Enter number of fixed rows and/or columns to keep top rows/columns visible while scrolling
14.5. Thousand Separator Toggle
Press , to toggle thousand separator formatting for numeric data:
- Applies to integer and float columns
- Formats large numbers with commas for readability (e.g.,
1000000→1,000,000) - Works across all numeric columns in the table
- Toggle on/off as needed for different viewing preferences
- Display-only: does not modify underlying data in the dataframe
- State persists during the session
15. Save File
Press Ctrl+S to save:
- Save filtered, edited, or sorted data back to file
- Choose filename in modal dialog
- Confirm if file already exists
16. Undo/Redo/Reset
Undo (u):
- Reverts last action with full state restoration
- Works for edits, deletions, sorts, searches, etc.
- Shows description of reverted action
Redo (U):
- Reapplies the last undone action
- Restores the state before the undo was performed
- Useful for redoing actions you've undone by mistake
- Useful for alternating between two different states
Reset (Ctrl+U):
- Reverts all changes and returns to original data state when file was first loaded
- Clears all edits, deletions, selections, filters, and sorts
- Useful for starting fresh without reloading the file
17. Column Type Conversion
Press the type conversion keys to instantly cast the current column to a different data type:
Type Conversion Shortcuts:
#- Cast to integer%- Cast to float!- Cast to boolean$- Cast to string
Features:
- Instant conversion with visual feedback
- Full undo support - press
uto revert - Leverage Polars' robust type casting
Note: Type conversion attempts to preserve data where possible. Conversions may lose data (e.g., float to int rounding).
18. Cursor Type Cycling
Press K to cycle through selection modes:
- Cell mode: Highlight individual cell (and its row/column headers)
- Row mode: Highlight entire row
- Column mode: Highlight entire column
19. SQL Interface
The SQL interface provides two modes for querying your dataframe:
Simple SQL Interface (l)
Select specific columns and apply WHERE conditions without writing full SQL:
- Choose which columns to include in results
- Specify WHERE clause for filtering
- Ideal for quick filtering and column selection
Advanced SQL Interface (L)
Execute complete SQL queries for advanced data manipulation:
- Write full SQL queries with standard SQL syntax
- Support for JOINs, GROUP BY, aggregations, and more
- Access to all SQL capabilities for complex transformations
- Always use
selfas the table name - Syntax highlighted
Examples:
-- Filter and select specific rows and/or columns
SELECT name, age FROM self WHERE age > 30
-- Aggregate with GROUP BY
SELECT department, COUNT(*) as count, AVG(salary) as avg_salary
FROM self
GROUP BY department
-- Complex filtering with multiple conditions
SELECT *
FROM self
WHERE (age > 25 AND salary > 50000) OR department = 'Management'
20. Clipboard Operations
Copies value to system clipboard with pbcopy on macOS and xclip on Linux
Note May require a X server to work
- Press
cto copy cursor value - Press
Ctrl+Cto copy column values - Press
Ctrl+Rto copy row values (delimited by tab) - Hold
Shiftto select with mouse
21. Link Column Creation
Press @ to create a new column containing dynamically generated URLs using template.
Template Placeholders:
The link template supports multiple placeholder types for maximum flexibility:
-
$_- Current column (the column where cursor was when@was pressed)- Example:
https://example.com/search/$_- Uses values from the current column
- Example:
-
$1,$2,$3, etc. - Column by 1-based position index- Example:
https://example.com/product/$1/details/$2- Uses 1st and 2nd columns - Index corresponds to column display order (left-to-right)
- Example:
-
$name- Column by name (use actual column names)- Example:
https://pubchem.ncbi.nlm.nih.gov/search?q=$product_id- Usesproduct_idcolumn - Example:
https://example.com/$region/$city/data- Usesregionandcitycolumns
- Example:
Features:
- Multiple Placeholders: Mix and match placeholders in a single template
- URL Prefix: Automatically prepends
https://if URL doesn't start withhttp://orhttps://
Tips:
- Use full undo (
u) if template produces unexpected URLs - For complex multi-column URLs, use column names (
$name) for clarity over positions ($1)
22. Tab Management
Manage multiple files and dataframes simultaneously with tabs.
Tab Operations:
Ctrl+O- Open file in a new tab>- Move to next tab<- Move to previous tabb- Cycle through tabsB- Toggle tab bar visibilityDouble-click tab- Rename the tabCtrl+D- Duplicate current tab (creates a copy with same data and state)Ctrl+T- Save current tab to fileCtrl+A- Save all tabs in a single Excel fileq- Close current tab (closes tab, prompts to save if unsaved changes)Q- Close all tabs and exit app (prompts to save tabs with unsaved changes)Ctrl+Q- Force to quit app regardless of unsaved changes
Tips:
- Tabs with unsaved changes are indicated with a bright background
- Closing or quitting a tab with unsaved changes triggers a save prompt
Dependencies
- polars: Fast DataFrame library for data loading/processing
- textual: Terminal UI framework
- fastexcel: Read Excel files
- xlsxwriter: Write Excel files
Requirements
- Python 3.11+
- POSIX-compatible terminal (macOS, Linux, WSL)
- Terminal supporting ANSI escape sequences and mouse events
Acknowledgments
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dataframe_textual-1.12.0.tar.gz.
File metadata
- Download URL: dataframe_textual-1.12.0.tar.gz
- Upload date:
- Size: 156.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa7e8b068f16a4794853c812aeedcd8a6460c75476436d8a46ce020afce42e5c
|
|
| MD5 |
4450390bd30e0c2deebdbd3795b753b8
|
|
| BLAKE2b-256 |
b0f9931c7717c6a211cf94406fa4578825a48b11227885a44af0fac25a44f833
|
File details
Details for the file dataframe_textual-1.12.0-py3-none-any.whl.
File metadata
- Download URL: dataframe_textual-1.12.0-py3-none-any.whl
- Upload date:
- Size: 66.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a251c3aee4aa876e711529df78612796a375c8fb236672bdf258729b0d9d1621
|
|
| MD5 |
1560d3b12c7d16dd528c7ca8b32fc757
|
|
| BLAKE2b-256 |
2b8837071139524f0e4ff108e882b844812f4757448e383127c134893a10ac52
|