summaryrefslogtreecommitdiff
path: root/networkx/readwrite/graphml.py
Commit message (Expand)AuthorAgeFilesLines
* Deserializing custom default properties graph ml (#4872)Jeroen Bergmans2021-06-071-2/+9
* Update black (#4814)Jarrod Millman2021-05-181-1/+1
* Remove xml import checks (#4393)Jarrod Millman2020-11-261-2/+2
* Move a few imports inside functions to improve import speed of the library (#...Dan Schult2020-11-121-51/+64
* Format w/ black==20.8b1Jarrod Millman2020-10-061-6/+3
* graphml: re-add graph attribute type 'long' after 857aa81 removed it (#4189)josch2020-09-051-0/+1
* DOC,BLD: Fix doc build warning from markup error. (#4174)Ross Barnowski2020-08-211-1/+1
* Format python in docstrings (#4168)Jarrod Millman2020-08-191-13/+13
* MultiGraph from graphml with explicit edge ids #3470 (#3763)kiryph2020-08-161-17/+33
* Format w/ blackJarrod Millman2020-07-101-129/+197
* Ran pyupgrade --py36plusJarrod Millman2020-07-101-1/+1
* Correctly infer numpy float types (#3919)Alex Henrie2020-07-051-2/+3
* Fix exception causes and messages all over the codebase (#4015)Ram Rachum2020-07-051-2/+2
* Fix typo: np.int -> np.int_ (#4013)Neil2020-06-221-1/+1
* Add option for named key ids to GraphML writing. (#3960)ryan-duve2020-05-171-9/+25
* Update string formatJarrod Millman2020-01-011-2/+2
* Upgrade to Py36 syntaxJarrod Millman2020-01-011-4/+3
* Convert %-format to fstringJarrod Millman2020-01-011-19/+19
* Remove boiler plate from top of modulesJarrod Millman2019-11-111-9/+0
* Remove old Python 2 codeJarrod Millman2019-11-101-27/+2
* Fix PEP8 issuesJarrod Millman2019-10-211-15/+11
* Deprecate make_strJarrod Millman2019-10-211-23/+23
* Remove unused importsJarrod Millman2019-10-211-9/+2
* Skip doctests when missing dependenciesJarrod Millman2019-10-211-15/+0
* PEP8 fixesJarrod Millman2019-10-181-1/+1
* Use pytest for doctestJarrod Millman2019-10-121-7/+4
* Write mixed-type attributes correctly in write_graphml_lxml (#3536)Alex Henrie2019-08-131-18/+12
* Update copyrightJarrod Millman2019-03-301-1/+1
* Expand read/write_Graphml numeric type to support numpy numeric types (#3041)Dan Schult2018-06-291-0/+17
* Misc. typos (#2872)luzpaz2018-02-141-2/+2
* Pep8 fixesJarrod Millman2018-01-201-1/+3
* Update copyrightJarrod Millman2018-01-201-1/+1
* Dictionary comprehensions from #1700 merged conflicts (#2768)Dan Schult2017-11-251-2/+2
* Fixed a problem when reading graphml files where nodes that were part of grou...Daniel Bradburn2017-10-011-7/+12
* Update docsJarrod Millman2017-08-181-2/+3
* Graphml: consistent I/O for key and data attributes of edges in multi-graphs ...Mohammad Hossein Sekhavat2017-07-311-20/+24
* Update graphml to care for a number of issues. (#2515)Dan Schult2017-07-191-176/+438
* Remove attr_dict calls to graph's add_node; replace with **.thegreathippo2016-04-261-1/+1
* Add back 0/1 bools for convenience to GraphML.chebee7i2016-04-161-2/+7
* Update allowable bool types for GraphML and GEXF.chebee7i2016-04-161-4/+6
* Fix argument ordering to preserve backwards compatibilityDan LaManna2015-10-311-1/+1
* Fix type inference to be python3 compatibleDan LaManna2015-08-231-1/+8
* Allow GraphML to infer numeric typesDan LaManna2015-08-231-11/+53
* 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