Metadata-Version: 2.4
Name: neko-image-gallery-app
Version: 0.1.0.dev20250809135801
Summary: A web-based image gallery app and dashboard for Neko Image Gallery.
Project-URL: Homepage, https://github.com/NekoImageGallery/NekoImageGallery.App
Project-URL: Repository, https://github.com/NekoImageGallery/NekoImageGallery.App
Project-URL: Issues, https://github.com/NekoImageGallery/NekoImageGallery.App/issues
Project-URL: Documentation, https://github.com/NekoImageGallery/NekoImageGallery.App/blob/main/README.md
Author-email: EdgeNeko <edgeneko@aiursoft.com>
License: MIT
Keywords: frontend,gallery,image,neko,static,web
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Multimedia :: Graphics :: Viewers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: starlette>=0.47.2
Description-Content-Type: text/markdown

# NekoImageGallery.App

This is a simple wrapper for the NekoImageGallery webapp, allowing it to be used as a Python package.

## Usage

```sh
# With pip
pip install neko-image-gallery-app

# With uv
uv add neko-image-gallery-app
```

Then, use it as an ASGI-compatible web server:

```python
import neko_image_gallery_app

from neko_image_gallery_app import asgi_app as frontend_app
```

You can mount the `frontend_app` in your ASGI application, or run it directly using a server like Uvicorn.

The webapp is built to use `/api` as the API endpoint, so you will need to make your api base URL `/api` to use it correctly.

## Original webapp documentation

Please checkout [the following link](https://github.com/hv0905/NekoImageGallery.App/blob/master/README.md) for readme of webapp.
