vanth/bin/test-update
Eli Ribble 79b2bf0f1f Add a bunch of files I don't recognize
I'm cleaning up my machine, these were here, I'm not sure which ones
matter
2024-09-15 14:20:25 -07:00

11 lines
228 B
Python
Executable file

#!/usr/bin/env python3
import vanth.main
import vanth.download
def main():
config = vanth.main.get_config()
vanth.main.create_db_connection(config)
print(vanth.download.do_all())
if __name__ == '__main__':
main()