Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 616 Bytes

File metadata and controls

21 lines (16 loc) · 616 Bytes

Simple-Bson

stable CI status

Introduction

simple-bson is a simple and lightweight bson implementation (current 7.89KiB)

Usage

>>> import simple_bson as bson
>>> a = bson.dumps({"Answer to life the universe and everything": 42})
>>> b = bson.loads(a)
>>> b
{"Answer to life the universe and everything": 42}