A temporal networks library written in Python.
import overtime as ot
network = ot.TemporalDiGraph('Sample Network', data=ot.CsvInput('./data/network.csv'))
network.add_node('g')
network.add_edge('f', 'h', 3)
network.details()
>>> Graph Details:
Label: SampleNetwork
Directed: True
Static: False
#Nodes: 7
#Edges: 15
ot.Circle(network)
ot.calculate_reachability(network, 'b')
>>> 5
See tfl_example.py.
Use the package manager pip to install overtime.
$ pip install overtime