Metadata-Version: 2.1
Name: FSCLI
Version: 1.0.0
Summary: FSCLI is a module that simplifies starting, stopping & deleting servers based on server_id and email.
Home-page: https://github.com/fluidstackio/fscli.git
Author: Abhisar Anand, Srinivas Sriram
Author-email: abhisar.muz@gmail.com, srinivassriram06@gmail.com
License: GNU General Public License v3.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: python-dotenv
Requires-Dist: requests

# FSCLI

### Thank you for visiting! ![](https://visitor-badge.glitch.me/badge?page_id=fluidstackio.fscli)

FSCLI is a module that simplifies starting, stopping & deleting servers based on server_id and email.

## Running the Code

### Cloning the Code

```shell
~$ git clone https://github.com/fluidstackio/fscli.git
```

### Installing the packages

You can use `pip3` to install the packages required to run the package.

```shell
~$ cd FSCLI && sudo pip3 install -r requirements.txt
```

### Running the program

Be sure to be outside the FSCLI directory.
These are different commands that you can run, replace the word inside the <> with the replacement value.

```shell
~$ python3 -m fscli --start --email <email> --server_id <server id>
~$ python3 -m fscli --stop_all --email <email>
~$ python3 -m fscli --stop --email <email> --server_id <server id>
~$ python3 -m fscli --destroy_all --email <email>
~$ python3 -m fscli --destroy --email <email> --server_id <server_id>
~$ python3 -m fscli --fraud_set --email <email>
```


