Metadata-Version: 2.1
Name: ttui
Version: 0.1.1
Summary: A terminal .txt file viewer
License: MIT
Author: Andy Sit
Author-email: andysit173@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: asttokens (==2.4.1)
Requires-Dist: click (==8.1.7)
Requires-Dist: colorama (==0.4.6)
Requires-Dist: executing (==2.0.1)
Requires-Dist: icecream (==2.1.3)
Requires-Dist: linkify-it-py (==2.0.3)
Requires-Dist: markdown-it-py (==3.0.0)
Requires-Dist: mdit-py-plugins (==0.4.1)
Requires-Dist: mdurl (==0.1.2)
Requires-Dist: pygments (==2.18.0)
Requires-Dist: rich (==13.7.1)
Requires-Dist: six (==1.16.0)
Requires-Dist: textual (==0.76.0)
Requires-Dist: typing-extensions (==4.12.2)
Requires-Dist: uc-micro-py (==1.0.3)
Description-Content-Type: text/markdown

# TTUI
___
A terminal application to view .txt files quickly. Built for my personal use.

## Why
___

I was sick of reading information in txt files and did not want to create a method to read them. Here is my solution an application that will open a terminal application showing the data in a table.

Ever dump python dicts into a txt file? Well I do and I do it a lot for random scripts, projects, or when I need to cache data. TTui will parse the index of the string given a type of object and return each line in the .txt as the object.

Also, I wanted to figure out how to publish to pypi which was important to me.

___
## How?
___

Ideally, install pipx is the easiest.

```
pipx install ttui
```

Once installed the ```tt``` command will be added to your path.

It's meant to just take the argument of the file path.

```
tt demo.txt
```

Don't try to pass an empty file to the program, it will just return a warning and nothing will happen.

## Development
___

Going to...
- More types ie tuples, list, and custom types
- Clean the code base
- a way to filter data
