Detailed Python Muse Image metadata, prompt, SEO, and deep-link helper package for muse-image.art.
Project description
muse-image-art
muse-image-art is a detailed Python helper package built for the keyword
muse image and the public website
muse-image.art.
The package is intentionally more than an empty placeholder. It gives Python scripts a practical set of helpers for Muse Image metadata, Muse Image prompt starter text, deep-link generation, and SEO-friendly page metadata. That makes it useful for automation, publishing pipelines, prompt experimentation, or content pages that want to target search phrases like muse image prompt, muse image ai, and AI image generator while still pointing back to the site.
Why this package exists
This package is designed to:
- reserve a strong Python package name around muse image.
- expose reusable Muse Image site metadata.
- generate plausible prompt starter strings for AI image workflows.
- build direct links to
https://muse-image.art. - produce SEO-oriented title and description objects for content automation.
Installation
pip install muse-image-art
Upgrade to the latest published version:
pip install --upgrade muse-image-art
Quick start
from muse_image_art import (
HOMEPAGE,
hello,
get_site_info,
prompt_starter,
build_muse_image_url,
create_muse_image_meta,
)
print(hello())
print(HOMEPAGE)
print(get_site_info()["focus"])
prompt = prompt_starter("beauty portrait", "soft luxury lighting")
print(prompt)
deep_link = build_muse_image_url(
prompt,
style="editorial",
aspect_ratio="4:5",
)
print(deep_link)
meta = create_muse_image_meta("muse image beauty portrait")
print(meta["title"])
print(meta["description"])
Included helpers
get_site_info()
Returns a dictionary containing:
- site name
- domain
- homepage
- documentation URL
- package name
- source repository
- local package path
- focus description
- default Muse Image keyword list
get_muse_image_keywords(extra=None)
Creates a deduplicated keyword list based on the muse image keyword family.
from muse_image_art import get_muse_image_keywords
print(get_muse_image_keywords(["muse image portrait", "editorial prompt"]))
prompt_starter(subject="portrait", style="cinematic editorial")
Generates a short, plausible Muse Image prompt starter:
from muse_image_art import prompt_starter
print(prompt_starter("street fashion campaign", "high contrast studio look"))
Example output:
muse image prompt for street fashion campaign, high contrast studio look, high detail, clean lighting, strong composition, professional color balance
build_muse_image_url(prompt, **options)
Builds a deep link to https://muse-image.art and attaches prompt-related
query parameters.
from muse_image_art import build_muse_image_url
url = build_muse_image_url(
"muse image luxury product shot",
style="minimal",
aspect_ratio="1:1",
utm_source="seo-workflow",
utm_medium="python",
)
print(url)
create_muse_image_meta(query, **options)
Builds a small SEO metadata object for pages targeting muse image terms.
from muse_image_art import create_muse_image_meta
meta = create_muse_image_meta(
"muse image prompt ideas",
canonical="https://muse-image.art/blog/muse-image-prompt-ideas",
)
print(meta)
Returned fields include:
titledescriptioncanonicalkeywordsopen_graph
Automation example
from muse_image_art import (
prompt_starter,
build_muse_image_url,
create_muse_image_meta,
)
query = "muse image product photography"
prompt = prompt_starter("clean skincare bottle", "premium daylight studio")
link = build_muse_image_url(prompt, aspect_ratio="1:1")
meta = create_muse_image_meta(query)
print({"prompt": prompt, "link": link, "meta": meta})
This is useful when you want a Python script to generate:
- a Muse Image-style prompt
- a deep link back to the website
- SEO metadata for a keyword-focused article or landing page
Good use cases
- keep a Python package name reserved for muse image tooling.
- attach Muse Image metadata to internal scripts and publishing jobs.
- prepare prompt-based content ideas around AI image generation.
- generate SEO copy for pages that target muse image and related queries.
- maintain a public package page that links users back to https://muse-image.art.
Package links
- Website: https://muse-image.art
- Source: https://github.com/youram470-art/muse-image-art-python
- Issues: https://github.com/youram470-art/muse-image-art-python/issues
- PyPI: https://pypi.org/project/muse-image-art/
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file muse_image_art-0.1.0.tar.gz.
File metadata
- Download URL: muse_image_art-0.1.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7c1a2182c66ffd0544c32113c30c9580a60c4a4fb9732772fc3a5a3b640c562
|
|
| MD5 |
7d02b4fa32603db4f52d8b798c1e5ce6
|
|
| BLAKE2b-256 |
c5bf4baa2b419e42499f933c8e61217193b60da5a3818c6c3333009b31b9275e
|
File details
Details for the file muse_image_art-0.1.0-py3-none-any.whl.
File metadata
- Download URL: muse_image_art-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a54ea294e69d166fcd2264413e3811e6df5e42cc996f3748d6c46ee66fd08e74
|
|
| MD5 |
9271afef3f8ade6410dd1fbadc15f46a
|
|
| BLAKE2b-256 |
acddf66cfd5803fb726ba6c4ee432ccd76ed35b83f54d168603495833965c657
|