NyanCAD server package with marimo integration
Project description
NyanCAD Server
NyanCAD Server is a Python package that provides an ASGI server for hosting NyanCAD applications with marimo notebook integration.
Features
- Serves NyanCAD static files (HTML, CSS, JavaScript, assets) at the root path
- Integrates marimo notebook server at
/notebook/endpoint - Bundles all static assets in the wheel for easy deployment
- Simple command-line interface for starting the server
- Development mode with auto-reload support
Installation
pip install nyancad-server
Usage
Command Line
Start the server with default settings (localhost:8080):
nyancad-server
Custom host and port:
nyancad-server --host 0.0.0.0 --port 3000
Development mode with auto-reload:
nyancad-server --reload
Programmatic Usage
from nyancad_server.server import create_app
import uvicorn
app = create_app()
uvicorn.run(app, host="localhost", port=8080)
Server Endpoints
/- NyanCAD web interface (static files)/css/,/js/,/library/, etc. - Static assets/wheels/- Python wheels (including nyancad package)/notebook/- Marimo notebook interface
Architecture
The server creates a Starlette ASGI application that:
- Static Files: Serves the entire
public/folder contents at the root path using Starlette's StaticFiles - Marimo Integration: Mounts a marimo ASGI app at
/notebook/that hosts the NyanCAD notebook - Asset Bundling: All static files and the notebook are bundled into the wheel during package build
This mirrors the existing WASM setup where users can access the main interface at / and the notebook at /notebook/, but replaces the WASM notebook with a full marimo server.
Development
The server includes fallback logic to work in development mode by looking for files relative to the source code when bundled assets are not available.
Requirements
-
Python 3.8+
-
marimo >= 0.13.0
-
uvicorn[standard] >= 0.23.0
-
nyancad >= 0.1.0
License
This project is licensed under the Mozilla Public License 2.0 (MPL-2.0).
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 nyancad_server-0.16.1.tar.gz.
File metadata
- Download URL: nyancad_server-0.16.1.tar.gz
- Upload date:
- Size: 12.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ea835b5d19df7a6841420c278fb1ce67e48dd6a10d430c4a0685075b5b11e7c
|
|
| MD5 |
cf2297ca33025a4b13d3dc7c9c8e484b
|
|
| BLAKE2b-256 |
46b0d60ae4cc71b7dd948b74bd39dd1c4e73cfdc595b915ff2012093cb32757d
|
File details
Details for the file nyancad_server-0.16.1-py3-none-any.whl.
File metadata
- Download URL: nyancad_server-0.16.1-py3-none-any.whl
- Upload date:
- Size: 12.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a98342190c341caef0fde2ae90aa3bcedbcf1d9030c20c31e88f2151a1a4306
|
|
| MD5 |
d7619f9d9d4eaccd66dbda3748af3a71
|
|
| BLAKE2b-256 |
0dabf27c4a3b485d4bfc031bf4a53e8962c62a854e207f1c7f0983d196c463f4
|