Metadata-Version: 2.1
Name: lumaapi
Version: 0.0.1
Summary: Luma AI API wrapper library and CLI
Author-email: Luma AI <hello@lumalabs.ai>
License: BSD-3-Clause
Project-URL: Homepage, https://lumalabs.ai/luma-api
Keywords: one,two
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

## Luma API Python client

### Library usage
```python
from lumaapi import LumaClient
client = LumaClient(api_key)
slug = client.submit(video_path, title)
print(client.status(slug))
```

Then use functions corresponding to the CLI

### CLI usage

To submit a video
`luma submit <video> <title>`
This outputs a slug.

To check status of the capture
`luma status <slug>`

To search user's captures
`luma get <title>`

To manually authenticate
(the CLI automatically prompts for api-key when running anything else)
`luma auth`

To check for credits
:code:`luma credits`
