Metadata-Version: 2.1
Name: magicspace
Version: 1.0.1
Summary: Fast tool to open a set of apps (workspace) using a single command.
Home-page: https://github.com/lakshya7878/MagicSpace
Author: Lakshya Sharma
Author-email: lakshya7878@gmail.com
License: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# MagicSpace

## Table of Contents
- [Introduction](#introduction)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Commands](#commands)
- [Contributing](#contributing)

## Introduction

MagicSpace allows user to build different workspaces and open apps in a specific workspace with a single command. This is a fast and lightweight package.

## Features

- Create different workspaces and add apps to those workspaces
- Delete/List all the workspaces
- Open a workspace by a single command

## Installation

Run the following command in your terminal : 

```bash
pip install magicspace
```

## Usage 

- ##### Commands
    - Create a new workspace : 
        ```bash
        magicspace create <workspace>
        ```
    -   Add apps to a workspace :
        ```bash
        magicspace add --workspace="coding" --apps="VS Code,Google Chrome"
        ```
    - List all workspaces :
        ```bash
        magicspace list
        ```
    - Open a workspace :
        ```bash
        magicspace open <workspace>
        ```
    - Delete a workspace :
        ```bash
        magicspace delete <workspace>
        ```

## Contributing 
- Clone the repo locally :
```bash
git clone https://github.com/lakshya7878/MagicSpace.git
```
- Change directory to : 
```bash
cd magic_space
```
- Run main.py
```bash
python main.py --help
```
