Metadata-Version: 2.1
Name: niho
Version: 1.0.0
Summary: Niho is a simple HTTP server framework.
Author: Nihad Kerimli
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Niho

Niho is a simple HTTP server framework for Python.

## Features
- Lightweight and easy to use.
- Add, update, and delete routes with ease.

## Installation
Install Niho using pip:
```bash
pip install niho
```

```python
from niho import NihoServer // import package

PORT = 3000
server = NihoServer() // create server

server.add("/", "Welcome to the homepage!") // "/" for homepage
server.add("/about", "This is the about page.")
server.add("/helloworld","path/to/your/html_file.html") // For add html file
server.set("/", status_code=200, content="Homepage with custom status code")
server.run(port=PORT)  # IP defaults to localhost change with ip=INPUT_IP if you want
```
