1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | # $ID$ |
---|
4 | |
---|
5 | PortSystem 1.0 |
---|
6 | PortGroup python25 1.0 |
---|
7 | |
---|
8 | name py25-cjson |
---|
9 | version 1.0.5 |
---|
10 | maintainers gmail.com:michael.dagitses |
---|
11 | platforms darwin |
---|
12 | |
---|
13 | description Fast JSON encoder/decoder for Python |
---|
14 | long_description This module implements a very fast JSON \ |
---|
15 | encoder/decoder for Python. \ |
---|
16 | \ |
---|
17 | JSON stands for JavaScript Object Notation \ |
---|
18 | and is a text based lightweight data exchange \ |
---|
19 | format which is easy for humans to read/write \ |
---|
20 | and for machines to parse/generate. JSON is \ |
---|
21 | completely language independent and has \ |
---|
22 | multiple implementations in most of the \ |
---|
23 | programming languages, making it ideal for \ |
---|
24 | data exchange and storage. \ |
---|
25 | \ |
---|
26 | The module is written in C and it is up to \ |
---|
27 | 250 times faster when compared to the other \ |
---|
28 | python JSON implementations which are written \ |
---|
29 | directly in python. This speed gain varies \ |
---|
30 | with the complexity of the data and the \ |
---|
31 | operation and is the the range of 10-200 \ |
---|
32 | times for encoding operations and in the \ |
---|
33 | range of 100-250 times for decoding operations. |
---|
34 | |
---|
35 | homepage http://pypi.python.org/pypi/python-cjson/ |
---|
36 | master_sites http://pypi.python.org/packages/source/p/python-cjson/ |
---|
37 | |
---|
38 | distname python-cjson-${version} |
---|
39 | |
---|
40 | checksums md5 4d55b66ecdf0300313af9d030d9644a3 \ |
---|
41 | sha1 a00519debfdc6dcc33acfe68dc10ee4866fdcd8b \ |
---|
42 | rmd160 c1256cf176af3194233de3704ec07ab4ccfb522c |
---|