jkeifer / pyHytemporal

An in-progress python library and command line tools for hypertemporal image classification
MIT License
0 stars 0 forks source link

Commands.py is reallllllly slow to begin execution #7

Closed jkeifer closed 10 years ago

jkeifer commented 10 years ago

Commands.py imports many modules, and some of them are quite heavy. Rather than importing them all at the beginning, it would make more sense to move the imports into each of the command functions, and only make the import calls at the necessary moment. Thus, a bunch of modules won't be loaded for a command that doesn't require them.

jkeifer commented 10 years ago

Finished this.