Metadata-Version: 2.1
Name: schemantis-cli
Version: 0.0.9
Summary: A python comand line tool that integrates with schemantis
Author-email: James Rao <james@10xtech.ca>
Project-URL: Homepage, https://git.10xtech.ca/root/schemantis-cli
Project-URL: Bug Tracker, https://git.10xtech.ca/root/schemantis-cli
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: schemantis


# Schemantis CLI

## Introduction

The Schemantis CLI is a command-line interface tool that allows you to generate code from map data using the Schemantis API.

## Installation

To install the Schemantis CLI, you can use pip:

```bash
pip install schemantis-cli
```

## Usage

To use the Schemantis CLI, you need to provide the following arguments:

- `--generator` or `-g`: The generator to use (e.g., 'python').
- `--map_id_or_name` or `-m`: The map ID or name.
- `--output-directory` or `-o`: The output directory for the generated code.

Here is an example command to generate Python code from a map:

```bash
schemantis-cli --generator python --map_id_or_name 123 --output-directory ./out
```
