Metadata-Version: 2.1
Name: frame-API
Version: 0.1.5
Summary: A lightweight Python web framework.
Author-email: matvix <matvix@email.com>
License: MIT License
Project-URL: Source, https://github.com/matvix90/frameapi.git
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gunicorn==23.0.0
Requires-Dist: packaging==24.2
Requires-Dist: parse==1.20.2

# FrameAPI
Fast and Light Python Web Framework

## Installation
Create and activate virtual env and then install the framework:

``` py
pip install frameapi
```

## Usage
- Create a file `app.py`:

``` py
from frameapi import FrameAPI

app = FrameAPI()

app.welcome()
```

- Run the server:

``` 
gunicorn app:app --reload
```

- Open your browser at <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>.
