在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:joshmarshall/jsonrpclib开源软件地址:https://github.com/joshmarshall/jsonrpclib开源编程语言:Python 100.0%开源软件介绍:JSONRPClibThis library is an implementation of the JSON-RPC specification. It supports both the original 1.0 specification, as well as the new (proposed) 2.0 spec, which includes batch submission, keyword arguments, etc. It is licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html). CommunicationFeel free to send any questions, comments, or patches to our Google Group mailing list (you'll need to join to send a message): http://groups.google.com/group/jsonrpclib SummaryThis library implements the JSON-RPC 2.0 proposed specification in pure Python. It is designed to be as compatible with the syntax of xmlrpclib as possible (it extends where possible), so that projects using xmlrpclib could easily be modified to use JSON and experiment with the differences. It is backwards-compatible with the 1.0 specification, and supports all of the new proposed features of 2.0, including:
I've added a "SimpleJSONRPCServer", which is intended to emulate the "SimpleXMLRPCServer" from the default Python distribution. RequirementsIt supports cjson and simplejson, and looks for the parsers in that order (searching first for cjson, then for the "built-in" simplejson as json in 2.6+, and then the simplejson external library). One of these must be installed to use this library, although if you have a standard distribution of 2.6+, you should already have one. Keep in mind that cjson is supposed to be the quickest, I believe, so if you are going for full-on optimization you may want to pick it up. InstallationYou can install this from PyPI with one of the following commands (sudo may be required):
Alternatively, you can download the source from the github repository at http://github.com/joshmarshall/jsonrpclib and manually install it with the following commands:
Client UsageThis is (obviously) taken from a console session.
If you need 1.0 functionality, there are a bunch of places you can pass that in, although the best is just to change the value on jsonrpclib.config.version:
The equivalent loads and dumps functions also exist, although with minor modifications. The dumps arguments are almost identical, but it adds three arguments: rpcid for the 'id' key, version to specify the JSON-RPC compatibility, and notify if it's a request that you want to be a notification. Additionally, the loads method does not return the params and method like xmlrpclib, but instead a.) parses for errors, raising ProtocolErrors, and b.) returns the entire structure of the request / response for manual parsing. SimpleJSONRPCServerThis is identical in usage (or should be) to the SimpleXMLRPCServer in the default Python install. Some of the differences in features are that it obviously supports notification, batch calls, class translation (if left on), etc. Note: The import line is slightly different from the regular SimpleXMLRPCServer, since the SimpleJSONRPCServer is distributed within the jsonrpclib library.
Class TranslationI've recently added "automatic" class translation support, although it is turned off by default. This can be devastatingly slow if improperly used, so the following is just a short list of things to keep in mind when using it.
If any of the above are issues, use the _serialize method. (see usage below) The server and client must BOTH have use_jsonclass configuration item on and they must both have access to the same libraries used by the objects for this to work. If you have excessively nested arguments, it would be better to turn off the translation and manually invoke it on specific objects using jsonrpclib.jsonclass.dump / jsonrpclib.jsonclass.load (since the default behavior recursively goes through attributes and lists / dicts / tuples). [test_obj.py]
[usage]
To turn on this behaviour, just set jsonrpclib.config.use_jsonclass to True. If you want to use a different method for serialization, just set jsonrpclib.config.serialize_method to the method name. Finally, if you are using classes that you have defined in the implementation (as in, not a separate library), you'll need to add those (on BOTH the server and the client) using the jsonrpclib.config.classes.add() method. (Examples forthcoming.) Feedback on this "feature" is very, VERY much appreciated. Why JSON-RPC?In my opinion, there are several reasons to choose JSON over XML for RPC:
In the interest of being fair, there are also a few reasons to choose XML over JSON:
TESTSI've dropped almost-verbatim tests from the JSON-RPC spec 2.0 page. You can run it with:
TODO
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论