Path: csiph.com!usenet.pasdenom.info!goblin2!goblin.stu.neva.ru!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: UNSURE 0.248 X-Spam-Level: ** X-Spam-Evidence: '*H*': 0.58; '*S*': 0.08; 'cc:addr:python-list': 0.11; 'guessing': 0.16; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'url:code': 0.29; 'message- id:@mail.gmail.com': 0.30; 'guess': 0.33; 'received:google.com': 0.35; 'useful': 0.36; 'how': 0.40; 'tell': 0.60; 'url:p': 0.64; 'taking': 0.65; 'you:': 0.81; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=0RmIkyS2b0UJ3xGivCx59uyhivb8NTT36pt6/hFqiiE=; b=nKQJ+1QlqsPtESii38p+j7z1gM17UYWWPgr/60sEL6ouBygT5WxfW56Jh24G8twykw LyfRV7a9pX7x5M4MxUGvfFIdbVJtHr9lAmV3bksY30QEqc00dCpqr4eJVVROSWDQoTV6 xA2s/HN0t5MwNc6KjqEsc4ZIWrrc31HrEH7dcY9RA7dgaXxK4gevHy7oc+TophCWFK8D Ip8AyZ88OdCU0us1V5sTi6paFTf88zowWtGwT2hp58CJ8ab4z2iAXxyXmu5JQ7Gzf0bu 5GCUOd09Ud+VUe4fMRGI9rN+kTlCOFdP8rxf4xcmtYM5O/wlTlBCm391/200cSWCr4qK 5DDA== MIME-Version: 1.0 X-Received: by 10.194.24.195 with SMTP id w3mr10527434wjf.135.1420861089240; Fri, 09 Jan 2015 19:38:09 -0800 (PST) In-Reply-To: <05c22fd5-bfae-4e09-9894-341f468e08dc@googlegroups.com> References: <05c22fd5-bfae-4e09-9894-341f468e08dc@googlegroups.com> Date: Fri, 9 Jan 2015 20:38:09 -0700 Subject: Re: Array of hash table From: Jason Friedman Cc: python-list Content-Type: text/plain; charset=UTF-8 X-Mailman-Approved-At: Mon, 12 Jan 2015 11:35:19 +0100 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421058919 news.xs4all.nl 2836 [2001:888:2000:d::a6]:40273 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:83601 > Can any one tell me how to create > graph={ > "nodes": [ > { > "id": "n0", > "label": "A node", > "x": 0, [ ... elided ... ] > } > ] > } Taking a guess and guessing that graphviz might be useful for you: https://code.google.com/p/pydot/.