Metadata-Version: 2.1
Name: vcoml
Version: 1.0.1
Summary: Imagine a markup language, but worse
Home-page: https://github.com/vcokltfre/vcoml
License: MIT
Author: vcokltfre
Author-email: vcokltfre@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Project-URL: Repository, https://github.com/vcokltfre/vcoml
Description-Content-Type: text/markdown

# vcoml

Imagine a markup language, but worse

## Syntax Example

VcoML:

```vcoml
:"members"
  :297045071457681409
    :"username"
      "vcokltfre"
    :"discriminator"
      6868
    :"mfa"
      ya
    :"verified"
      na
    :"email"
      idk
    :"roles"
      >
        :"id"
          1234
        :"name"
          "Admin"
      >
        :"id"
          5678
        :"name"
          "Moderator"
```

YAML:

```yml
members:
  297045071457681409:
    username: vcokltfre
    discriminator: 6868
    mfa: true
    verified: false
    email: null
    roles:
      - id: 1234
        name: Admin
      - id: 5678
        name: Moderator
```

## Usage

```py
from vcoml import pack, unpack


data = unpack("""
:"abc"
  123
:"def"
  >
    "list"
  >
    "more list"
""")

print(data)

# Re-pack the data
print(pack(data))
```

## Todo

- CLI

