Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/networkx/__init__.py: 100%

24 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-10-20 07:00 +0000

1""" 

2NetworkX 

3======== 

4 

5NetworkX is a Python package for the creation, manipulation, and study of the 

6structure, dynamics, and functions of complex networks. 

7 

8See https://networkx.org for complete documentation. 

9""" 

10 

11__version__ = "3.3rc0.dev0" 

12 

13 

14# These are imported in order as listed 

15from networkx.lazy_imports import _lazy_import 

16 

17from networkx.exception import * 

18 

19from networkx import utils 

20from networkx.utils.backends import _dispatch 

21 

22from networkx import classes 

23from networkx.classes import filters 

24from networkx.classes import * 

25 

26from networkx import convert 

27from networkx.convert import * 

28 

29from networkx import convert_matrix 

30from networkx.convert_matrix import * 

31 

32from networkx import relabel 

33from networkx.relabel import * 

34 

35from networkx import generators 

36from networkx.generators import * 

37 

38from networkx import readwrite 

39from networkx.readwrite import * 

40 

41# Need to test with SciPy, when available 

42from networkx import algorithms 

43from networkx.algorithms import * 

44 

45from networkx import linalg 

46from networkx.linalg import * 

47 

48from networkx import drawing 

49from networkx.drawing import *