from evaluations.repo_evaluations import midl_evaluations # importing os module for environment variables import os # importing necessary functions from dotenv library from dotenv import load_dotenv # loading variables from .env file load_dotenv() token = os.getenv("githubToken") res = midl_evaluations() res.to_csv("results_midl.csv", sep="\t", index=False)