Metadata-Version: 2.1
Name: wifi-qrcode-generator
Version: 1.0
Summary: Generate a QR code for your WiFi network to let others quickly connect.
Home-page: https://github.com/lakhanmankani/wifi_qrcode_generator
Author: Lakhan Mankani
Author-email: lakhan.mankani@gmail.com
License: MIT
Keywords: WiFi,qrcode
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Communications
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE

# wifi_qrcode_generator
Generate a QR code for your WiFi network to let others quickly connect without needing to tell them your long and complicated password.

## Installation
```bash
$ pip install wifi-qrcode-generator
```

## Usage
```bash
$ wifi-qrcode-generator
```

Or as a Python API

```python
#!/usr/bin/env python3
import wifi_qrcode_generator

wifi_qrcode_generator.wifi_qrcode(
    ssid='Home wifi', hidden=False, authentication_type='WPA', password='very complicated password'
)
```

## Dependencies
- [Pillow](https://pypi.org/project/Pillow/)
- [qrcode](https://pypi.org/project/qrcode/)
