~ubuntu-branches/ubuntu/wily/python-networkx/wily

« back to all changes in this revision

Viewing changes to networkx/readwrite/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-03-02 01:06:32 UTC
  • mfrom: (1.2.1 upstream) (3.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080302010632-1lp6qe1orf59jl8b
* debian/control:
   + Replace python-setuptools with python-pkg-resources in the
     “Recommends:” since pkg_resources is now available in this
     separate package, thanks Matthias Klose (Closes: #468721).
* debian/copyright:
   + Use “© $years $name” instead of invalid “$name, $years” and
     “(C) $years, $name”, thanks to lintian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
A package for reading and writing graphs in various formats.
 
3
 
 
4
"""
 
5
 
 
6
#    Copyright (C) 2004-2007 by 
 
7
#    Aric Hagberg <hagberg@lanl.gov>
 
8
#    Dan Schult <dschult@colgate.edu>
 
9
#    Pieter Swart <swart@lanl.gov>
 
10
#    Distributed under the terms of the GNU Lesser General Public License
 
11
#    http://www.gnu.org/copyleft/lesser.html
 
12
#
 
13
 
 
14
 
 
15
from adjlist import  read_multiline_adjlist, write_multiline_adjlist, \
 
16
   read_adjlist, write_adjlist
 
17
 
 
18
from edgelist import read_edgelist,write_edgelist
 
19
from gpickle import read_gpickle,write_gpickle
 
20
from nx_yaml import read_yaml, write_yaml
 
21
from graphml import read_graphml, parse_graphml
 
22
from leda import read_leda, parse_leda
 
23
from sparsegraph6 import read_graph6,parse_graph6,read_graph6_list,\
 
24
     read_sparse6,parse_sparse6,read_sparse6_list
 
25
from gml import read_gml,parse_gml,write_gml