Metadata-Version: 2.4
Name: viddiai-com
Version: 0.1.0
Summary: Metadata, keyword, deep-link, and SEO helper package for Viddi AI (https://viddiai.com), the all-in-one AI creative agent for video, image, and music generation.
Author-email: Viddi AI <support@viddiai.com>
License-Expression: MIT
Project-URL: Homepage, https://viddiai.com
Project-URL: Documentation, https://viddiai.com
Project-URL: Repository, https://github.com/youram470-art/viddiai-com-python
Project-URL: Issues, https://github.com/youram470-art/viddiai-com-python/issues
Keywords: viddi ai,ai video generator,text to video ai,ai image generator,ai music generator,all-in-one ai creative tool,ai content generator agent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# viddiai-com

Python metadata, keyword, deep-link, and SEO helper package for
[Viddi AI](https://viddiai.com).

**Viddi AI** ([https://viddiai.com](https://viddiai.com)) is an all-in-one AI
creative agent that generates **video, images, and music** from a single
platform with shared credits. This package gives Python scripts, automation,
and future SDK work a stable way to reference Viddi AI metadata, build keyword
lists, construct deep links back to [https://viddiai.com](https://viddiai.com),
and prepare SEO-friendly page metadata.

If you need a package that clearly signals **AI video generator**, **text to
video AI**, **AI image generator**, **AI music generator**, and
**all-in-one AI creative tool**, this package is designed for that job.

## Installation

```bash
pip install viddiai-com
```

## Usage

```python
from viddiai_com import HOMEPAGE, hello, get_site_info

print(hello())
print(HOMEPAGE)  # https://viddiai.com
print(get_site_info()["focus"])
```

### Keyword helper

```python
from viddiai_com import get_viddiai_keywords

print(get_viddiai_keywords(["ai video generator", "text to video ai"]))
```

### Deep-link builder

```python
from viddiai_com import build_viddiai_url, prompt_starter

prompt = prompt_starter("product launch teaser", mode="video")
url = build_viddiai_url(prompt, mode="video", aspect_ratio="16:9")
print(url)  # https://viddiai.com?...
```

### SEO metadata builder

```python
from viddiai_com import create_viddiai_meta

meta = create_viddiai_meta("ai music generator")
print(meta["title"])
print(meta["description"])  # links back to https://viddiai.com
```

## Included Utilities

- `HOMEPAGE` pointing to `https://viddiai.com`.
- `hello()` for confirming the package is installed.
- `get_site_info()` for website, documentation, package, and source metadata.
- `get_viddiai_keywords(extra)` for a deduplicated Viddi AI keyword list.
- `build_viddiai_url(prompt, **options)` for deep links to
  `https://viddiai.com`.
- `prompt_starter(subject, mode)` for plausible creative prompt strings.
- `create_viddiai_meta(query, **options)` for SEO title/description/OpenGraph.

## Use Cases

- Add Viddi AI metadata to Python automation and content pipelines.
- Prepare SEO metadata for pages targeting **AI video generator**,
  **AI image generator**, and **AI music generator** search terms.
- Build deep links that route users back to
  [https://viddiai.com](https://viddiai.com).
- Reserve a clean, importable Python package name for the Viddi AI ecosystem.

## Links

- Website: https://viddiai.com
- Documentation: https://viddiai.com
- Source: https://github.com/youram470-art/viddiai-com-python
- PyPI: https://pypi.org/project/viddiai-com/

## License

MIT
