This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Runs the codePost tests for the given assignments. | |
The requests in this script come from looking at the network calls on | |
the codePost webpage. As such, they are not part of any agreed-upon API, | |
and are subject to change at any time. Use at your own risk. | |
This script uses the `asyncio` module to make requests for each | |
assignment in parallel. This means that to run the tests for all the | |
assignments will only take as long as the slowest assignment. However, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
get_file_history.py | |
Gets the history of a specific file in all the commits of a repo. | |
GitPython: https://gitpython.readthedocs.io/en/stable/index.html | |
""" | |
# ============================================================================== | |
import json |