Metadata-Version: 2.4
Name: libcgipy
Version: 0.1.2
Summary: 簡易CGIサーバと軽量CGIモジュール
Author: PEN
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: libcgi>=0.1.1

# Python-CGI

## インストール方法
```bash  
pip install libcgipy
```

## インストール確認
- Windows  
```bash
pip list | findstr Python-CGI
```

- Linux  
```bash
pip list | grep Python-CGI
```

## 使い方

- 旧モジュール  
```python
import cgi
```

- 新モジュール  
```python
import pycgi
```

---

- 旧モジュール  
```python
import cgitb
```

- 新モジュール  
```python
import pycgitb
```

---

### 簡易CGIサーバの立ち上げ

```python
from httpcgi import CGIHTTP

if __name__ == "__main__":
    CGIHTTP("0.0.0.0", 8000).serve_forever()
```
