Metadata-Version: 2.1
Name: ZypeSDK
Version: 1.6
Summary: Zype Language SDK
Home-page: https://github.com/Zype-Z/ZypeLang
Author: TechGeeks
Author-email: ZypeSDK@tgeeks.cf
Maintainer: Rajdeep Malakar
Maintainer-email: Rajdeep@tgeeks.cf
License: UNKNOWN
Platform: UNKNOWN
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

# ZypeLang - A OpenSource replacement for JSON

<p align='center'>
    <img height=200 width=200 src='https://raw.githubusercontent.com/Zype-Z/ZypeLang/main/favicon.png'>
</p>

[![Create PyPI Release](https://github.com/Zype-Z/ZypeLang/actions/workflows/ci.yaml/badge.svg)](https://github.com/Zype-Z/ZypeLang/actions/workflows/ci.yaml)&nbsp;[![Codacy Badge](https://app.codacy.com/project/badge/Grade/504ee73d0ce84712a81423911f2652e6)](https://www.codacy.com/gh/Zype-Z/ZypeLang/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=Zype-Z/ZypeLang&amp;utm_campaign=Badge_Grade)

ZypeLang is a OpenSource replacement of JSON based on Python.

## Syntax

```
<key> "value"
```

## How to use it

You can use ZypeLang with **Zype Python SDK**.

### Installation of ZypeSDK for Python

```shell
pip install ZypeSDK # Replace pip with pip3 and/or add sudo according to your Enviroment.
```

### Usage - ZypeSDK for Python

```python3
import ZypeSDK as zype

name = zype.Open("file.zype")['name']

print(name)
```

### Usage ZypeLang
And in `file.zype`

```
<name> "Zype, Inc.";
```

## Why to use

ZypeLang is easier & shorter than JSON

### Example

```json
{
    "name": "Rajdeep Malakar"
}
```

To,

```
<name> "Rajdeep Malakar"
```

**Note**: Don't add Semicolon on the Last line.

## CLI

**Zyper** is the official **CLI** of ZypeLang. To use it:

```shell
zyper <filename>
```

