Metadata-Version: 2.4
Name: pythonfrost
Version: 0.1.1.1
Summary: A lightweight Python microframework for building fast and simple web apps.
Home-page: https://github.com/ZhiarPiroti/Frost-A-Lightweight-Easy-to-Use-Python-Microframework
Author: Zhiar Piroti
Author-email: zhiarsmp11@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Frost

Frost is a lightweight Python web framework built from scratch.  
It supports routing, templates, static files, forms, and session handling — all without any heavy dependencies.

## Features

- Minimal and fast
- Route handling with dynamic parameters
- Template rendering with variable replacement
- Inline static files (CSS & JS)
- Form handling (POST & GET)
- Simple session management

## Installation

You can install Frost locally via pip:

```bash
pip install pythonfrost
```

## Quick Start
```py
from pythonfrost import Server, route, read_template

@route("/")
def home():
    return read_template("index.html")

Server()
```


## Contributing

Frost is open-source! Feel free to fork, submit issues, or contribute improvements.
