Metadata-Version: 2.4
Name: doggy-notes
Version: 2.0.1.post0
Summary: Command-line note taking application
Author-email: Dev-ev-v <guilhermepapuf.dev@proton.me>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/Dev-ev-v/doggy-notes
Project-URL: Repository, https://github.com/Dev-ev-v/doggy-notes
Project-URL: Issues, https://github.com/Dev-ev-v/doggy-notes/issues
Project-URL: Documentation, https://github.com/Dev-ev-v/doggy-notes#readme
Project-URL: Changelog, https://github.com/Dev-ev-v/doggy-notes/releases
Keywords: cli,notes,productivity
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer<1.0,>=0.12.3
Dynamic: license-file

# doggy-notes CLI

Fast note-taking in the terminal using JSON storage.

Create and manage notes quickly without leaving the command line.

## Features

- Create notes
- Delete single or multiple notes
- Note search
- SQLITE storage
- Tag support
- Creation timestamps

## Installation

Clone the repository:

```bash
git clone https://github.com/Dev-ev-v/doggy-notes.git
cd doggy-notes
```

Install:

```bash
pip install .
```

Or:

```bash
pip install doggy-notes
```

## Quick Start

Create a note:

```bash
doggy add "your text here"
```

List notes

```bash
doggy list
```

Delete a note:

```bash
doggy delete <index>
```

## Command Reference

| Command | Description |
|---------|-------------|
| add     | Create note |
| delete  | Delete note |
| list    | Show notes |

## Storage

Notes are stored locally in JSON.

Example structure:

```note
{
 "content":"Review argparse",
 "title":"Note",
 "description":"How to use argparse + examples"
 "tags":["python","cli"],
 "date":"2026-04-25"
}
```

## Roadmap

Planned:

- Edit notes
- Export notes
- Import notes
- Encryption
- Backup support

## Why This Project

Built as a lightweight, fast and privacy-friendly terminal note manager.

## Contributing

Issues and suggestions welcome.
