A configurable terminal dashboard for stocks, news, sports, and social feeds with a virtual pet companion
Project description
feedtui
A configurable terminal dashboard for browsing news, stocks, sports, and more - with a virtual pet companion!
Features
- Hacker News - Browse top, new, and best stories
- Stock Ticker - Track your portfolio in real-time
- RSS Feeds - Subscribe to your favorite news sources
- Sports Scores - Follow NBA, NFL, EPL, and more
- Twitter/X - Post, reply, search tweets via Bird CLI integration
- Pixel Art - Convert images to beautiful terminal pixel art
- World Clock - Multi-timezone clock with integrated stopwatch
- Tui - Your virtual companion creature that levels up as you use the terminal!
Installation
Option 1: Install via pip (Recommended)
No Rust toolchain required! Install directly from PyPI:
pip install feedtui
Or with pipx for isolated installation:
pipx install feedtui
Option 2: From crates.io (Rust)
cargo install feedtui
Option 3: Quick Install Script
git clone https://github.com/muk2/feedtui
cd feedtui
./install.sh
Option 4: Using Make
git clone https://github.com/muk2/feedtui
cd feedtui
make install
Option 5: Manual Install
git clone https://github.com/muk2/feedtui
cd feedtui
cargo install --path .
All Rust-based methods install the feedtui binary to ~/.cargo/bin/. Make sure this directory is in your PATH.
Getting Started
Interactive Configuration Wizard
The easiest way to get started is to run the configuration wizard:
feedtui init
This will guide you through setting up your dashboard with an interactive prompt.
Manual Configuration
Alternatively, create a .feedtui folder in your home directory and add a config.toml file:
mkdir -p ~/.feedtui
cp config.example.toml ~/.feedtui/config.toml
Edit the config to customize your dashboard layout and feeds.
Usage
Run the dashboard
feedtui
Command-line options
# Use a custom config file
feedtui --config /path/to/config.toml
# Override refresh interval
feedtui --refresh 30
# View configuration status
feedtui config
# Reconfigure with wizard
feedtui init --force
# Show installation help
feedtui install
# Show version
feedtui --version
# Show help
feedtui --help
Meet Tui!
Tui (pronounced "chew-ee") is your virtual companion creature that lives in your terminal. The more you use feedtui, the more Tui grows!
Features
- 10 Different Species - Choose from Blob, Bird, Cat, Dragon, Fox, Owl, Penguin, Robot, Spirit, or Octopus
- Leveling System - Earn XP just by using the terminal
- Skill Tree - Unlock skills with points earned from leveling up
- Outfits - Customize Tui with unlockable outfits like Hacker, Wizard, Ninja, Astronaut, and more
- Moods - Tui reacts to how often you visit
- Persistent Progress - Your creature's progress is saved automatically
Keybindings
| Key | Action |
|---|---|
t |
Toggle Tui menu |
Tab / Shift+Tab |
Switch between menu tabs / widgets |
j / k or arrows |
Navigate lists |
Enter |
Select/purchase items in menu |
r |
Refresh feeds |
q |
Quit |
Skill Tree
Unlock skills by spending points:
- Greeting (Free) - Tui greets you on startup
- News Digest (10 pts) - Highlights important news
- Stock Alert (15 pts) - Alerts on significant movements
- Quick Learner (15 pts) - +10% XP gain
- Speed Read (20 pts) - Faster feed refresh
- Fast Learner (30 pts) - +25% XP gain
- Cosmic Insight (50 pts) - Trending topic insights
- Fire Breath (40 pts) - Cosmetic fire animation
- Omniscience (100 pts) - Maximum XP boost
Outfit Unlocks
Outfits unlock as you level up:
| Level | Outfit |
|---|---|
| 1 | Default |
| 5 | Hacker |
| 10 | Wizard |
| 15 | Ninja |
| 20 | Astronaut |
| 25 | Robot |
| 30 | Dragon |
| 50 | Legendary |
Available Widgets
feedtui supports the following configurable widgets. Each widget can be positioned in a grid layout and customized with various options.
Creature Widget
Your virtual companion that lives in your terminal and levels up as you use feedtui!
Configuration:
[[widgets]]
type = "creature"
title = "Tui" # Widget title
show_on_startup = true # Show creature menu on startup
position = { row = 0, col = 0 } # Grid position
Features:
- 10 different species (Blob, Bird, Cat, Dragon, Fox, Owl, Penguin, Robot, Spirit, Octopus)
- Leveling system with XP progression
- Unlockable skills and outfits
- Mood system based on usage
- Press
tto open the Tui menu
Hacker News Widget
Browse Hacker News stories directly in your terminal.
Configuration:
[[widgets]]
type = "hackernews"
title = "Hacker News" # Widget title
story_count = 10 # Number of stories to display (default: 10)
story_type = "top" # Story type: "top", "new", or "best" (default: "top")
position = { row = 0, col = 1 } # Grid position
Features:
- Browse top, new, or best stories
- Configurable story count
- Direct links to discussions
Stocks Widget
Track your stock portfolio with real-time price updates.
Configuration:
[[widgets]]
type = "stocks"
title = "Portfolio" # Widget title
symbols = ["AAPL", "GOOGL", "MSFT", "NVDA", "TSLA"] # Stock ticker symbols
position = { row = 0, col = 2 } # Grid position
Features:
- Real-time stock price tracking
- Multiple symbols support
- Price change indicators
RSS Widget
Subscribe to your favorite RSS feeds and stay updated with the latest content.
Configuration:
[[widgets]]
type = "rss"
title = "Tech News" # Widget title
feeds = [ # List of RSS feed URLs
"https://feeds.arstechnica.com/arstechnica/technology-lab",
"https://www.theverge.com/rss/index.xml"
]
max_items = 10 # Maximum items to display per feed (default: 15)
position = { row = 1, col = 0 } # Grid position
Features:
- Multiple RSS feed support
- Configurable item limit
- Feed aggregation
Sports Widget
Follow live scores and updates from major sports leagues.
Configuration:
[[widgets]]
type = "sports"
title = "Sports" # Widget title
leagues = ["nba", "nfl", "mlb", "nhl", "epl", "mls", "ncaaf", "ncaab"] # Leagues to follow
position = { row = 1, col = 1 } # Grid position
Supported Leagues:
nba- NBA Basketballnfl- NFL Footballmlb- Major League Baseballnhl- NHL Hockeyeplorpremier-league- English Premier Leaguemls- Major League Soccerncaaforcollege-football- College Footballncaaborcollege-basketball- College Basketball
Features:
- Live scores and game status
- Multiple league support
- Real-time updates powered by ESPN API
GitHub Widget
Comprehensive GitHub dashboard with notifications, pull requests, and recent commits.
Configuration:
[[widgets]]
type = "github"
title = "GitHub Dashboard" # Widget title
token = "${GITHUB_TOKEN}" # GitHub personal access token (use env variable)
username = "your-username" # Your GitHub username
show_notifications = true # Show notifications tab (default: true)
show_pull_requests = true # Show pull requests tab (default: true)
show_commits = true # Show commits tab (default: true)
max_notifications = 20 # Max notifications to display (default: 20)
max_pull_requests = 10 # Max PRs to display (default: 10)
max_commits = 10 # Max commits to display (default: 10)
position = { row = 1, col = 2 } # Grid position
Setup:
- Create a GitHub personal access token with
notificationsandreposcopes - Set environment variable:
export GITHUB_TOKEN=your_token_here - Use
${GITHUB_TOKEN}in config to reference the environment variable
Features:
- GitHub notifications feed
- Pull request tracking
- Recent commit history
- Use
h/lor arrow keys to switch between tabs
YouTube Widget
Display videos from YouTube channels or search queries.
Configuration:
[[widgets]]
type = "youtube"
title = "YouTube" # Widget title
api_key = "${YOUTUBE_API_KEY}" # YouTube Data API v3 key (use env variable)
channels = ["UCXuqSBlHAE6Xw-yeJA0Tunw"] # Optional: List of channel IDs
search_query = "rust programming" # Optional: Search query for videos
max_videos = 15 # Maximum videos to display (default: 15)
position = { row = 2, col = 0 } # Grid position
Setup:
- Get a YouTube Data API v3 key from Google Cloud Console
- Set environment variable:
export YOUTUBE_API_KEY=your_key_here - Use
${YOUTUBE_API_KEY}in config to reference the environment variable
Features:
- Display videos from specific channels
- Search for videos by query
- Configurable video limit
- Video titles and metadata
Twitter/X Widget
Interactive Twitter/X feed powered by Bird CLI for posting, replying, searching, and reading tweets directly from your terminal.
Prerequisites:
- Bird CLI installed:
bun install -g bird-cli - Twitter/X authentication tokens set as environment variables:
CT0- Cookie token from twitter.comAUTH_TOKEN- Authentication token from twitter.com
Configuration:
[[widgets]]
type = "twitter"
title = "Twitter/X" # Widget title
position = { row = 2, col = 2 } # Grid position
Setup:
- Install Bird CLI:
bun install -g bird-cli - Extract cookies from twitter.com (use browser dev tools):
CT0cookie valueauth_tokencookie value
- Set environment variables:
export CT0="your_ct0_token"
export AUTH_TOKEN="your_auth_token"
Features:
- Tweet composition with modal interface
- Reply to tweets
- Search Twitter/X
- View mentions
- Read individual tweets and threads
- When Twitter widget is selected:
- Press
tto compose a new tweet - Press
rto reply to selected tweet - Press
/to open search - Press
mto load mentions - Press
Enterto read selected tweet - Press
Escto close modals
- Press
Note: This widget requires external authentication and Bird CLI to be properly configured.
Pixel Art Widget
Convert images into beautiful terminal-rendered pixel art. Supports PNG, JPEG, and WebP formats with adjustable pixel resolution.
Configuration:
[[widgets]]
type = "pixelart"
title = "Pixel Art" # Widget title
image_path = "/path/to/image.png" # Path to image file (optional)
pixel_size = 32 # Target pixel resolution (optional, default: 32)
position = { row = 3, col = 0 } # Grid position
Supported Image Formats:
- PNG
- JPEG
- WebP
Features:
- Image-to-pixel art conversion with nearest-neighbor scaling
- Adjustable pixel resolution (8×8 to 128×128)
- True color terminal rendering (24-bit RGB)
- Aspect ratio preservation
- Scrollable output for large images
- Real-time pixel size adjustment
Usage:
- Configure
image_pathin your config.toml - Select the widget with Tab
- Use keybindings to interact:
- Press
+to increase pixel size (8 → 16 → 32 → 64 → 128) - Press
-to decrease pixel size (128 → 64 → 32 → 16 → 8) - Use
↑↓orj/kto scroll through large images
- Press
Display Information:
- Original image dimensions
- Pixelated dimensions
- Current pixel size setting
- Scroll indicator when image exceeds viewport
Example Use Cases:
- Display profile pictures as pixel art
- Create retro-style avatars
- Preview game sprites
- Terminal art galleries
- NFT-style pixel aesthetics
Clock Widget
Multi-timezone world clock with an integrated stopwatch for productivity tracking.
Configuration:
[[widgets]]
type = "clock"
title = "World Clock" # Widget title
timezones = [ # List of IANA timezone identifiers
"America/New_York",
"Europe/London",
"Asia/Tokyo"
]
position = { row = 2, col = 1 } # Grid position
Common Timezones:
America/New_York- Eastern Time (US)America/Los_Angeles- Pacific Time (US)America/Chicago- Central Time (US)Europe/London- UK TimeEurope/Paris- Central European TimeAsia/Tokyo- Japan TimeAsia/Shanghai- China TimeUTC- Coordinated Universal Time
Features:
- Multiple timezone support with IANA timezone database
- Real-time clock updates (every second)
- Local timezone highlighting
- Built-in stopwatch with start/pause/reset controls
- When clock widget is selected:
- Press
sto Start/Pause stopwatch - Press
rto Reset stopwatch
- Press
- Non-blocking time updates for smooth UI
Example Config
Here's a complete example showing all available widgets:
[general]
refresh_interval_secs = 60
theme = "dark"
# Tui - Your companion creature! - top left
# Press 't' to open the Tui menu and customize your creature
[[widgets]]
type = "creature"
title = "Tui"
show_on_startup = true
position = { row = 0, col = 0 }
# Hacker News - top middle
[[widgets]]
type = "hackernews"
title = "Hacker News"
story_count = 10
story_type = "top" # top, new, best
position = { row = 0, col = 1 }
# Stocks - top right
[[widgets]]
type = "stocks"
title = "Portfolio"
symbols = ["AAPL", "GOOGL", "MSFT", "NVDA", "TSLA"]
position = { row = 0, col = 2 }
# Tech News (RSS) - bottom left
[[widgets]]
type = "rss"
title = "Tech News"
feeds = [
"https://feeds.arstechnica.com/arstechnica/technology-lab",
"https://www.theverge.com/rss/index.xml"
]
max_items = 10
position = { row = 1, col = 0 }
# Sports - bottom middle
[[widgets]]
type = "sports"
title = "Sports"
leagues = ["nba", "nfl", "epl"]
position = { row = 1, col = 1 }
# GitHub Dashboard - bottom right
# Requires a GitHub personal access token with notifications and repo scope
# Set environment variable: export GITHUB_TOKEN=your_token_here
[[widgets]]
type = "github"
title = "GitHub Dashboard"
token = "${GITHUB_TOKEN}"
username = "your-username"
show_notifications = true
show_pull_requests = true
show_commits = true
max_notifications = 20
max_pull_requests = 10
max_commits = 10
position = { row = 1, col = 2 }
# YouTube Widget - Optional
# Display YouTube videos from channels or search queries
# Requires a YouTube Data API v3 key
# Get your API key from: https://console.cloud.google.com/apis/credentials
# Set environment variable: export YOUTUBE_API_KEY=your_key_here
# [[widgets]]
# type = "youtube"
# title = "YouTube"
# api_key = "${YOUTUBE_API_KEY}"
# channels = [] # Optional: List of channel IDs to display videos from
# search_query = "rust programming" # Optional: Search query for videos
# max_videos = 15
# position = { row = 2, col = 0 }
Python API
If you installed via pip, you can also use feedtui as a Python library:
import feedtui
# Run the TUI
feedtui.run()
# Run with custom config
feedtui.run(config_path="/path/to/config.toml")
# Run with custom refresh interval
feedtui.run(refresh_interval=30)
# Initialize a new config file
config_path = feedtui.init_config()
print(f"Config created at: {config_path}")
# Get config path
print(feedtui.get_config_path())
# Get version
print(feedtui.version())
Development
Running from source (without installing)
# Debug mode
cargo run
# Release mode
cargo run --release
# Or use make
make dev # debug mode
make run # release mode
Common development tasks
# Format code
cargo fmt
# or
make fmt
# Run linter
cargo clippy
# or
make clippy
# Run tests
cargo test
# or
make test
# Clean build artifacts
cargo clean
# or
make clean
License
MIT
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 Distributions
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 feedtui-0.1.3.tar.gz.
File metadata
- Download URL: feedtui-0.1.3.tar.gz
- Upload date:
- Size: 93.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4a39b3a061578ce48b7a2af747315a13a5da9b5ab9152ffd2f1a09761a22837
|
|
| MD5 |
62fb34f5440a75442c508d49764f57a0
|
|
| BLAKE2b-256 |
b0683b4f77e0cefc85d566039543c53d8871103fb6f70175027425901ca1717b
|
File details
Details for the file feedtui-0.1.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e74565f5dd747b19537eb8324e14b5b006fd2401b23ec60537ff7498657e6cd
|
|
| MD5 |
7879971f18f509e2f96c206628ba3cf7
|
|
| BLAKE2b-256 |
07c702b26a0c72931c19e5961a2f527739a617ddc4d87f5bf7be58720bb997d3
|
File details
Details for the file feedtui-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
156c85926f09714c1a1ddc966a7faed933b0269e824638d637853a9b3c4fbd58
|
|
| MD5 |
6c6145f9fb625fc5ff85c742b0b62c01
|
|
| BLAKE2b-256 |
ee4974b6e0d3fee700222180717ec5666ffc115d17982291ba7cb92d43398b60
|
File details
Details for the file feedtui-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0ad0c1df6068b6631867b16c38b64654f8d43ef689f32cadee657bee330e1c8
|
|
| MD5 |
77d682297c6d7767bbb373f69ba15a47
|
|
| BLAKE2b-256 |
98f355ee50064e621f1191c85c922e2f629d30c973ce8d044bba3d70c386d3cc
|
File details
Details for the file feedtui-0.1.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cdbbd46d5dd7945188de2791805421cc018ad983ca442844e449bfa6ac32702
|
|
| MD5 |
df9fad873ad9efb139ca88c63ae0664a
|
|
| BLAKE2b-256 |
6857a064755d96438414712270e9c4b09cba9cd6c4fc876e40dcd12675891272
|
File details
Details for the file feedtui-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b37e1305780abba610f04cb8dfc876e8a7cde375f084aefa36fe8f33f863a57
|
|
| MD5 |
735a2084c650905eec5cba1fc8d8c0b6
|
|
| BLAKE2b-256 |
bbcef530b643fd5e06bf49b656e02351428b4655404df8b09c302196203f7dc3
|
File details
Details for the file feedtui-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36c613d8cbeefc4269e5542846599f1c1c82856c0da208bacfd8bbbd143e4c08
|
|
| MD5 |
30b0f23d72e397d0a91b38527856bb6c
|
|
| BLAKE2b-256 |
40c49a0781c1740ca32dc89e39ac9dbfa8494a9f904a357a279a81485e76bd83
|
File details
Details for the file feedtui-0.1.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
649bc3010dcf030b4ed8e91ae333ee0414a70538a3a9f1f1d4584d8cb47060c0
|
|
| MD5 |
8f15e28f64b7c8e4ea0adc015b9f5209
|
|
| BLAKE2b-256 |
8fdec57fd56765d4aeb88e61827d238a085cd38f1ce589e5009bda62f6b95fc2
|
File details
Details for the file feedtui-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dfa2de8b6a0eb7b3cb247df43d97e08c7c88820576eee0cbacaaae4ebc0706c
|
|
| MD5 |
12c277a0a4357e2d5b90f865fc73c490
|
|
| BLAKE2b-256 |
8ee9c5b69ba0348335ec1d204f2d45c4d9886d3a60fed1cee1567e37986ffe40
|
File details
Details for the file feedtui-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92fe366e06003e2faee406a64a4b0799c9bb0b33dce8c0ccf6886fb6be011ae4
|
|
| MD5 |
5224f1d396a17db3a69103b92a41696e
|
|
| BLAKE2b-256 |
d283a317d2c4f8012dca233d49d2a618471afa1fb3b81046517fba5826be002e
|
File details
Details for the file feedtui-0.1.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
760e914299d901dbbad97b0163235ca85ff2927ea78356c1f43e2b46ce798578
|
|
| MD5 |
c03a0676412fe7dd3654c52069e60405
|
|
| BLAKE2b-256 |
4b5e4c348179146c4c48f6e3635fc9438b194715888773976234c4a7ac9eb484
|
File details
Details for the file feedtui-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0532fb0685a6aee7a4804f48be67c97420f4b6493e947d66dfabb31e362f13d7
|
|
| MD5 |
dde927728544f6437355c0245a257fc4
|
|
| BLAKE2b-256 |
0ce179c1c6202503620adca2845bd8d6b3250afba3091dbcc4ff4c6cd0a9d268
|
File details
Details for the file feedtui-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd19233b156fa43b0be6a2ee9b0484becacd2487b901de1321eed4ff4607adef
|
|
| MD5 |
84b5304b2b32719c926d972eb9eaddcf
|
|
| BLAKE2b-256 |
610baf52229be4ffdc8f237ded5ef00882b40266d7c82eba332641921a6fcd40
|
File details
Details for the file feedtui-0.1.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fed4ff8549489fdfa7a3bb469e45bb148e1733c1c0549bd4beac6d6a91cd286c
|
|
| MD5 |
33624e3c2601ca1839af175fbc4a041d
|
|
| BLAKE2b-256 |
7108b7f73dc9075027021346e807fd31d73daa1fc08ddb33df4b6d4b44854be5
|
File details
Details for the file feedtui-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2f3170ff12bcf7d3909e3583ee716d699250b60ca4e1e0b00146574fe3794c7
|
|
| MD5 |
90723d86323cad7cb2e4b4b502b1f6bc
|
|
| BLAKE2b-256 |
190faa1008e6d57bdef1f13b1fdc1480a8bbc322435d81c51d488a81301bda59
|
File details
Details for the file feedtui-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7d8b7c9dfdc2bc12b2689beda55217f600b4ebed529b8576a3844de2f844c93
|
|
| MD5 |
5d14b0ecb484b5ebfbbf4f9d6fa3c3f2
|
|
| BLAKE2b-256 |
b99835ef5ce86836819c5d0a0eadd5eadbd33533ec9c220954c7081ea2610e73
|
File details
Details for the file feedtui-0.1.3-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934336551228ab0e0b9dfe255e06b0c797f2570766855f8cec87abe9f3668b2c
|
|
| MD5 |
c64aa050357fc620ff3f032710a5a85d
|
|
| BLAKE2b-256 |
ec9a95e9a239a28f5590e1884587fb98f6ec4a9f7764bf318777f6210e0a1c45
|
File details
Details for the file feedtui-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7a608e403b039a39e67b52ce83aac98f20e2f443ee527672c7e8c41dd35227d
|
|
| MD5 |
5607f651c25ec21650d811ba3b27cb68
|
|
| BLAKE2b-256 |
107e93fdf8748178c04cccd271d9df9ef38bdb9ef2acff7873a5f066814fabb5
|
File details
Details for the file feedtui-0.1.3-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d9d9f6b73b1d5821329e3ae083be9bad5a028d1573760f308c48d73842e757f
|
|
| MD5 |
60204d1a620eddd585d50940b12d602c
|
|
| BLAKE2b-256 |
156bb548fe4b18817c1c2f63a5b8d096f5efbab1d3f029831ea75b3a579e9e29
|
File details
Details for the file feedtui-0.1.3-cp38-cp38-macosx_10_12_x86_64.whl.
File metadata
- Download URL: feedtui-0.1.3-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb05b4069077b0962ae9f46be5029c47ca26732b5879770ee0626684c2aefe82
|
|
| MD5 |
0f64c6b977a875e26083338063a0d45e
|
|
| BLAKE2b-256 |
0bbf9c80c50c1aa8fb66740ac4c3db898e40d3ab5d6304fdaaa48076fd8cb94f
|