Metadata-Version: 2.1
Name: fractal-network
Version: 0.0.1
Summary: Creating fractal networks
Home-page: https://github.com/pypa/sampleproject
Author: Kimmo
Author-email: kimmo.kaski@aalto.fi
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

This package creates Fractal networks.

The steps for installationa re as follows:

1) pip install package_name
2) from fractal_network import NetworkGenerator
3) NetworkGenerator.graph(num_of_levels,num_of_nodes_in_a_clique)

OUTPUT:

Column 1: node number
Column 2: label
Column 3: Degree 

The next columns indicate the neighbour amd the level of connection between the node and neighbour alternately.
For example:

12 10110 3 10 2 13 1 14 1

12 is the node numer, 10110 is the label, 3 is the degree.

10 2 indicates a connection between 12 and 10 having level 2
13 1 indicates a connection between 12 and 13 having level 1
14 1 indicates a connection between 12 and 14 having level 1




