Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 340 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 340 Bytes

py-pointless

A fast and efficient read-only relocatable data structure for JSON like data, with C and Python APIs

import pointless

pointless.serialize({1: 2, 3: 4}, 'file.pointless')

root = pointless.Pointless('file.pointless').GetRoot()
print(root, repr(root))

for k, v in root.items():
  print(k, '->', v)