JSON解析包 libjson
- 授权协议: LGPL
- 开发语言: C/C++
- 操作系统: Linux
- 软件首页: http://projects.snarc.org/libjson/
- 软件文档: http://projects.snarc.org/libjson/chapter1.html
软件介绍
libjson 是一个完全兼容 JSON 规范的 json 格式数据的 C 语言解析包。
示例代码:
int ret;
json_parser parser;
ret = json_parser_init(&parser, NULL, my_callback, my_callback_data);
if (ret) {
fprintf(stderr, "something wrong happened during init\n");
return ret;
}
The Definitive Guide to Django
Adrian Holovaty、Jacob Kaplan-Moss / Apress / 2007-12-06 / CAD 45.14
Django, the Python-based equivalent to the Ruby on Rails web development framework, is presently one of the hottest topics in web development today. In The Definitive Guide to Django: Web Development ......一起来看看 《The Definitive Guide to Django》 这本书的介绍吧!
