summaryrefslogtreecommitdiff
path: root/networkx/readwrite
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1486 from SanketDG/docfixysitu2015-05-261-3/+3
|\ | | | | fix documentation for write_gml()
| * documentation fix for write_gmlSanketDG2015-04-281-3/+3
| |
* | handle geometric attributes properly and add simplify=False case to testschrisnatali2015-05-042-26/+80
| | | | | | | | fix docstring for read_shp and address PR comments
* | parameterize simplification of line features in read_shpchrisnatali2015-05-011-3/+12
|/
* Fix copyrightsJGab2015-04-219-9/+9
|
* Merge pull request #1262 from jdrudolph/json-graph-attributes-as-dictAric Hagberg2015-01-092-6/+8
|\ | | | | node-link repr. contains graph dict 'as is'
| * node-link repr. contains graph dict 'as is'jandanielr2014-10-072-6/+8
| |
* | Clean up shp using new dgal/ogr iterator interface for loops.Dan Schult2015-01-041-18/+9
| |
* | Remove xrange and map to fix python3 for test_shp.pyDan Schult2015-01-041-3/+5
| |
* | Enable Travis testing of nx_shp.py under Python 2.7ysitu2014-11-041-4/+4
| |
* | Allow selection of pickling protocol to use in write_gpickleysitu2014-11-032-2/+19
| |
* | Fix PEP 8 issues in gpickle.pyysitu2014-11-031-11/+15
| |
* | Merge pull request #1269 from ysitu/gmlchebee7i2014-11-032-372/+788
|\ \ | | | | | | Robust handling of non-int/float/str/dict data in GML
| * | Fix GML parser compatibility with Python 3.2ysitu2014-10-201-1/+2
| | |
| * | Enhance GML parser/generator tests (cont'd)ysitu2014-10-202-9/+27
| | |
| * | Enhance GML parser/generator testsysitu2014-10-202-18/+129
| | |
| * | Comment about 'u' string prefix removal in GML parserysitu2014-10-191-0/+2
| | |
| * | Simplify GML parser and add list attribute handlingysitu2014-10-192-125/+87
| | |
| * | Fix docstrings of generate_gml and write_gmlysitu2014-10-171-7/+11
| | |
| * | Make stringizer/destringizer in GML parser/generator raise ValueError (cont'd)ysitu2014-10-171-2/+2
| | |
| * | Make stringizer/destringizer in GML parser/generator raise ValueErrorysitu2014-10-161-7/+11
| | |
| * | Fix comments in GML parser and test casesysitu2014-10-162-12/+4
| | |
| * | Simplify GML parserysitu2014-10-141-78/+41
| | |
| * | Avoid spurious empty lines due to str.split('\n') in GML parserysitu2014-10-131-1/+4
| | |
| * | Adjust GML test casesysitu2014-10-121-76/+94
| | |
| * | Rewrite GML parser and generatorysitu2014-10-121-286/+611
| | |
| * | Fix PEP8 issues in gml.pyysitu2014-10-111-69/+82
| |/
* | Ensure that graph6 and sparse6 tests do no leave behind temporary filesYingchong Situ2014-10-302-0/+12
|/
* Fixed warnings with "<<" operator when loadingKameron Harris2014-08-041-2/+2
| | | | | | | I was getting these warnings: DeprecationWarning: Operator '<<' is deprecated, use '<<=' instead Changing them to <<= seems to have fixed the problem.
* Merge pull request #1215 from ysitu/xml_declysitu2014-07-172-2/+2
|\ | | | | Ensure that write_gexf and write_graphml output XML declaration
| * Ensure that write_gexf and write_graphml output XML declarationysitu2014-07-042-2/+2
| |
* | Reapply "correct minor typos in edgelist.py"barrydevereux2014-07-041-2/+2
| | | | | | | | | | This reapplies commit d189147, which was inadvertently reverted in commit 002d537.
* | Fix I/O compatibility with IronPython (cont'd)ysitu2014-07-031-30/+31
| |
* | Fix I/O compatibility with IronPythonysitu2014-07-033-48/+48
|/
* correct minor typos in edgelist.pybarrydevereux2014-06-231-2/+2
|
* Better exception handling, simpler testAric Hagberg2014-06-032-6/+4
|
* Add testAric Hagberg2014-06-021-19/+19
|
* Adjust author email, copyright yearAric Hagberg2014-06-021-2/+2
|
* Pajek reader can't handle encoded dataAric Hagberg2014-06-022-2/+32
| | | | shlex.split() doesn't work for unicode. Tweak to work with Python2.x.
* Allow JSON attributes to be customizedysitu2014-05-306-84/+229
|
* Remove duplicate XML header in GEXF/GraphML outputysitu2014-05-212-4/+0
|
* Merge pull request #1114 from hagberg/remove-json-helperAric Hagberg2014-04-223-81/+0
|\ | | | | Remove json helper
| * Remove JSON serializer helpersAric Hagberg2014-04-203-81/+0
| | | | | | | | | | | | | | This complexity isn't really needed. You can simply write >>> import json >>> s = json.dumps(json_graph.node_link_data(G))
* | Fix. parse_edgelist documentationLukasz Dobrzanski2014-04-181-14/+16
|/ | | | | | | Changes: - fix mixing result+params - added missing ``lines`` param - use same order of params as in signature
* Use networkx.testing functions for network.readwrite tests.Jordi Torrents2014-03-274-90/+67
|
* Fixes #1063.chebee7i2014-02-202-6/+15
|
* GML read/write with numeric HTML entities. #1061chebee7i2014-02-162-58/+124
|
* Add unit test for #1048.chebee7i2014-01-181-14/+37
|
* Add omitted quote=True option to escape(). #1048.chebee7i2014-01-181-1/+1
|
* Node labels must be within double quotes. Addresses #1048.chebee7i2014-01-181-4/+7
| | | | | Tuple labels are now converted to strings: (1,2) --> "(1,2)"