Metadata-Version: 2.1
Name: sanickit
Version: 0.0.6
Summary: A web framework that applies some of the ideas of SvelteKit to Sanic
Project-URL: Documentation, https://github.com/lllama/sanickit#readme
Project-URL: Issues, https://github.com/lllama/sanickit/issues
Project-URL: Source, https://github.com/lllama/sanickit
Author-email: Felix Ingram <f.ingram@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10
Requires-Dist: beautifulsoup4
Requires-Dist: click
Requires-Dist: copier
Requires-Dist: httpx
Requires-Dist: jinja2
Requires-Dist: jinja2-fragments
Requires-Dist: rich
Requires-Dist: sanic
Requires-Dist: sanic-ext
Requires-Dist: textual
Requires-Dist: tomlkit
Requires-Dist: watchfiles
Description-Content-Type: text/markdown

# SanicKit

[![PyPI - Version](https://img.shields.io/pypi/v/sanickit.svg)](https://pypi.org/project/sanickit)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sanickit.svg)](https://pypi.org/project/sanickit)

SanicKit is a framework that applies some of the ideas of Svelte-kit to the Sanic web framework. In particular:

* File-path routing
* Easy deployment

The framework is designed for multi-page apps - pages are rendered on the server and sent to the browser. Libraries such as [htmx](https://htmx.org)
can be used to create a more SPA-like experience.

-----

**Table of Contents**

- [Installation](#installation)
- [License](#license)

## Installation

```console
pip install sanickit
```

## License

`SanicKit` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
