summaryrefslogtreecommitdiff
path: root/networkx/readwrite/gexf.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-2/+8
* add class method GEXFWriter.alter_graph_mode_timeformatChengyi Yang2013-11-081-9/+20
* add dynamic Graph surport to gexf (1.2draft)ycysuk2013-11-071-12/+45
* Allow "True" and "False" as gexf bools.chebee7i2013-10-071-1/+1
* Merge pull request #941 from hagberg/gexf-longAric Hagberg2013-08-271-0/+2
|\
| * Use long type for GEXF with Python2 long or Python3 int.Aric Hagberg2013-08-241-0/+2
* | Merge pull request #914 from hagberg/gexf-boolAric Hagberg2013-08-131-1/+4
|\ \
| * | Use lowercase true|false in GEXF writerAric Hagberg2013-07-241-1/+4
* | | Merge pull request #929 from brycethomas/issue928Aric Hagberg2013-08-131-8/+13
|\ \ \ | |_|/ |/| |
| * | minor fixes to serialization and testsBryce Thomas2013-08-121-1/+1
| * | Fixes #928Bryce Thomas2013-08-111-8/+13
| |/
* | Fixes #885Bryce Thomas2013-08-111-12/+21
|/
* Merge pull request #875 from hagberg/gexf-shapeAric Hagberg2013-05-251-1/+1
|\
| * Bug writing shapes in GEXF formatAric Hagberg2013-05-251-1/+1
* | Whitespace cleanup. Formatting. Copyright.Aric Hagberg2013-02-091-11/+16
* | Remove node 'label' attribute if relabel=TrueAric Hagberg2013-02-091-0/+1
* | Use node id in edges if specified as attributeAric Hagberg2013-02-091-1/+3
|/
* Set None for node_type by default in read_gexf method.Ramiro Gomez2012-10-051-3/+3
* removed unnecessary encode('utf-8') callsRamiro Gomez2012-10-051-3/+3
* set default alpha channel to 1 instead of 100Ramiro Gomez2012-10-051-1/+1
* enable node ids with non ascii chars in gexf filesRamiro Gomez2012-10-051-3/+3
* set default to 100 for alpha channel in viz:colorRamiro Gomez2012-10-051-1/+1
* Done generate "None" when writing GEXF dynamic data with no start/end time sp...Aric Hagberg2012-07-081-3/+9
* Merge commit with resolved changes in gexf.Aric Hagberg2012-01-061-66/+61
|\
| * Whitespace housekeeping.Aric Hagberg2012-01-061-65/+62
| * Convert id and label to strings if needed in write_gexfAric Hagberg2012-01-061-2/+2
* | Properly convert node id to string. Addresses #673.Chris Ellison2012-01-061-3/+3
|/
* skip doctests (fail with python3.1)Aric Hagberg2011-09-251-1/+1
* Updated gexf to use @open_fileBen Edwards2011-08-171-8/+6
* Changed File handle name and utils in new directory, also changesBen Edwards2011-07-151-3/+3
* Use iterators instead of lists when possible. Addresses #560Loïc Séguin-C.2011-05-281-1/+1
* Fix a few cases where False and 0 might be confused in GEXF interface.Aric Hagberg2011-05-111-4/+8
* Fix test with False==0 issue so GEXF writer handles weight=0.Aric Hagberg2011-05-111-2/+4
* Allow use of either cElementTree or ElementTree.Aric Hagberg2011-05-101-7/+9
* Decode xml tostring in _str_() method.Aric Hagberg2011-03-011-2/+6
* Handle version 1.2draft of GEXF.Aric Hagberg2011-02-061-38/+121
* Handle Gephi gexf file format issue of writing weights.Aric Hagberg2011-01-281-0/+8
* Use try/except to import elementtree to work with IronPython2.7.Aric Hagberg2011-01-281-2/+6
* Rename the networkx multigraph 'key' to 'networkx_key' when reading/writing GEXFAric Hagberg2011-01-151-1/+12
* Update docstring.Aric Hagberg2011-01-131-3/+0
* Add string option with generate_gexf()Aric Hagberg2011-01-131-3/+55
* Use sequential edge id counter instead of NetworkX key.Aric Hagberg2010-12-111-9/+10
* Add some error checking on GEXF relabeling.Aric Hagberg2010-10-171-1/+13
* Add GEXF reader/writer.Aric Hagberg2010-10-161-0/+739