Path: csiph.com!usenet.pasdenom.info!goblin1!goblin2!goblin.stu.neva.ru!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-announce-list@python.org Delivered-To: python-announce-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'is"': 0.07; 'subject:ANN': 0.07; '------------': 0.09; 'arguments,': 0.09; 'release.': 0.09; 'url:apache': 0.09; 'url:github': 0.09; 'apache': 0.15; '0.2.0': 0.16; '0.2.1': 0.16; 'easy_install': 0.16; 'is"': 0.16; 'to:addr:python-announce-list': 0.16; 'url:html)': 0.16; 'url:license-2': 0.16; 'url:licenses': 0.16; 'library': 0.18; 'subject:] ': 0.20; 'install': 0.23; 'source': 0.25; '2.0': 0.26; 'installed': 0.27; 'to:no real name:2**1': 0.29; 'message- id:@mail.gmail.com': 0.30; 'code': 0.31; 'constant': 0.31; 'correctly.': 0.31; 'skip:= 20': 0.31; 'classes': 0.35; 'received:google.com': 0.35; 'version': 0.36; 'keyword': 0.36; 'licensed': 0.36; 'skip:j 20': 0.36; 'url:org': 0.36; 'skip:- 20': 0.37; 'remote': 0.38; 'checks': 0.38; 'skip:& 20': 0.39; 'subject:[': 0.39; 'to:addr:python.org': 0.39; 'new': 0.61; 'to:2**2': 0.65; 'license': 0.66; 'services': 0.66; 'url:0': 0.67 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=gtQxitw220Zk8xRgs2o+exCnG0uHomV9w2OIApqncH4=; b=T5esnhkJbsjvwOnaF3P6ZxWHZ334VdS/VgoAaQRS4nNplS48/O/9G5oMOBVlL9aVSI gloPvkg7G6UjQVMEGsHHHjCunY78C6YeqLJ1qvJbwvC4qC4tVjIGP9ATZaj/Tsou/KF/ twOqynErV3HTUcc85REEI5IWnMfuyhh3A+lDYmTyOgyNdB8Dh4beG5INrqDA3bhpZg24 QEnxV2eIeFNi2PLCAM1LbJdY3wZWVf4U0J2nZNPSYP/oagx2JaFAX5rB/YsNkCper2b4 xAOUmIMIFf6/ulfRGbGQaHxdijfcoDHddxaf0U29TihaqTSBNejdOJNk/zb0+ixW7Ic+ 14iA== MIME-Version: 1.0 X-Received: by 10.224.99.7 with SMTP id s7mr8149984qan.73.1411045979857; Thu, 18 Sep 2014 06:12:59 -0700 (PDT) Date: Thu, 18 Sep 2014 15:12:59 +0200 Subject: [ANN] jsonrpclib-pelix 0.2.1 From: Thomas Calmant To: "ipopo-dev@googlegroups.com" , ipopo-users@googlegroups.com, python-announce-list@python.org X-Mailman-Approved-At: Thu, 18 Sep 2014 15:42:59 +0200 Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 X-BeenThere: python-announce-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: python-list@python.org List-Id: Announcement-only list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Approved: python-announce-list@python.org Newsgroups: comp.lang.python.announce Message-ID: Lines: 38 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1411047779 news.xs4all.nl 2912 [2001:888:2000:d::a6]:34648 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python.announce:1403 ====================== jsonrpclib-pelix 0.2.1 ====================== jsonrpclib-pelix 0.2.1 has just been released ! What is it ? ------------ This library is an implementation of the JSON-RPC specification. It supports both the original 1.0 specification, as well as the 2.0 specification, which includes batch submission, keyword arguments, etc. It is licensed under the Apache Software License 2.0 ( http://www.apache.org/licenses/LICENSE-2.0.html). Source code is available on Github: https://github.com/tcalmant/jsonrpclib This library can be installed using pip or easy_install: pip install --upgrade jsonrpclib-pelix easy_install -U jsonrpclib-pelix What's new in 0.2.1 ? --------------------- This version is mainly a clean-up of the 0.2.0 release. * Added missing documentation to classes and methods * Removed jsonrpclib.utils.StringTypes constant * Replaced "type() is" checks by "isinstance()": this ensures that Pelix Remote Services can work correctly. Enjoy!