Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #110577
| Path | csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Nagy László Zsolt <gandalf@shopzeus.com> |
| Newsgroups | comp.lang.python |
| Subject | Re: Which one is the best JSON parser? |
| Date | Mon, 27 Jun 2016 15:30:48 +0200 |
| Lines | 19 |
| Message-ID | <mailman.29.1467034250.2358.python-list@python.org> (permalink) |
| References | <1150800609.939828.1466715495931.JavaMail.yahoo.ref@mail.yahoo.com> <1150800609.939828.1466715495931.JavaMail.yahoo@mail.yahoo.com> <dfd5b61b-74c0-99da-4175-fd1cb0b42631@mrabarnett.plus.com> <nkjedo$kd$1@ger.gmane.org> <5cd93315-95fd-b652-448a-19a6f3fe38ad@shopzeus.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=windows-1252 |
| Content-Transfer-Encoding | 7bit |
| X-Trace | news.uni-berlin.de 6Eaus5twxc0Uni1Y5QUpCwmh/J1TCXFOXsLrGzoTasBg== |
| Return-Path | <gandalf@shopzeus.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.035 |
| X-Spam-Evidence | '*H*': 0.93; '*S*': 0.00; 'json': 0.05; 'mrab': 0.05; ':-)': 0.12; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:JSON': 0.16; 'subject:parser': 0.16; 'wrote:': 0.16; '>>>': 0.20; 'import': 0.24; 'header:In-Reply-To:1': 0.24; 'fine': 0.28; 'me?': 0.34; 'worked': 0.34; 'library.': 0.35; 'to:addr :python-list': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'subject:the': 0.39; 'to:addr:python.org': 0.40; 'charset:windows-1252': 0.62; 'python-list': 0.66; 'regards.': 0.67; 'reminds': 0.84; 'wat': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=shopzeus.com; s=shopzeus_com; t=1467034248; bh=xc3pxnvttwTTpSieshkGl8mBEdkMdRYIOrah+Wgvc2s=; h=Subject:To:References:From:Date:In-Reply-To:From; b=YB+hxVJMwGqhLSmPzk8m3UyOKRz3SxtVS6UU5w6EzkOkIcWSVwHzPT4irZuDdgojM 8Xn41xKq1n0asrFjvrNV+/1Hylm5L1BlWkfV52b8G44UITZ4mjvBGG1Psb68WQ98eE mWSA17De9iXIuNufs2cwEQ9XtNCed/Cj0HPFzSEzEkBWaBnDAAc1YStepuGQk8tHqK ThxswvGsm2CE2oCBDLanJD7FEeT81nBpbcvpqbGayoAvKd2xtxb6NVkkrrUcPpzKCo 8vWfQictzhWYT43xqMT3PKnwvxFFVo9iOvxUUdY/7K5tbK1YWyecDkHCmCCBGiMDVS KXApYRF1s1ZKA== |
| In-Reply-To | <nkjedo$kd$1@ger.gmane.org> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.22 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| X-Mailman-Original-Message-ID | <5cd93315-95fd-b652-448a-19a6f3fe38ad@shopzeus.com> |
| X-Mailman-Original-References | <1150800609.939828.1466715495931.JavaMail.yahoo.ref@mail.yahoo.com> <1150800609.939828.1466715495931.JavaMail.yahoo@mail.yahoo.com> <dfd5b61b-74c0-99da-4175-fd1cb0b42631@mrabarnett.plus.com> <nkjedo$kd$1@ger.gmane.org> |
| Xref | csiph.com comp.lang.python:110577 |
Show key headers only | View raw
On 2016-06-23, MRAB <python@mrabarnett.plus.com> wrote:
>> On 2016-06-23 21:58, David Shi via Python-list wrote:
>>> Can any one tell me?
>>> Regards.
>>> David
>>>
>> There's one in the standard library.
> Which has always worked fine for me...
Which always reminds me:
>>> import json
>>> d = {0:1, False:2}
>>> d
{0: 2}
>>> json.dumps(d)
'{"0": 2}'
>>>
WAT :-)
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Re: Which one is the best JSON parser? Nagy László Zsolt <gandalf@shopzeus.com> - 2016-06-27 15:30 +0200 Re: Which one is the best JSON parser? Ned Batchelder <ned@nedbatchelder.com> - 2016-06-27 06:43 -0700
csiph-web