<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/doc/source/tutorial, branch error-message-eccentricity</title>
<subtitle>github.com: networkx/networkx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/'/>
<entry>
<title>minor changes related to _iter removal</title>
<updated>2015-08-07T19:27:17+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2015-08-07T19:27:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=59541f4f69f33e8f772be26f878860b1904bf7af'/>
<id>59541f4f69f33e8f772be26f878860b1904bf7af</id>
<content type='text'>
Mostly doc string tweaks for graph classes, tutorial.
Fixes of blockmodel and antigraph examples
api_changes and release_2.0 updates.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mostly doc string tweaks for graph classes, tutorial.
Fixes of blockmodel and antigraph examples
api_changes and release_2.0 updates.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix paren typo in tutorial</title>
<updated>2015-05-12T14:30:53+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2015-05-12T14:30:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=e58221e156606792af40c6485e5896d535224980'/>
<id>e58221e156606792af40c6485e5896d535224980</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Expand data keyword in G.edges and add default data</title>
<updated>2015-01-18T02:42:00+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2015-01-18T02:42:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=bbd42197b0c9342cc46658035e8055a08766f34c'/>
<id>bbd42197b0c9342cc46658035e8055a08766f34c</id>
<content type='text'>
When data=True, the whole data dictionary is returned for each edge.
When data=False, no data is returned.
Otherwise data is used as the attribute name of the edge data to return.
&gt;&gt;&gt; [ (u,v,edata['weight']) for u,v,edata in G.edges(data=True) ]
becomes
&gt;&gt;&gt; G.edges(data='weight')

&gt;&gt;&gt; for n,nbrs in G.adjacency_iter():
...     for nbr,ddict in nbrs.items():
...         print (n,nbr,ddict.get('weight',1))
becomes
&gt;&gt;&gt; G.edges(data='weight', default=1)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When data=True, the whole data dictionary is returned for each edge.
When data=False, no data is returned.
Otherwise data is used as the attribute name of the edge data to return.
&gt;&gt;&gt; [ (u,v,edata['weight']) for u,v,edata in G.edges(data=True) ]
becomes
&gt;&gt;&gt; G.edges(data='weight')

&gt;&gt;&gt; for n,nbrs in G.adjacency_iter():
...     for nbr,ddict in nbrs.items():
...         print (n,nbr,ddict.get('weight',1))
becomes
&gt;&gt;&gt; G.edges(data='weight', default=1)
</pre>
</div>
</content>
</entry>
<entry>
<title>Add handy hyperlink from tutorial to DiGraph class</title>
<updated>2014-05-03T23:55:03+00:00</updated>
<author>
<name>Matt Hickford</name>
<email>matt.hickford@gmail.com</email>
</author>
<published>2014-05-03T23:55:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=1c4023861f7f4035d96c21f9b5cb2c4234911114'/>
<id>1c4023861f7f4035d96c21f9b5cb2c4234911114</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>typos: space and correct object of conversion</title>
<updated>2014-04-15T12:57:54+00:00</updated>
<author>
<name>Aaron Schumacher</name>
<email>ajschumacher@gmail.com</email>
</author>
<published>2014-04-15T12:57:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=45a38309a4b114d7d0d74e38681861be97514012'/>
<id>45a38309a4b114d7d0d74e38681861be97514012</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge pull request #812 from chebee7i/pydot". Addresses #812.</title>
<updated>2013-09-09T07:40:47+00:00</updated>
<author>
<name>chebee7i</name>
<email>chebee7i@gmail.com</email>
</author>
<published>2013-09-09T07:40:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=cfda4a1d56c40a63b0316b1484ec19ec4d954eff'/>
<id>cfda4a1d56c40a63b0316b1484ec19ec4d954eff</id>
<content type='text'>
This reverts commit e736d4b4db44f45c59039d44f92013748cbef3f4, reversing
changes made to ceb31d0f4f14556d4e804868efd23c11f2e6b776.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit e736d4b4db44f45c59039d44f92013748cbef3f4, reversing
changes made to ceb31d0f4f14556d4e804868efd23c11f2e6b776.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #812 from chebee7i/pydot</title>
<updated>2013-09-09T03:21:49+00:00</updated>
<author>
<name>chebee7i</name>
<email>chebee7i@gmail.com</email>
</author>
<published>2013-09-09T03:21:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=e736d4b4db44f45c59039d44f92013748cbef3f4'/>
<id>e736d4b4db44f45c59039d44f92013748cbef3f4</id>
<content type='text'>
Drawing with pydot/Graphviz and inline IPython displays. </content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Drawing with pydot/Graphviz and inline IPython displays. </pre>
</div>
</content>
</entry>
<entry>
<title>Fix outdated/broken/error links in documentation.</title>
<updated>2013-07-21T21:04:36+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2013-07-21T21:04:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=7346f12acd9ea3942d93c9abf141d0abdbb677b0'/>
<id>7346f12acd9ea3942d93c9abf141d0abdbb677b0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update documentation for globally changing display mode.</title>
<updated>2013-07-10T19:43:49+00:00</updated>
<author>
<name>chebee7i</name>
<email>chebee7i@gmail.com</email>
</author>
<published>2013-07-10T19:43:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=8a6bf5a10672fd9ed81f0ce8bd2f0a8ec380fa1d'/>
<id>8a6bf5a10672fd9ed81f0ce8bd2f0a8ec380fa1d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add documentation for inline pydot drawing within IPython notebooks.</title>
<updated>2013-01-08T08:54:19+00:00</updated>
<author>
<name>chebee7i</name>
<email>chebee7i@gmail.com</email>
</author>
<published>2013-01-08T08:54:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=6b863ad7dad65d27076d7639cabd07811d7395f0'/>
<id>6b863ad7dad65d27076d7639cabd07811d7395f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
