-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add main script to download GeForce data
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from src.disk_utils import save_to_disk | ||
from src.fetch_utils import fetch_all_pages | ||
|
||
|
||
def main(): | ||
data = fetch_all_pages(is_slim_query=False) | ||
save_to_disk(data, "data_slim.json", verbose=True) | ||
|
||
data = fetch_all_pages(is_slim_query=True) | ||
save_to_disk(data, "data_full.json", verbose=True) | ||
|
||
return | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |