Metadata-Version: 2.1
Name: AuthSys
Version: 0.0.2
Summary: AuthSys is a Python library Allows you to create a membership system, so you add keys to your tools.
Home-page: https://github.com/IceBytes/AuthSys/
Author: Just Ice
Author-email: MrAws.developer@gmail.com
Project-URL: Source, https://github.com/IceBytes/AuthSys/
Project-URL: Bug Reports, https://github.com/IceBytes/AuthSys/issues
Project-URL: Documentation, https://github.com/IceBytes/AuthSys/
Keywords: AuthSys,Membership,Python library
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: requests


# AuthSys

![GitHub stars](https://img.shields.io/github/stars/IceBytes/AuthSys?style=social)
![GitHub followers](https://img.shields.io/github/followers/IceBytes?style=social)

## Introduction
AuthSys is a Python library for Memberships system.

## Installation
You can install AuthSys using pip:
```bash
pip install AuthSys
```

## Usage

### Initialization
```python
from AuthSys import AuthSys

auth = AuthSys()
```

### Login
```python
# Logging in with a key and access token
response = auth.login(key="your_key", access_token="your_access_token")
print(response)
```

### Registration
```python
# Registering a new user
response = auth.register(time="registration_time")
print(response)
```

### Removing a user
```python
# Removing a user using their key and authentication secret
response = auth.remove(key="user_key", secret_auth="user_secret_auth")
print(response)
```

### Editing user information
```python
# Editing user information
response = auth.edit(key="user_key", auth="user_auth", time="new_time")
print(response)
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)
```
