Metadata-Version: 2.4
Name: seedance2pro-io
Version: 0.1.0
Summary: Python metadata helper package for https://seedance2pro.io blog and Next.js publishing workflows
Author-email: "seedance2pro.io" <support@seedance2pro.io>
License-Expression: MIT
Project-URL: Homepage, https://seedance2pro.io
Project-URL: Documentation, https://seedance2pro.io/docs
Project-URL: Repository, https://github.com/youram470-art/seedance2pro-io-python
Project-URL: Issues, https://github.com/youram470-art/seedance2pro-io-python/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# seedance2pro-io

Python metadata package for [seedance2pro.io](https://seedance2pro.io).

`seedance2pro-io` provides importable metadata for the Seedance 2 Pro website.
It is useful for scripts that need to reference the production URL, blog content
directory, or Next.js app path while working with the site.

## Installation

```bash
pip install seedance2pro-io
```

## Usage

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

print(hello())
print(HOMEPAGE)
print(get_site_info())
```

## Site Metadata

- Website: https://seedance2pro.io
- Local repository: `/Users/mac/Documents/code/seedance2_new`
- Content path: `content/blog`
- Next.js app path: `src/app`
- Source: https://github.com/youram470-art/seedance2pro-io-python

## License

MIT
