Metadata-Version: 2.4
Name: postr-tui
Version: 0.1.0
Summary: A terminal blog/forum client built with Textual
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: textual
Requires-Dist: requests
Requires-Dist: bcrypt
Requires-Dist: flask

# Postr

Postr is a terminal-based blog/forum client built with Python and Textual. It connects to a Flask + SQLite backend and lets users log in, create posts, edit posts, delete posts, and browse content from either a public server or their own private one.

## Features

- Terminal user interface built with **Textual**
- User login and registration
- Create, edit, delete, and view posts
- Flask backend with SQLite storage
- Public / private / custom server selection
- Packaged for installation as `postr-tui`

## Project Structure

```text
Postr/
├── client/
│   ├── main.py
│   ├── features.py
│   ├── login.py
│   ├── serverSelect.py
│   └── postr.tcss
├── server/
│   ├── server.py
│   ├── db.py
│   └── auth.py
├── pyproject.toml
└── README.md
```
