import os import typer from gchr.gchr import GCHR app = typer.Typer() @app.command() def main(): gchr = GCHR(os.getcwd()) gchr.export_all_periods() if __name__ == "__main__": app()