Linden Lab Structured Data (LLSD) serialization library
Project description
llsd
Official python serialization library for Linden Lab Structured Data (LLSD).
Use
Install llsd with pip:
pip install llsd
Use llsd to parse/format your data:
import llsd
data = {"foo": "bar"}
# Format
data_xml = llsd.format_xml(data)
# >>> '<?xml version="1.0" ?><llsd><map><key>foo</key><string>bar</string></map></llsd>'
data_notation = llsd.format_notation(data)
# >>> "{'foo':'bar'}"
data_binary = llsd.format_binary(data)
# >>> '<?llsd/binary?>\n{\x00\x00\x00\x01k\x00\x00\x00\x03foos\x00\x00\x00\x03bar}'
# Parse
data = llsd.parse(data_xml)
# >>> {'foo: 'bar'}
data = llsd.parse(data_notation)
# >>> {'foo: 'bar'}
data = llsd.parse(data_binary)
# >>> {'foo: 'bar'}
Develop
Requirements:
Set up a venv and install development dependencies:
python3 -m venv .venv
. .venv/bin/activate
pip install .[dev]
Run tests:
pytest
Benchmarks
Benchmarks from commits to main
are published here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
llsd-1.2.2.dev3.tar.gz
(41.5 kB
view hashes)
Built Distributions
llsd-1.2.2.dev3-py3-none-any.whl
(22.9 kB
view hashes)
llsd-1.2.2.dev3-py2-none-any.whl
(22.9 kB
view hashes)
Close
Hashes for llsd-1.2.2.dev3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fc7eefdd17c5e466d10051e90f91ae1065a025f38ef24010c09c65c6f3d4a58 |
|
MD5 | 49efbc1bbf6ce6cdc84617749cadecbd |
|
BLAKE2b-256 | 55490546be8f2b5a78f111d6e184d53b9eeeedb6ecd51174f06dd591c552c98b |
Close
Hashes for llsd-1.2.2.dev3-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3b239a6af178942378a5b4794292bd829d5c80f5aef305772d7e196e805559e |
|
MD5 | b818f27ebe098a5568e43e354cd5ff73 |
|
BLAKE2b-256 | ec6f56972523c163bcd9245a19ae1158b82f8f2e20899b82853d940bf9543aa3 |