Metadata-Version: 2.1
Name: gms-cli
Version: 2.0.0
Summary: cli-gms is a command-line gym management system (GMS) application. It provides a user-friendly interface for managing members, their plans, packages, and payments. The application also allows you to view member details, payment history, and plan details. The CLI application is built using Python and leverages the Click library for command-line interface functionality. It stores data in a MySQL database and uses the Rich library for enhanced user interface experience.
License: MIT
Author: Libin Lalu
Author-email: libinlalu000@gmail.com
Requires-Python: >=3.9.5,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: keyring (>=25.5.0,<26.0.0)
Requires-Dist: mysql-connector-python (>=9.1.0,<10.0.0)
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
Requires-Dist: questionary (>=2.0.1,<3.0.0)
Requires-Dist: rich (>=13.9.4,<14.0.0)
Description-Content-Type: text/markdown


**GMS (Gym Management System)**
=============================

A Command-Line Interface (CLI) Application for Managing Gym Members and thier Plans


**Overview**
------------

cli-gms is a command-line gym management system (GMS) application. 
It provides a user-friendly interface for managing members, their plans, packages, and payments. 
The application also allows you to view member details, payment history, and plan details. 

The CLI application is built using Python and leverages the Click library for command-line interface functionality. 
It stores data in a MySQL database and uses the Rich library for enhanced user interface experience.


**Features**
------------

* Manage members and packages: add, modify, delete
* Manage member plans: create, renew, remove, make payment
* View member details, payment history, and plan details
* Store data in a MySQL database
* Enhanced user interface experience using Rich library


**Compatibility**
---------------

cli-gms runs on Linux, macOS, and Windows. Spotidex requires Python 3.9.5 or above.


**Installation**
---------------

Install GMS via pipx:

```console
pipx install cli-gms
```

if you dont have pipx installed then install via: 

```console
pip install pipx
```

**Usage**
-----

To use GMS, run the following command:
```
gms <command> [options]
```
**Demo**
-----

https://github.com/user-attachments/assets/91cfdb71-384e-42e0-820e-03dc6344e327

**Available Commands**
--------------------

* `gms view-members`: View gym members
* `gms view-member_plan <member_id>`: View a member's plan
* `gms manage-members`: Manage gym members
	
    + `add`   : Add a new member

    + `modify`: Modify an existing member
    + `delete`: Delete a member
* `gms manage-member-plan <member_id>`: Manage a member's plan
	
    - `create`      : Create a new plan for the member


    - `renew`       : Renew the member's existing plan
    - `remove`      : Remove the member's plan
    - `make payment`: Make a payment for the member's plan
* `gms view-packages`: View packages
* `gms manage-packages`: Manage packages

    - `add`   : Add a new package

    - `modify`: Modify an existing package
    - `delete`: Delete a package
* `gms view-payment-history`: View payment history
* `gms reset_database`: Reset the database


**License**
-------

GMS is licensed under the MIT License.


**Author**
-------

Libin Lalu <libinlalu000@gmail.com>

**Acknowledgments**
----------------

* Click library for command-line interface functionality
* Rich library for enhanced user interface experience
* MySQL database for storing data
* mysql-connector-python library for connecting to MySQL database
* keyring library for storing sensitive data
* questionary library for prompting user input

