Metadata-Version: 2.4
Name: alogin
Version: 0.1.0
Summary: ALogin - Experimental CLI Authentication Library
Author: ADEEP AG
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ALogin

![PyPI](https://img.shields.io/pypi/v/alogin)
![Python](https://img.shields.io/pypi/pyversions/alogin)

ALogin is a lightweight CLI-based authentication helper for Python.
It provides simple account creation and login functionality for small projects, prototypes, and hackathon demos.

---

## Installation

pip install alogin

---

## Usage

```python
from alogin import create_account, login_account

create_account()
login_account()
```

---

## Features

* Account creation
* Login authentication
* JSON-based local user database
* Duplicate email protection
* Password hashing using SHA256
* Simple CLI interface

---

## Example

```python
from alogin import create_account, login_account

print("Create a new account")
create_account()

print("Login")
login_account()
```

---

## Version

### v0.1.0

New features added:

* JSON-based user database
* Login authentication system
* Password hashing
* Duplicate email protection

---

## License

MIT License
