JSON for Modern C++
github.com
JSON for Modern C++
1–10 of 125 posts
Re: JSON for Modern C++
#2Writing documentation, and easing users into your project, is an underrated skill.
Re: JSON for Modern C++
#3Re: JSON for Modern C++
#4Is that because the python dictionary happens to looks so much like json, or what do they mean?
Re: JSON for Modern C++
#5Kudos on the very thorough readme, complete with CMake instructions, most of the time people take it for granted that you know how to embed libraries and dependencies. Writing documentation, and easing users into your project, is an underrated skill.
Re: JSON for Modern C++
#6Re: JSON for Modern C++
#7Links:
http://rapidjson.org/ https://github.com/Tencent/rapidjson
https://github.com/open-source-parsers/jsoncpp
https://www.codeproject.com/Articles/20027/JSON-Spirit-A-C-J...
Re: JSON for Modern C++
#8> In languages such as Python, JSON feels like a first class data type. Is that because the python dictionary happens to looks so much like json, or what do they mean?
Re: JSON for Modern C++
#9How does this compare with RapidJSON, JSONCpp and JSON Spirit - other popular C++ JSON parser libraries? Links: http://rapidjson.org/ https://github.com/Tencent/rapidjson https://github.com/open-source-parsers/jsoncpp https://www.codeproject.com/Articles/20027/JSON-Spirit-A-C-J...
Our primary use is to parse http://cocodataset.org/ metadata files and RapidJson is 100% faster.
Re: JSON for Modern C++
#10> In languages such as Python, JSON feels like a first class data type. Is that because the python dictionary happens to looks so much like json, or what do they mean?