Skip to content

PostDispatchInteractive/archieml-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ArchieML

Parse Archie Markup Language (ArchieML) documents into Python data structures.

Read about the ArchieML specification at archieml.org.

Installation (with pip)

The current version is ==0.3.1 (hopefully, you never know).

pip install archieml

Usage

import archieml

# use archieml.load to load data from a file
with open('a.aml') as f:
    data = archieml.load(f)

# or use archieml.loads to load data from a string

data = archieml.loads("""

key: value
[array]
* 1
* 2
* 3

""")

About

Python parser for the Archie Markup Language (ArchieML)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%