Metadata-Version: 2.4
Name: biothoth
Version: 0.1.0
Summary: The CLI for Biothoth.
Author-email: Biothoth <hello@biothoth.com>
License: LGPL-3.0-or-later
Project-URL: Homepage, https://www.biothoth.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: keyring
Requires-Dist: requests
Requires-Dist: tqdm
Dynamic: license-file

# Biothoth CLI

A powerful command-line interface for interacting with Biothoth AI services.

## Installation

```bash
pip install biothoth
```

##Getting Started

Before using Biothoth CLI, you'll need to authenticate with your credentials:

```bash
biothoth auth
```
You'll be prompted to enter your email and secret token. These credentials will be securely stored for future use.

## Uploading Files

To upload a file to Biothoth, use the following command:

```bash
biothoth upload [path]
```

The "path" can point to a local file or directory.

To upload to a specific directory, use the following command:

```bash
biothoth upload [path] --destination folder/
```


## Local Development

To run the CLI locally, you can use the following command:

```bash
python uninstall biothoth
pip install -e .
```

