gchr2.py 200 B

1234567891011121314151617
  1. import os
  2. import typer
  3. from gchr.gchr import GCHR
  4. app = typer.Typer()
  5. @app.command()
  6. def main():
  7. gchr = GCHR(os.getcwd())
  8. gchr.export_all_periods()
  9. if __name__ == "__main__":
  10. app()