Metadata-Version: 2.4
Name: drp-cli
Version: 0.3.19
Summary: Drop text and files from the command line — get a link instantly.
Author: Vic Nas
License: MIT
Project-URL: Homepage, https://drp.fyi
Project-URL: Repository, https://github.com/vicnasdev/drp
Project-URL: Issues, https://github.com/vicnasdev/drp/issues
Keywords: cli,file-sharing,pastebin,drops
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28
Provides-Extra: completion
Requires-Dist: argcomplete>=3.1; extra == "completion"
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-django; extra == "dev"
Requires-Dist: pytest-asyncio; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: django>=5.0; extra == "dev"
Requires-Dist: python-dotenv; extra == "dev"
Requires-Dist: dj-database-url; extra == "dev"
Requires-Dist: whitenoise; extra == "dev"
Requires-Dist: gunicorn; extra == "dev"
Requires-Dist: requests; extra == "dev"
Requires-Dist: psycopg2-binary>=2.9; extra == "dev"
Requires-Dist: resend; extra == "dev"
Requires-Dist: boto3; extra == "dev"
Requires-Dist: markdown; extra == "dev"
Requires-Dist: argcomplete>=3.1; extra == "dev"
Dynamic: license-file

# drp-cli

> **⚠️ Development Version** — This is the development build of the drp command-line tool. It may be unstable and less secure than production releases. Use at your own risk.
>
> For the stable package, install **[drp](https://pypi.org/project/drp/)** instead:
> ```
> pipx install drp
> ```
> For the hosted service, visit **[drp.fyi](https://drp.fyi)**.

---

Drop files or paste text from the command line — get a link instantly.

```bash
pipx install drp-cli
drp setup && drp up "hello world"
```

## Usage

```bash
drp up "some text"           # upload text
drp up file.pdf              # upload a file
echo "piped" | drp up        # pipe from stdin
drp get <key>                # retrieve text
drp get -f <key>             # download file
drp ls                       # list your drops
drp rm <key>                 # delete a drop
```

## Why drp-cli?

This is the **development/preview** channel. It tracks the `dev` branch and receives changes before they are validated for stable release.

| | `drp` (stable) | `drp-cli` (dev) |
|---|---|---|
| **Source** | `main` branch | `dev` branch |
| **Stability** | Tested, tagged releases | May break between updates |
| **Security** | Reviewed before release | May contain unreviewed changes |
| **Install** | `pipx install drp` | `pipx install drp-cli` |

## Links

- **Stable package:** [pypi.org/project/drp](https://pypi.org/project/drp/)
- **Homepage:** [drp.fyi](https://drp.fyi)
- **Source:** [github.com/vicnasdev/drp](https://github.com/vicnasdev/drp)

## License

CLI (`cli/`): MIT.
