kling3-pro
Python metadata and integration helper package for kling3.pro.
kling3-pro provides a small, importable Python layer for Kling 3 Pro website publishing, content automation, and Next.js route discovery workflows. The
package is intentionally lightweight, but the published metadata is complete:
it exposes the production website URL, documentation URL, source repository,
local repository path, content path, and Next.js app path used by the site.
This package is useful as a stable integration point for scripts that generate content, inspect website structure, publish MDX files, or attach site metadata to automation output. It follows the same package-page pattern used by broader SDK-style placeholder packages: clear installation instructions, concrete usage examples, package metadata, and direct links back to the target website.
Installation
Install from PyPI:
pip install kling3-pro
Upgrade to the latest published version:
pip install --upgrade kling3-pro
Quick Start
from kling3_pro import HOMEPAGE, hello, get_site_info
print(hello())
print(HOMEPAGE)
print(get_site_info())
Expected output includes the public website URL:
https://kling3.pro
Metadata API
The package exposes simple constants for direct imports:
from kling3_pro import (
HOMEPAGE,
DOCUMENTATION,
PACKAGE,
REPOSITORY,
LOCAL_REPOSITORY,
CONTENT_PATH,
APP_PATH,
)
You can also retrieve everything at once:
from kling3_pro import get_site_info
site = get_site_info()
print(site["name"])
print(site["homepage"])
print(site["content_path"])
print(site["app_path"])
Returned metadata:
{
"name": "kling3.pro",
"homepage": "https://kling3.pro",
"documentation": "https://kling3.pro/docs",
"package": "kling3-pro",
"repository": "https://github.com/youram470-art/kling3-pro-python",
"local_repository": "/Users/mac/Documents/code/kling3-cf",
"content_path": "content",
"app_path": "src/app",
}
Automation Example
The metadata can be used in release scripts, blog generators, indexing tools, or site maintenance commands:
from pathlib import Path
from kling3_pro import get_site_info
site = get_site_info()
content_dir = Path(site["local_repository"]) / site["content_path"]
app_dir = Path(site["local_repository"]) / site["app_path"]
print(f"Website: {site['homepage']}")
print(f"Content directory: {content_dir}")
print(f"Next.js app directory: {app_dir}")
Use Cases
- Keep a Python package name reserved for Kling 3 Pro related tooling.
- Provide a clean PyPI page that points back to https://kling3.pro.
- Share website metadata across scripts without duplicating hard-coded paths.
- Support Kling 3 Pro content tooling, website metadata, and deployment helper scripts.
- Help publishing tools locate
contentandsrc/appconsistently.
Project Layout
The related website project is organized around local content and Next.js app routes:
Local repository: /Users/mac/Documents/code/kling3-cf
Content path: content
Next.js app path: src/app
Use it when Python automation needs a stable reference to the Kling 3 Pro homepage, source repository, content directory, and Next.js application path.
Links
- Website: https://kling3.pro
- Documentation: https://kling3.pro/docs
- Source: https://github.com/youram470-art/kling3-pro-python
- PyPI: https://pypi.org/project/kling3-pro/
License
MIT
Release files for kling3-pro 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| kling3_pro-0.1.1.tar.gz | 2.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| kling3_pro-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 5.8 kB
Release files / kling3_pro-0.1.1.tar.gz
| Download URL | kling3_pro-0.1.1.tar.gz |
|---|---|
| Size | 2.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
997cb6ef0505763db61f4318f28ab574f8732e6e170a4fc55a87cc7cdd830fd2
|
|
BLAKE2b-256 checksum How to use checksums |
4c06cd5014fbd60293c2b4c2b818b47f6b407aa84f14be2025494a2c21bb218c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.6
|
Release files / kling3_pro-0.1.1-py3-none-any.whl
| Download URL | kling3_pro-0.1.1-py3-none-any.whl |
|---|---|
| Size | 3.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
24e388450d01a036c19a18c93ac2609eead89f77854e099de7f32c012c494cb0
|
|
BLAKE2b-256 checksum How to use checksums |
d32010ecb14eed8412bcc2b04b5939cbee974f6a488d1dc6d9f76aa721caffbb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.6
|