This PR contains the implementation of Issue #438
start() method is the access to the logic. It requires the repo_name and will return a dictionary with the commits.
!!! the code will not work until:
-- the .json files will be generated and will contain the last_checked value: def last_checked(self): returns the last check date from .json files
this is how to call the logic:
the main method to iterate through the Git repository
b = FICFileHandler()
for repo in json.load(b.load(None, "repositories.json")).get("Github"):
a = FICGithub(repo)
a.start()
This PR contains the implementation of Issue #438 start() method is the access to the logic. It requires the repo_name and will return a dictionary with the commits. !!! the code will not work until: -- the .json files will be generated and will contain the last_checked value: def last_checked(self): returns the last check date from .json files
this is how to call the logic:
the main method to iterate through the Git repository
b = FICFileHandler() for repo in json.load(b.load(None, "repositories.json")).get("Github"): a = FICGithub(repo) a.start()