VCityTeam / UD-Graph

Repository on graph models for Urban Data
Other
9 stars 1 forks source link

UD-Graph refacto #28

Open DiegoVinasco opened 1 year ago

DiegoVinasco commented 1 year ago

UD-Graph currently implements most of its code as python scripts (e.g. using if __name__ == "__main__": do stuff). This means that these scripts cannot be properly imported into one another. The current work around is to use os.system to call other scripts through the command line but this is quite hacky and not OS agnostic.

It would be better to implement UD-Graph python code as a python package(s) in order to allow these scripts to be properly imported into one another (and eventually be reused by other libraries projects)