Skip to content

Commit d25ef04

Browse files
committed
split from go repository
1 parent ebb6fe7 commit d25ef04

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ Concise Binary Object Representation (CBOR) is a superset of JSON's schema that'
33
* http://tools.ietf.org/html/rfc7049
44
* http://cbor.io/
55

6-
This repository contains implementations for Python and Go.
7-
8-
## Python ##
96
This Python implementation provides loads()/dumps() like the json standard library.
107

118
Compare to Python 2.7.5's standard library implementation of json:
@@ -20,14 +17,8 @@ load 50000 objects from cbor in 0.07 secs (763708.80/sec) and json in 0.32 (1553
2017

2118
There is also a pure-python implementation which gets about 1/3 the speed of json's C augmented speed.
2219

23-
Tested in Python 2.7.5, 2,7.6, 3.3.3, and 3.4.0
20+
Tested in Python 2.7.5, 2,7.6, 3.3.3, 3.4.0, and 3.5.2
2421

2522
Available on pypi:
2623

2724
pip install cbor
28-
29-
## Go ##
30-
31-
import cbor "bitbucket.org/bodhisnarkva/cbor/go"
32-
33-
The Go implementation is newer. It attempts to do serialization to/from struct types using reflection, but doesn't do 100% of cases like that right. It _should_ do everything fine serializing `map[string]interface{}` and `[]interface{}` and other basic types. It passes the test of decoding 100% of CBOR common appendix test strings.

0 commit comments

Comments
 (0)