diff --git a/process_results_table.py b/process_results_table.py deleted file mode 100644 index 135f1e68..00000000 --- a/process_results_table.py +++ /dev/null @@ -1,501 +0,0 @@ -import json -import os -import time - -with open('summary_results.json') as f: - data = json.load(f) -#print(models_all) -#print(platforms) - -tableposhtml = """ - -
- - - - - - - -
- """ - -def get_json_files(github_url): - import requests - from bs4 import BeautifulSoup - - retries = 5 - retry_delay = 2 - - for attempt in range(retries): - try: - # Get the content of the GitHub page - response = requests.get(github_url) - soup = BeautifulSoup(response.text, 'html.parser') - - # Find all JSON files - #print(soup) - # Find the - - - - -""" - -out_html = f"""--- -hide: - - navigation - - toc ---- - - -{html} -{extra_scripts} - -""" -with open(os.path.join("docs", "index.md"), "w") as f: - f.write(out_html) - - -#print(data) - -