summaryrefslogtreecommitdiff
path: root/networkx/readwrite/graphml.py
Commit message (Expand)AuthorAgeFilesLines
* Remove edges_iter, G.edges() now returns an iterator instead of listMridul Seth2015-06-171-2/+2
* Makes Graph.nodes() return iterator instead of listJeffrey Finkelstein2015-06-111-1/+1
* Ensure that write_gexf and write_graphml output XML declarationysitu2014-07-041-1/+1
* Remove duplicate XML header in GEXF/GraphML outputysitu2014-05-211-2/+0
* Fixes #1063.chebee7i2014-02-201-4/+7
* Fix typo in docstring (copy/paste error).Chris2013-02-051-1/+1
* Implement parse_graphml()Chris2013-02-041-6/+53
* Trailing whitespace.Chris2013-02-041-51/+51
* Remove trailing cruft from file.Aric Hagberg2012-12-281-6/+0
* Fallback to string type in GraphML reader if none given in <key>Aric Hagberg2012-10-281-3/+13
* Adds labels of yEd curved edgesViktor Holmberg2012-10-081-2/+8
* Allow updates in graphml defaults.Aric Hagberg2012-04-151-2/+4
* Add yED coordinates to graphml.Aric Hagberg2012-04-151-0/+5
* Better error message for unsupported types in graphml writerAric Hagberg2012-02-251-1/+1
* skip doctests (fail with python3.1)Aric Hagberg2011-09-251-1/+1
* Add svg yfiles patch.Aric Hagberg2011-09-211-2/+5
* Updated graphml to use @open_fileBen Edwards2011-08-171-6/+6
* Should check for bool type.Aric Hagberg2011-08-171-1/+1
* Update bool test to include True/False and use correct data name.Aric Hagberg2011-08-161-2/+4
* Handle string "true","false" in graphml reader.Aric Hagberg2011-08-161-1/+5
* Handle long type in GraphML. Put in handling of "integer" for Gephi bug.Aric Hagberg2011-08-111-3/+8
* The correct GraphML type is int not integer.Aric Hagberg2011-08-111-1/+1
* Changed File handle name and utils in new directory, also changesBen Edwards2011-07-151-3/+3
* Use node and edge labels from yfiles graphml.Aric Hagberg2011-06-181-2/+11
* Use iterators instead of lists when possible. Addresses #560Loïc Séguin-C.2011-05-281-1/+1
* Make Graph.name a property that sets/gets Graph.graph['name']Aric Hagberg2011-05-161-6/+11
* Allow use of either cElementTree or ElementTree.Aric Hagberg2011-05-101-10/+15
* Thanks for the patch.Aric Hagberg2011-04-051-1/+2
* Decode xml tostring in _str_() method.Aric Hagberg2011-03-011-3/+7
* Update types in graphml: Gephi writes "integer" for graphml type.Aric Hagberg2011-01-281-1/+1
* Use try/except to import elementtree to work with IronPython2.7.Aric Hagberg2011-01-281-1/+0
* Add generate_graphml() option.Aric Hagberg2011-01-131-3/+44
* Read and write graph data with GraphML.Aric Hagberg2010-11-291-11/+19
* Pretty print GraphML.Aric Hagberg2010-11-251-3/+26
* Don't write NetworkX multigraph edge keys as GraphML edge idsAric Hagberg2010-11-241-8/+19
* Allow unicode types for nodes in read_graphml.Aric Hagberg2010-11-231-8/+10
* Add unicode type to known Python types in graphml reader/writer.Aric Hagberg2010-11-231-2/+8
* Hack to read graphml files with the yfiles extension. The graphics data is d...Aric Hagberg2010-10-171-4/+22
* Handle float and double types correctly in GraphML.Aric Hagberg2010-10-141-2/+3
* Clean up doctest temporary example files.Aric Hagberg2010-09-201-0/+5
* Use the correct name for xml.etreeAric Hagberg2010-08-301-2/+2
* Don't import graphml reader/writer and skip tests if xml.elementtree missing.aric2010-08-291-1/+20
* Add some documentation to read/write functionsaric2010-08-201-0/+7
* Use faster cElementtree. Addresses #210aric2010-08-191-1/+1
* Update GraphML reader and writer to use xml.etree version.aric2010-08-191-304/+304
* Merging py3k-1.2 branch into trunk. Addresses #348loicseguin2010-08-021-23/+24
* Rewrite parse_graphml to handle attributes for graph, node, and edge.dschult2010-05-051-46/+169
* Use standard "import networkx as nx" in all modulesaric2010-04-171-5/+3
* License change to BSD.aric2009-08-261-2/+2
* Merge attrgraph branch into trunkaric2009-08-111-13/+15