File size: 360 Bytes
6e3c928
 
 
 
 
 
 
 
 
 
ccf0698
1
2
3
4
5
6
7
8
9
10
11
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("data/results.csv", sep="\t", index=False)