Python metadata and integration helper package for https://instantramen.pro and Instant Ramen Pro website workflows
Project description
instantramen-pro
Python metadata and integration helper package for instantramen.pro.
instantramen-pro provides a small, importable Python layer for Instant Ramen
Pro website automation and future SDK workflows. The package exposes the public
website URL, documentation URL, package name, and source repository in a simple
Python API that can be reused by scripts, indexing tools, publishing tasks, and
monitoring jobs.
The first release is intentionally lightweight, but the package page is written like a real integration package: it includes installation instructions, concrete usage examples, a metadata API, automation examples, and direct links back to the instantramen.pro website.
Installation
Install from PyPI:
pip install instantramen-pro
Upgrade to the latest published version:
pip install --upgrade instantramen-pro
Quick Start
from instantramen_pro import HOMEPAGE, hello, get_site_info
print(hello())
print(HOMEPAGE)
print(get_site_info())
Expected output includes:
https://instantramen.pro
Metadata API
The package exposes constants for direct imports:
from instantramen_pro import (
HOMEPAGE,
DOCUMENTATION,
PACKAGE,
REPOSITORY,
)
You can also retrieve the metadata as a dictionary:
from instantramen_pro import get_site_info
site = get_site_info()
print(site["name"])
print(site["homepage"])
print(site["documentation"])
print(site["repository"])
Returned metadata:
{
"name": "instantramen.pro",
"homepage": "https://instantramen.pro",
"documentation": "https://instantramen.pro/docs",
"package": "instantramen-pro",
"repository": "https://github.com/youram470-art/instantramen-pro-python",
}
Automation Example
from instantramen_pro import get_site_info
site = get_site_info()
message = f"Publishing metadata for {site['name']} at {site['homepage']}"
print(message)
Use Cases
- Keep a Python package name reserved for Instant Ramen Pro tooling.
- Provide a public PyPI page that points back to https://instantramen.pro.
- Share Instant Ramen Pro metadata across Python scripts.
- Prepare a small base package for future site integrations or SDK features.
- Attach website and repository links to generated publishing output.
Links
- Website: https://instantramen.pro
- Documentation: https://instantramen.pro/docs
- Source: https://github.com/youram470-art/instantramen-pro-python
- PyPI: https://pypi.org/project/instantramen-pro/
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 instantramen_pro-0.1.0.tar.gz.
File metadata
- Download URL: instantramen_pro-0.1.0.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d4fb22b02b218f5f37b48a179c8830bfadf2fefe3e5df9ec989e9786adf8239
|
|
| MD5 |
dbef2e6e9f1ff83ab3ed7c11a5e63bd4
|
|
| BLAKE2b-256 |
c962aa80c6fc0dcdd4d3e00c08dc414946b3f07251d17511f281ab3c42b4da3a
|
File details
Details for the file instantramen_pro-0.1.0-py3-none-any.whl.
File metadata
- Download URL: instantramen_pro-0.1.0-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72757823d78b855c294a65c912646b43ce2c440d7bc207cb74ae24596bcb7136
|
|
| MD5 |
60ec9850939689715b9ac36ce19fea8c
|
|
| BLAKE2b-256 |
0d9a3800d299a19353a2990673354a27ad56beb2d6b83abd40e9dbd535a04a60
|