MagicCampus-flavoured SDK and CLI with a bundled OpenIM transport layer.
Project description
magiccampus-im-sdk
Python SDK and CLI for MagicCampus login, messaging, and websocket sync.
This project bundles the OpenIM transport implementation inside magiccampus_sdk, but removes direct user-facing dependency on OpenIM token and endpoint configuration. You only configure:
apiurlapikeyplatform
At runtime, the SDK calls:
GET /api/v1/accounts/imToken?platform=<PLATFORM>
and uses the response fields:
userIdimTokenwsApihttpApi
Install locally
uv sync
This repository vendors only the OpenIM transport pieces that magiccampus_sdk actually uses.
CLI quick start
magic-campus --help
magic-campus config init --apiurl https://api-test.pearlapi.com --apikey "$MAGICCAMPUS_APIKEY" --platform IOS --default true
magic-campus auth status --format pretty
magic-campus notify +send --to user:10134002 --text "hello"
magic-campus config init also supports an interactive TTY flow when you omit auth flags.
notify +send sends over MagicCampus HTTP POST /agent/v1/im/sendMessage. notify +history still relies on the websocket transport and local sync database.
CLI config is stored at:
~/.mushroom_agent/auth/magiccampus-im-sdk.json
Supported commands:
config init|list|use|removeauth statusnotify +sendnotify +history
Python websocket quick start
from magiccampus_sdk import MagicCampusWSSDK, MagicCampusWSConfig
sdk = MagicCampusWSSDK(
MagicCampusWSConfig(
apiurl="https://api-test.pearlapi.com",
apikey="YOUR_API_KEY",
platform="IOS",
data_dir="./magiccampus_data",
)
)
sdk.login()
sdk.start()
sdk.send_text("hello", recv_id="10134002")
Runnable examples live in magiccampus_sdk/example.py and magiccampus_sdk/example_ws.py.
CLI smoke script
An executable smoke helper lives at scripts/smoke_cli.py.
Offline-safe mode only exercises config persistence and notify dry-run:
uv run python scripts/smoke_cli.py
This mode does not require a real API key. It uses a placeholder key by default and avoids any live auth call.
Real network mode
To run the live auth probe, provide a real API key and enable --live:
export MAGICCAMPUS_APIURL=https://api-test.pearlapi.com
export MAGICCAMPUS_APIKEY='your real api key'
export MAGICCAMPUS_PLATFORM=IOS
uv run python scripts/smoke_cli.py --live
Optional variables:
MAGICCAMPUS_SMOKE_TARGET: target used by dry-run and optional live send, defaultuser:smoke-targetMAGICCAMPUS_PLATFORM: defaults toIOS
If you also want to send a real text message, set a real target and pass --live-send:
export MAGICCAMPUS_SMOKE_TARGET='user:10134002'
uv run python scripts/smoke_cli.py --live --live-send --text 'hello from smoke script'
--live-send performs a real outbound send, so use it only with a valid target and credentials.
Notes
apiurlcan point to any MagicCampus API base URL; the CLI and SDK append/api/v1/accounts/imTokenplatformdefaults toIOS- low-level message send / receive behavior comes from the bundled transport modules inside
magiccampus_sdk - the wrapper does not persist raw OpenIM credentials in CLI config
Project details
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 magiccampus_im_sdk-0.1.3.tar.gz.
File metadata
- Download URL: magiccampus_im_sdk-0.1.3.tar.gz
- Upload date:
- Size: 61.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fa81392234abcf5626859aafa2cd7db62dc3bbf9dd750cdbd4818174f6ee2dc
|
|
| MD5 |
21801fd978db66383aecff9d36f67c02
|
|
| BLAKE2b-256 |
04d43c9ad8f7501fc94dcb66c568c311b4b578e1d3abc5f679955abf3d14b258
|
File details
Details for the file magiccampus_im_sdk-0.1.3-py3-none-any.whl.
File metadata
- Download URL: magiccampus_im_sdk-0.1.3-py3-none-any.whl
- Upload date:
- Size: 66.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a778e2f1eb8bed1958cfcd61b13db2371c75fa5eeb6e79c0044fad145e5ca503
|
|
| MD5 |
d9f1850db1bc003c19449448520a75d0
|
|
| BLAKE2b-256 |
8b51ca3dccc0efda5895ebfcf57a12878321e81acb8e7bdea25fabec63b2e13f
|