Skip to content

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

Notifications You must be signed in to change notification settings

nils-dohop/py-pointless

 
 

Repository files navigation

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)

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 54.7%
  • Roff 22.9%
  • Shell 7.7%
  • Makefile 5.6%
  • Gnuplot 4.0%
  • HTML 2.7%
  • Other 2.4%