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
Release files for instantramen-pro 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| instantramen_pro-0.1.0.tar.gz | 2.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| instantramen_pro-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 5.0 kB
Release files / instantramen_pro-0.1.0.tar.gz
| Download URL | instantramen_pro-0.1.0.tar.gz |
|---|---|
| Size | 2.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2d4fb22b02b218f5f37b48a179c8830bfadf2fefe3e5df9ec989e9786adf8239
|
|
BLAKE2b-256 checksum How to use checksums |
c962aa80c6fc0dcdd4d3e00c08dc414946b3f07251d17511f281ab3c42b4da3a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.6
|
Release files / instantramen_pro-0.1.0-py3-none-any.whl
| Download URL | instantramen_pro-0.1.0-py3-none-any.whl |
|---|---|
| Size | 2.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
72757823d78b855c294a65c912646b43ce2c440d7bc207cb74ae24596bcb7136
|
|
BLAKE2b-256 checksum How to use checksums |
0d9a3800d299a19353a2990673354a27ad56beb2d6b83abd40e9dbd535a04a60
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.6
|