Metadata-Version: 2.4
Name: secure-input
Version: 1.1.0
Summary: Secure Password Input
Home-page: https://github.com/SwezyDev/secure_input
Author: Swezy (https://t.me/Swezy)
Author-email: swezysoftware@gmail.com
Keywords: python,secure,password,input,key,encryption
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE.txt
Dynamic: license-file

## 🧪 Examples

A short interactive example:

```py
from secure_input import secure_input

api_key = secure_input("API Key: ", show="*")
if len(api_key) == 0:
    print("No key provided")
else:
    print("Key received (length):", len(api_key))
```
