reproduce / full_eval.py
attilasimko's picture
Push new changes
6e3c928
raw
history blame
355 Bytes
from evaluations.repo_evaluations import full_evaluation
# 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 = full_evaluation()
res.to_csv("results.csv", sep="\t", index=False)