Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.05 KB

README.md

File metadata and controls

51 lines (39 loc) · 1.05 KB

wL

wL is a markup metalanguage designed to store arbitrary data in a format that is both human-readable and machine-readable.

The design goals of wL emphasize elementary simplicity, generality, stability, and usability across all programming language. Plus, wL format does not contain no data specialisation or typing, for a linear read.

Python module

"lib" refer to wL.py

Importing lib

  • by downloading lib (add the lib in your script's repository)
import wL as wLlib
  • from pip
pip install wLpylib
python3 -m pip install wLpylib
import wLpylib as wLlib

Functions

Open a wL file

wLlib.import_wL(open("file.wL"))

Export a dict as a wL file

wLlib.export_wL(any_dict)

Export a dict as a XML file

wLlib.export_XML(any_dict)

License

wL is an open-source format defined by this conventions.

wL python module license is CC-BY-SA (4.0).