Metadata-Version: 2.1
Name: pyLoginSystem
Version: 0.0.2
Summary: A simple python login system using sql alchemy
Home-page: https://www.github.com/uklewis124/LoginSystem
Author: Lewis Davies
Author-email: lewisastondavies1@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


# Python Package Documentation

This Python package contains several scripts that handle different utility tasks such as version checking, password encryption, and database preparation. Below is an overview of each module and its usage.

## Modules

### 1. `check_ver.py`
This script checks the current version of the software or package being used. It ensures that the user is running the correct version as specified.

**Usage:**
```bash
python check_ver.py
```

### 2. `password_encrypter.py`
This script provides functionality for encrypting passwords securely. It uses appropriate encryption algorithms to ensure password security for your application.

**Usage:**
```bash
python password_encrypter.py
```

### 3. `prepare_database.py`
This script is used to set up and prepare a database for use. It might include creating necessary tables, populating initial data, or setting up database configurations.

**Usage:**
```bash
python prepare_database.py
```

## Installation

To use these scripts, you can clone the repository and ensure that you have Python installed on your system.

```bash
git clone <repository-url>
cd <repository-directory>
```

## License
This project is licensed under the MIT License. See the `LICENSE` file for more information.

## Contributing
Feel free to open issues or pull requests for improvements and bug fixes.
