nx_tree.txt
$ tree /networkx-master > nx_tree.txt
/networkx-master
├── CODE_OF_CONDUCT.rst
├── CONTRIBUTING.rst
├── INSTALL.rst
├── LICENSE.txt
├── MANIFEST.in
├── README.rst
├── doc
│ ├── Makefile
│ ├── README.md
│ ├── _static
│ │ ├── copybutton.js
│ │ ├── custom.css
│ │ └── networkx_logo.svg
│ ├── _templates
│ │ ├── dev_banner.html
│ │ ├── eol_banner.html
│ │ └── layout.html
│ ├── bibliography.rst
│ ├── citing.rst
│ ├── conf.py
│ ├── credits.rst
│ ├── developer
│ │ ├── code_of_conduct.rst
│ │ ├── contribute.rst
│ │ ├── core_developer.rst
│ │ ├── deprecations.rst
│ │ ├── gitwash
│ │ │ ├── branch_dropdown.png
│ │ │ ├── configure_git.rst
│ │ │ ├── development_workflow.rst
│ │ │ ├── following_latest.rst
│ │ │ ├── forking_button.png
│ │ │ ├── forking_hell.rst
│ │ │ ├── git_development.rst
│ │ │ ├── git_install.rst
│ │ │ ├── git_intro.rst
│ │ │ ├── git_links.inc
│ │ │ ├── git_resources.rst
│ │ │ ├── index.rst
│ │ │ ├── known_projects.inc
│ │ │ ├── links.inc
│ │ │ ├── maintainer_workflow.rst
│ │ │ ├── patching.rst
│ │ │ ├── pull_button.png
│ │ │ ├── set_up_fork.rst
│ │ │ └── this_project.inc
│ │ ├── index.rst
│ │ ├── nxeps
│ │ │ ├── _static
│ │ │ │ └── nxep-0000.png
│ │ │ ├── index.rst
│ │ │ ├── nxep-0000.rst
│ │ │ ├── nxep-0001.rst
│ │ │ ├── nxep-0002.rst
│ │ │ └── nxep-template.rst
│ │ ├── release.rst
│ │ ├── roadmap.rst
│ │ └── values.rst
│ ├── index.rst
│ ├── install.rst
│ ├── license.rst
│ ├── news.rst
│ ├── reference
│ │ ├── algorithms
│ │ │ ├── approximation.rst
│ │ │ ├── assortativity.rst
│ │ │ ├── asteroidal.rst
│ │ │ ├── bipartite.rst
│ │ │ ├── boundary.rst
│ │ │ ├── bridges.rst
│ │ │ ├── centrality.rst
│ │ │ ├── chains.rst
│ │ │ ├── chordal.rst
│ │ │ ├── clique.rst
│ │ │ ├── clustering.rst
│ │ │ ├── coloring.rst
│ │ │ ├── communicability_alg.rst
│ │ │ ├── community.rst
│ │ │ ├── component.rst
│ │ │ ├── connectivity.rst
│ │ │ ├── core.rst
│ │ │ ├── covering.rst
│ │ │ ├── cuts.rst
│ │ │ ├── cycles.rst
│ │ │ ├── d_separation.rst
│ │ │ ├── dag.rst
│ │ │ ├── distance_measures.rst
│ │ │ ├── distance_regular.rst
│ │ │ ├── dominance.rst
│ │ │ ├── dominating.rst
│ │ │ ├── efficiency_measures.rst
│ │ │ ├── euler.rst
│ │ │ ├── flow.rst
│ │ │ ├── graph_hashing.rst
│ │ │ ├── graphical.rst
│ │ │ ├── hierarchy.rst
│ │ │ ├── hybrid.rst
│ │ │ ├── index.rst
│ │ │ ├── isolates.rst
│ │ │ ├── isomorphism.ismags.rst
│ │ │ ├── isomorphism.rst
│ │ │ ├── isomorphism.vf2.rst
│ │ │ ├── link_analysis.rst
│ │ │ ├── link_prediction.rst
│ │ │ ├── lowest_common_ancestors.rst
│ │ │ ├── matching.rst
│ │ │ ├── minors.rst
│ │ │ ├── mis.rst
│ │ │ ├── moral.rst
│ │ │ ├── node_classification.rst
│ │ │ ├── non_randomness.rst
│ │ │ ├── operators.rst
│ │ │ ├── planar_drawing.rst
│ │ │ ├── planarity.rst
│ │ │ ├── reciprocity.rst
│ │ │ ├── regular.rst
│ │ │ ├── rich_club.rst
│ │ │ ├── shortest_paths.rst
│ │ │ ├── similarity.rst
│ │ │ ├── simple_paths.rst
│ │ │ ├── smallworld.rst
│ │ │ ├── smetric.rst
│ │ │ ├── sparsifiers.rst
│ │ │ ├── structuralholes.rst
│ │ │ ├── summarization.rst
│ │ │ ├── swap.rst
│ │ │ ├── threshold.rst
│ │ │ ├── tournament.rst
│ │ │ ├── traversal.rst
│ │ │ ├── tree.rst
│ │ │ ├── triads.rst
│ │ │ ├── vitality.rst
│ │ │ ├── voronoi.rst
│ │ │ └── wiener.rst
│ │ ├── classes
│ │ │ ├── digraph.rst
│ │ │ ├── graph.rst
│ │ │ ├── index.rst
│ │ │ ├── multidigraph.rst
│ │ │ ├── multigraph.rst
│ │ │ └── ordered.rst
│ │ ├── convert.rst
│ │ ├── drawing.rst
│ │ ├── exceptions.rst
│ │ ├── functions.rst
│ │ ├── generators.rst
│ │ ├── glossary.rst
│ │ ├── index.rst
│ │ ├── introduction.rst
│ │ ├── linalg.rst
│ │ ├── randomness.rst
│ │ ├── readwrite
│ │ │ ├── adjlist.rst
│ │ │ ├── edgelist.rst
│ │ │ ├── gexf.rst
│ │ │ ├── gml.rst
│ │ │ ├── gpickle.rst
│ │ │ ├── graphml.rst
│ │ │ ├── index.rst
│ │ │ ├── json_graph.rst
│ │ │ ├── leda.rst
│ │ │ ├── multiline_adjlist.rst
│ │ │ ├── nx_shp.rst
│ │ │ ├── pajek.rst
│ │ │ ├── sparsegraph6.rst
│ │ │ └── yaml.rst
│ │ ├── relabel.rst
│ │ └── utils.rst
│ ├── release
│ │ ├── api_0.99.rst
│ │ ├── api_1.0.rst
│ │ ├── api_1.10.rst
│ │ ├── api_1.11.rst
│ │ ├── api_1.4.rst
│ │ ├── api_1.5.rst
│ │ ├── api_1.6.rst
│ │ ├── api_1.7.rst
│ │ ├── api_1.8.rst
│ │ ├── api_1.9.rst
│ │ ├── contribs.py
│ │ ├── index.rst
│ │ ├── migration_guide_from_1.x_to_2.0.rst
│ │ ├── release_2.0.rst
│ │ ├── release_2.1.rst
│ │ ├── release_2.2.rst
│ │ ├── release_2.3.rst
│ │ ├── release_2.4.rst
│ │ ├── release_2.5.rst
│ │ ├── release_dev.rst
│ │ ├── release_template.rst
│ │ ├── report_functions_without_rst_generated.py
│ │ └── report_functions_without_rst_generated.sh
│ ├── team.rst
│ └── tutorial.rst
├── examples
│ ├── 3d_drawing
│ │ ├── README.txt
│ │ ├── plot_basic.py
│ │ └── plot_mayavi2_spring.py
│ ├── README.txt
│ ├── advanced
│ │ ├── README.txt
│ │ ├── plot_eigenvalues.py
│ │ ├── plot_heavy_metal_umlaut.py
│ │ ├── plot_iterated_dynamical_systems.py
│ │ └── plot_parallel_betweenness.py
│ ├── algorithms
│ │ ├── README.txt
│ │ ├── hartford_drug.edgelist
│ │ ├── plot_beam_search.py
│ │ ├── plot_blockmodel.py
│ │ ├── plot_davis_club.py
│ │ ├── plot_decomposition.py
│ │ ├── plot_dedensification.py
│ │ ├── plot_krackhardt_centrality.py
│ │ └── plot_rcm.py
│ ├── applications
│ │ ├── README.txt
│ │ └── plot_circuits.py
│ ├── basic
│ │ ├── README.txt
│ │ ├── plot_properties.py
│ │ ├── plot_read_write.py
│ │ └── plot_simple_graph.py
│ ├── drawing
│ │ ├── README.txt
│ │ ├── chess_masters_WCC.pgn.bz2
│ │ ├── knuth_miles.txt.gz
│ │ ├── lanl_routes.edgelist
│ │ ├── plot_atlas.py
│ │ ├── plot_chess_masters.py
│ │ ├── plot_circular_tree.py
│ │ ├── plot_degree.py
│ │ ├── plot_directed.py
│ │ ├── plot_edge_colormap.py
│ │ ├── plot_ego_graph.py
│ │ ├── plot_four_grids.py
│ │ ├── plot_giant_component.py
│ │ ├── plot_house_with_colors.py
│ │ ├── plot_knuth_miles.py
│ │ ├── plot_labels_and_colors.py
│ │ ├── plot_lanl_routes.py
│ │ ├── plot_multipartite_graph.py
│ │ ├── plot_node_colormap.py
│ │ ├── plot_rainbow_coloring.py
│ │ ├── plot_random_geometric_graph.py
│ │ ├── plot_sampson.py
│ │ ├── plot_simple_path.py
│ │ ├── plot_spectral_grid.py
│ │ ├── plot_unix_email.py
│ │ ├── plot_weighted_graph.py
│ │ ├── sampson_data.zip
│ │ └── unix_email.mbox
│ ├── geospatial
│ │ ├── README.txt
│ │ ├── plot_geopandas.py
│ │ ├── plot_osmnx.py
│ │ └── plot_pysal.py
│ ├── graph
│ │ ├── README.txt
│ │ ├── dot_atlas.py
│ │ ├── plot_degree_sequence.py
│ │ ├── plot_erdos_renyi.py
│ │ ├── plot_expected_degree_sequence.py
│ │ ├── plot_football.py
│ │ ├── plot_karate_club.py
│ │ ├── plot_napoleon_russian_campaign.py
│ │ ├── plot_roget.py
│ │ ├── plot_words.py
│ │ ├── roget_dat.txt.gz
│ │ └── words_dat.txt.gz
│ ├── javascript
│ │ ├── README.txt
│ │ ├── force
│ │ │ ├── README.txt
│ │ │ ├── force.css
│ │ │ ├── force.html
│ │ │ └── force.js
│ │ └── force.py
│ ├── jit
│ │ ├── README.txt
│ │ └── plot_rgraph.py
│ ├── pygraphviz
│ │ ├── README.txt
│ │ ├── plot_pygraphviz_attributes.py
│ │ ├── plot_pygraphviz_draw.py
│ │ ├── plot_pygraphviz_simple.py
│ │ └── plot_write_dotfile.py
│ └── subclass
│ ├── README.txt
│ ├── plot_antigraph.py
│ └── plot_printgraph.py
├── networkx
│ ├── __init__.py
│ ├── algorithms
│ │ ├── __init__.py
│ │ ├── approximation
│ │ │ ├── __init__.py
│ │ │ ├── clique.py
│ │ │ ├── clustering_coefficient.py
│ │ │ ├── connectivity.py
│ │ │ ├── dominating_set.py
│ │ │ ├── independent_set.py
│ │ │ ├── kcomponents.py
│ │ │ ├── matching.py
│ │ │ ├── ramsey.py
│ │ │ ├── steinertree.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_approx_clust_coeff.py
│ │ │ │ ├── test_clique.py
│ │ │ │ ├── test_connectivity.py
│ │ │ │ ├── test_dominating_set.py
│ │ │ │ ├── test_independent_set.py
│ │ │ │ ├── test_kcomponents.py
│ │ │ │ ├── test_matching.py
│ │ │ │ ├── test_ramsey.py
│ │ │ │ ├── test_steinertree.py
│ │ │ │ ├── test_treewidth.py
│ │ │ │ └── test_vertex_cover.py
│ │ │ ├── treewidth.py
│ │ │ └── vertex_cover.py
│ │ ├── assortativity
│ │ │ ├── __init__.py
│ │ │ ├── connectivity.py
│ │ │ ├── correlation.py
│ │ │ ├── mixing.py
│ │ │ ├── neighbor_degree.py
│ │ │ ├── pairs.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── base_test.py
│ │ │ ├── test_connectivity.py
│ │ │ ├── test_correlation.py
│ │ │ ├── test_mixing.py
│ │ │ ├── test_neighbor_degree.py
│ │ │ └── test_pairs.py
│ │ ├── asteroidal.py
│ │ ├── bipartite
│ │ │ ├── __init__.py
│ │ │ ├── basic.py
│ │ │ ├── centrality.py
│ │ │ ├── cluster.py
│ │ │ ├── covering.py
│ │ │ ├── edgelist.py
│ │ │ ├── generators.py
│ │ │ ├── matching.py
│ │ │ ├── matrix.py
│ │ │ ├── projection.py
│ │ │ ├── redundancy.py
│ │ │ ├── spectral.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_basic.py
│ │ │ ├── test_centrality.py
│ │ │ ├── test_cluster.py
│ │ │ ├── test_covering.py
│ │ │ ├── test_edgelist.py
│ │ │ ├── test_generators.py
│ │ │ ├── test_matching.py
│ │ │ ├── test_matrix.py
│ │ │ ├── test_project.py
│ │ │ ├── test_redundancy.py
│ │ │ └── test_spectral_bipartivity.py
│ │ ├── boundary.py
│ │ ├── bridges.py
│ │ ├── centrality
│ │ │ ├── __init__.py
│ │ │ ├── betweenness.py
│ │ │ ├── betweenness_subset.py
│ │ │ ├── closeness.py
│ │ │ ├── current_flow_betweenness.py
│ │ │ ├── current_flow_betweenness_subset.py
│ │ │ ├── current_flow_closeness.py
│ │ │ ├── degree_alg.py
│ │ │ ├── dispersion.py
│ │ │ ├── eigenvector.py
│ │ │ ├── flow_matrix.py
│ │ │ ├── group.py
│ │ │ ├── harmonic.py
│ │ │ ├── katz.py
│ │ │ ├── load.py
│ │ │ ├── percolation.py
│ │ │ ├── reaching.py
│ │ │ ├── second_order.py
│ │ │ ├── subgraph_alg.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_betweenness_centrality.py
│ │ │ │ ├── test_betweenness_centrality_subset.py
│ │ │ │ ├── test_closeness_centrality.py
│ │ │ │ ├── test_current_flow_betweenness_centrality.py
│ │ │ │ ├── test_current_flow_betweenness_centrality_subset.py
│ │ │ │ ├── test_current_flow_closeness.py
│ │ │ │ ├── test_degree_centrality.py
│ │ │ │ ├── test_dispersion.py
│ │ │ │ ├── test_eigenvector_centrality.py
│ │ │ │ ├── test_group.py
│ │ │ │ ├── test_harmonic_centrality.py
│ │ │ │ ├── test_katz_centrality.py
│ │ │ │ ├── test_load_centrality.py
│ │ │ │ ├── test_percolation_centrality.py
│ │ │ │ ├── test_reaching.py
│ │ │ │ ├── test_second_order_centrality.py
│ │ │ │ ├── test_subgraph.py
│ │ │ │ ├── test_trophic.py
│ │ │ │ └── test_voterank.py
│ │ │ ├── trophic.py
│ │ │ └── voterank_alg.py
│ │ ├── chains.py
│ │ ├── chordal.py
│ │ ├── clique.py
│ │ ├── cluster.py
│ │ ├── coloring
│ │ │ ├── __init__.py
│ │ │ ├── equitable_coloring.py
│ │ │ ├── greedy_coloring.py
│ │ │ ├── greedy_coloring_with_interchange.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ └── test_coloring.py
│ │ ├── communicability_alg.py
│ │ ├── community
│ │ │ ├── __init__.py
│ │ │ ├── asyn_fluid.py
│ │ │ ├── centrality.py
│ │ │ ├── community_utils.py
│ │ │ ├── kclique.py
│ │ │ ├── kernighan_lin.py
│ │ │ ├── label_propagation.py
│ │ │ ├── lukes.py
│ │ │ ├── modularity_max.py
│ │ │ ├── quality.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_asyn_fluid.py
│ │ │ ├── test_centrality.py
│ │ │ ├── test_kclique.py
│ │ │ ├── test_kernighan_lin.py
│ │ │ ├── test_label_propagation.py
│ │ │ ├── test_lukes.py
│ │ │ ├── test_modularity_max.py
│ │ │ ├── test_quality.py
│ │ │ └── test_utils.py
│ │ ├── components
│ │ │ ├── __init__.py
│ │ │ ├── attracting.py
│ │ │ ├── biconnected.py
│ │ │ ├── connected.py
│ │ │ ├── semiconnected.py
│ │ │ ├── strongly_connected.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_attracting.py
│ │ │ │ ├── test_biconnected.py
│ │ │ │ ├── test_connected.py
│ │ │ │ ├── test_semiconnected.py
│ │ │ │ ├── test_strongly_connected.py
│ │ │ │ └── test_weakly_connected.py
│ │ │ └── weakly_connected.py
│ │ ├── connectivity
│ │ │ ├── __init__.py
│ │ │ ├── connectivity.py
│ │ │ ├── cuts.py
│ │ │ ├── disjoint_paths.py
│ │ │ ├── edge_augmentation.py
│ │ │ ├── edge_kcomponents.py
│ │ │ ├── kcomponents.py
│ │ │ ├── kcutsets.py
│ │ │ ├── stoerwagner.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_connectivity.py
│ │ │ │ ├── test_cuts.py
│ │ │ │ ├── test_disjoint_paths.py
│ │ │ │ ├── test_edge_augmentation.py
│ │ │ │ ├── test_edge_kcomponents.py
│ │ │ │ ├── test_kcomponents.py
│ │ │ │ ├── test_kcutsets.py
│ │ │ │ └── test_stoer_wagner.py
│ │ │ └── utils.py
│ │ ├── core.py
│ │ ├── covering.py
│ │ ├── cuts.py
│ │ ├── cycles.py
│ │ ├── d_separation.py
│ │ ├── dag.py
│ │ ├── distance_measures.py
│ │ ├── distance_regular.py
│ │ ├── dominance.py
│ │ ├── dominating.py
│ │ ├── efficiency_measures.py
│ │ ├── euler.py
│ │ ├── flow
│ │ │ ├── __init__.py
│ │ │ ├── boykovkolmogorov.py
│ │ │ ├── capacityscaling.py
│ │ │ ├── dinitz_alg.py
│ │ │ ├── edmondskarp.py
│ │ │ ├── gomory_hu.py
│ │ │ ├── maxflow.py
│ │ │ ├── mincost.py
│ │ │ ├── networksimplex.py
│ │ │ ├── preflowpush.py
│ │ │ ├── shortestaugmentingpath.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── gl1.gpickle.bz2
│ │ │ │ ├── gw1.gpickle.bz2
│ │ │ │ ├── netgen-2.gpickle.bz2
│ │ │ │ ├── test_gomory_hu.py
│ │ │ │ ├── test_maxflow.py
│ │ │ │ ├── test_maxflow_large_graph.py
│ │ │ │ ├── test_mincost.py
│ │ │ │ └── wlm3.gpickle.bz2
│ │ │ └── utils.py
│ │ ├── graph_hashing.py
│ │ ├── graphical.py
│ │ ├── hierarchy.py
│ │ ├── hybrid.py
│ │ ├── isolate.py
│ │ ├── isomorphism
│ │ │ ├── __init__.py
│ │ │ ├── ismags.py
│ │ │ ├── isomorph.py
│ │ │ ├── isomorphvf2.py
│ │ │ ├── matchhelpers.py
│ │ │ ├── temporalisomorphvf2.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── iso_r01_s80.A99
│ │ │ │ ├── iso_r01_s80.B99
│ │ │ │ ├── si2_b06_m200.A99
│ │ │ │ ├── si2_b06_m200.B99
│ │ │ │ ├── test_ismags.py
│ │ │ │ ├── test_isomorphism.py
│ │ │ │ ├── test_isomorphvf2.py
│ │ │ │ ├── test_match_helpers.py
│ │ │ │ ├── test_temporalisomorphvf2.py
│ │ │ │ ├── test_tree_isomorphism.py
│ │ │ │ └── test_vf2userfunc.py
│ │ │ ├── tree_isomorphism.py
│ │ │ └── vf2userfunc.py
│ │ ├── link_analysis
│ │ │ ├── __init__.py
│ │ │ ├── hits_alg.py
│ │ │ ├── pagerank_alg.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_hits.py
│ │ │ └── test_pagerank.py
│ │ ├── link_prediction.py
│ │ ├── lowest_common_ancestors.py
│ │ ├── matching.py
│ │ ├── minors.py
│ │ ├── mis.py
│ │ ├── moral.py
│ │ ├── node_classification
│ │ │ ├── __init__.py
│ │ │ ├── hmn.py
│ │ │ ├── lgc.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_harmonic_function.py
│ │ │ │ └── test_local_and_global_consistency.py
│ │ │ └── utils.py
│ │ ├── non_randomness.py
│ │ ├── operators
│ │ │ ├── __init__.py
│ │ │ ├── all.py
│ │ │ ├── binary.py
│ │ │ ├── product.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_all.py
│ │ │ │ ├── test_binary.py
│ │ │ │ ├── test_product.py
│ │ │ │ └── test_unary.py
│ │ │ └── unary.py
│ │ ├── planar_drawing.py
│ │ ├── planarity.py
│ │ ├── reciprocity.py
│ │ ├── regular.py
│ │ ├── richclub.py
│ │ ├── shortest_paths
│ │ │ ├── __init__.py
│ │ │ ├── astar.py
│ │ │ ├── dense.py
│ │ │ ├── generic.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_astar.py
│ │ │ │ ├── test_dense.py
│ │ │ │ ├── test_dense_numpy.py
│ │ │ │ ├── test_generic.py
│ │ │ │ ├── test_unweighted.py
│ │ │ │ └── test_weighted.py
│ │ │ ├── unweighted.py
│ │ │ └── weighted.py
│ │ ├── similarity.py
│ │ ├── simple_paths.py
│ │ ├── smallworld.py
│ │ ├── smetric.py
│ │ ├── sparsifiers.py
│ │ ├── structuralholes.py
│ │ ├── summarization.py
│ │ ├── swap.py
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_asteroidal.py
│ │ │ ├── test_boundary.py
│ │ │ ├── test_bridges.py
│ │ │ ├── test_chains.py
│ │ │ ├── test_chordal.py
│ │ │ ├── test_clique.py
│ │ │ ├── test_cluster.py
│ │ │ ├── test_communicability.py
│ │ │ ├── test_core.py
│ │ │ ├── test_covering.py
│ │ │ ├── test_cuts.py
│ │ │ ├── test_cycles.py
│ │ │ ├── test_d_separation.py
│ │ │ ├── test_dag.py
│ │ │ ├── test_distance_measures.py
│ │ │ ├── test_distance_regular.py
│ │ │ ├── test_dominance.py
│ │ │ ├── test_dominating.py
│ │ │ ├── test_efficiency.py
│ │ │ ├── test_euler.py
│ │ │ ├── test_graph_hashing.py
│ │ │ ├── test_graphical.py
│ │ │ ├── test_hierarchy.py
│ │ │ ├── test_hybrid.py
│ │ │ ├── test_isolate.py
│ │ │ ├── test_link_prediction.py
│ │ │ ├── test_lowest_common_ancestors.py
│ │ │ ├── test_matching.py
│ │ │ ├── test_max_weight_clique.py
│ │ │ ├── test_minors.py
│ │ │ ├── test_mis.py
│ │ │ ├── test_moral.py
│ │ │ ├── test_non_randomness.py
│ │ │ ├── test_planar_drawing.py
│ │ │ ├── test_planarity.py
│ │ │ ├── test_reciprocity.py
│ │ │ ├── test_regular.py
│ │ │ ├── test_richclub.py
│ │ │ ├── test_similarity.py
│ │ │ ├── test_simple_paths.py
│ │ │ ├── test_smallworld.py
│ │ │ ├── test_smetric.py
│ │ │ ├── test_sparsifiers.py
│ │ │ ├── test_structuralholes.py
│ │ │ ├── test_summarization.py
│ │ │ ├── test_swap.py
│ │ │ ├── test_threshold.py
│ │ │ ├── test_tournament.py
│ │ │ ├── test_triads.py
│ │ │ ├── test_vitality.py
│ │ │ ├── test_voronoi.py
│ │ │ └── test_wiener.py
│ │ ├── threshold.py
│ │ ├── tournament.py
│ │ ├── traversal
│ │ │ ├── __init__.py
│ │ │ ├── beamsearch.py
│ │ │ ├── breadth_first_search.py
│ │ │ ├── depth_first_search.py
│ │ │ ├── edgebfs.py
│ │ │ ├── edgedfs.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_beamsearch.py
│ │ │ ├── test_bfs.py
│ │ │ ├── test_dfs.py
│ │ │ ├── test_edgebfs.py
│ │ │ └── test_edgedfs.py
│ │ ├── tree
│ │ │ ├── __init__.py
│ │ │ ├── branchings.py
│ │ │ ├── coding.py
│ │ │ ├── decomposition.py
│ │ │ ├── mst.py
│ │ │ ├── operations.py
│ │ │ ├── recognition.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_branchings.py
│ │ │ ├── test_coding.py
│ │ │ ├── test_decomposition.py
│ │ │ ├── test_mst.py
│ │ │ ├── test_operations.py
│ │ │ └── test_recognition.py
│ │ ├── triads.py
│ │ ├── vitality.py
│ │ ├── voronoi.py
│ │ └── wiener.py
│ ├── classes
│ │ ├── __init__.py
│ │ ├── coreviews.py
│ │ ├── digraph.py
│ │ ├── filters.py
│ │ ├── function.py
│ │ ├── graph.py
│ │ ├── graphviews.py
│ │ ├── multidigraph.py
│ │ ├── multigraph.py
│ │ ├── ordered.py
│ │ ├── reportviews.py
│ │ └── tests
│ │ ├── __init__.py
│ │ ├── historical_tests.py
│ │ ├── test_coreviews.py
│ │ ├── test_digraph.py
│ │ ├── test_digraph_historical.py
│ │ ├── test_filters.py
│ │ ├── test_function.py
│ │ ├── test_graph.py
│ │ ├── test_graph_historical.py
│ │ ├── test_graphviews.py
│ │ ├── test_multidigraph.py
│ │ ├── test_multigraph.py
│ │ ├── test_ordered.py
│ │ ├── test_reportviews.py
│ │ ├── test_special.py
│ │ └── test_subgraphviews.py
│ ├── conftest.py
│ ├── convert.py
│ ├── convert_matrix.py
│ ├── drawing
│ │ ├── __init__.py
│ │ ├── layout.py
│ │ ├── nx_agraph.py
│ │ ├── nx_pydot.py
│ │ ├── nx_pylab.py
│ │ └── tests
│ │ ├── __init__.py
│ │ ├── test_agraph.py
│ │ ├── test_layout.py
│ │ ├── test_pydot.py
│ │ └── test_pylab.py
│ ├── exception.py
│ ├── generators
│ │ ├── __init__.py
│ │ ├── atlas.dat.gz
│ │ ├── atlas.py
│ │ ├── classic.py
│ │ ├── cographs.py
│ │ ├── community.py
│ │ ├── degree_seq.py
│ │ ├── directed.py
│ │ ├── duplication.py
│ │ ├── ego.py
│ │ ├── expanders.py
│ │ ├── geometric.py
│ │ ├── harary_graph.py
│ │ ├── internet_as_graphs.py
│ │ ├── intersection.py
│ │ ├── interval_graph.py
│ │ ├── joint_degree_seq.py
│ │ ├── lattice.py
│ │ ├── line.py
│ │ ├── mycielski.py
│ │ ├── nonisomorphic_trees.py
│ │ ├── random_clustered.py
│ │ ├── random_graphs.py
│ │ ├── small.py
│ │ ├── social.py
│ │ ├── spectral_graph_forge.py
│ │ ├── stochastic.py
│ │ ├── sudoku.py
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_atlas.py
│ │ │ ├── test_classic.py
│ │ │ ├── test_cographs.py
│ │ │ ├── test_community.py
│ │ │ ├── test_degree_seq.py
│ │ │ ├── test_directed.py
│ │ │ ├── test_duplication.py
│ │ │ ├── test_ego.py
│ │ │ ├── test_expanders.py
│ │ │ ├── test_geometric.py
│ │ │ ├── test_harary_graph.py
│ │ │ ├── test_internet_as_graphs.py
│ │ │ ├── test_intersection.py
│ │ │ ├── test_interval_graph.py
│ │ │ ├── test_joint_degree_seq.py
│ │ │ ├── test_lattice.py
│ │ │ ├── test_line.py
│ │ │ ├── test_mycielski.py
│ │ │ ├── test_nonisomorphic_trees.py
│ │ │ ├── test_random_clustered.py
│ │ │ ├── test_random_graphs.py
│ │ │ ├── test_small.py
│ │ │ ├── test_spectral_graph_forge.py
│ │ │ ├── test_stochastic.py
│ │ │ ├── test_sudoku.py
│ │ │ ├── test_trees.py
│ │ │ └── test_triads.py
│ │ ├── trees.py
│ │ └── triads.py
│ ├── linalg
│ │ ├── __init__.py
│ │ ├── algebraicconnectivity.py
│ │ ├── attrmatrix.py
│ │ ├── bethehessianmatrix.py
│ │ ├── graphmatrix.py
│ │ ├── laplacianmatrix.py
│ │ ├── modularitymatrix.py
│ │ ├── spectrum.py
│ │ └── tests
│ │ ├── __init__.py
│ │ ├── test_algebraic_connectivity.py
│ │ ├── test_attrmatrix.py
│ │ ├── test_bethehessian.py
│ │ ├── test_graphmatrix.py
│ │ ├── test_laplacian.py
│ │ ├── test_modularity.py
│ │ └── test_spectrum.py
│ ├── readwrite
│ │ ├── __init__.py
│ │ ├── adjlist.py
│ │ ├── edgelist.py
│ │ ├── gexf.py
│ │ ├── gml.py
│ │ ├── gpickle.py
│ │ ├── graph6.py
│ │ ├── graphml.py
│ │ ├── json_graph
│ │ │ ├── __init__.py
│ │ │ ├── adjacency.py
│ │ │ ├── cytoscape.py
│ │ │ ├── jit.py
│ │ │ ├── node_link.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_adjacency.py
│ │ │ │ ├── test_cytoscape.py
│ │ │ │ ├── test_jit.py
│ │ │ │ ├── test_node_link.py
│ │ │ │ └── test_tree.py
│ │ │ └── tree.py
│ │ ├── leda.py
│ │ ├── multiline_adjlist.py
│ │ ├── nx_shp.py
│ │ ├── nx_yaml.py
│ │ ├── p2g.py
│ │ ├── pajek.py
│ │ ├── sparse6.py
│ │ └── tests
│ │ ├── __init__.py
│ │ ├── test_adjlist.py
│ │ ├── test_edgelist.py
│ │ ├── test_gexf.py
│ │ ├── test_gml.py
│ │ ├── test_gpickle.py
│ │ ├── test_graph6.py
│ │ ├── test_graphml.py
│ │ ├── test_leda.py
│ │ ├── test_p2g.py
│ │ ├── test_pajek.py
│ │ ├── test_shp.py
│ │ ├── test_sparse6.py
│ │ └── test_yaml.py
│ ├── relabel.py
│ ├── release.py
│ ├── testing
│ │ ├── __init__.py
│ │ ├── test.py
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ └── test_utils.py
│ │ └── utils.py
│ ├── tests
│ │ ├── README
│ │ ├── __init__.py
│ │ ├── test_all_random_functions.py
│ │ ├── test_convert.py
│ │ ├── test_convert_numpy.py
│ │ ├── test_convert_pandas.py
│ │ ├── test_convert_scipy.py
│ │ ├── test_exceptions.py
│ │ └── test_relabel.py
│ └── utils
│ ├── __init__.py
│ ├── contextmanagers.py
│ ├── decorators.py
│ ├── heaps.py
│ ├── mapped_queue.py
│ ├── misc.py
│ ├── random_sequence.py
│ ├── rcm.py
│ ├── tests
│ │ ├── __init__.py
│ │ ├── test.txt
│ │ ├── test_contextmanager.py
│ │ ├── test_decorators.py
│ │ ├── test_heaps.py
│ │ ├── test_mapped_queue.py
│ │ ├── test_misc.py
│ │ ├── test_random_sequence.py
│ │ ├── test_rcm.py
│ │ └── test_unionfind.py
│ └── union_find.py
├── requirements
│ ├── README.md
│ ├── default.txt
│ ├── developer.txt
│ ├── doc.txt
│ ├── example-requirements.txt
│ ├── example.txt
│ ├── extra.txt
│ ├── release.txt
│ └── test.txt
├── requirements.txt
├── setup.py
└── tools
├── appveyor
│ ├── install.ps1
│ └── run_with_env.cmd
├── gitwash_dumper.py
├── team_list.py
└── travis
├── before_install.sh
├── build_docs.sh
├── deploy-key.enc
├── deploy_docs.sh
└── linux_install.sh
82 directories, 847 files
2021年5月23日:公開
しだひろし/PoorBook G3'99
リンク・引用・転載は自由です。
カウンタ: -
- NetworkX は Python のネットワークグラフ描画ライブラリで、GitHub に公式ドキュメントの一式がある。tree コマンドでフォルダ(ディレクトリ)の内容を全可視化してみた。トータル850件近いファイルがある。 -- しだ (2021-05-23 19:58:20)
- 主要なドキュメントは reST(.rst)形式で、ほかに txt やhtml , md が少々。あとの大半が .py のサンプルコードらしい。 -- しだ (2021-05-23 20:03:19)
- ほかに圧縮ファイルが少々あり。 -- しだ (2021-05-27 18:50:06)
最終更新:2021年05月27日 18:50