Prepare for mass data collection. Reduce concurrency as to not overwhelm scraper on long sessions. Remode duplicates from fetch script. Removing naming wierdness on scorer frontend.

This commit is contained in:
William Jeynes
2026-02-27 14:41:10 +00:00
parent 201176e71c
commit c94812ed80
3 changed files with 51 additions and 5 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ def page_title() -> str:
return "Rank"
def render():
st.header("Rank PERFECT Events")
st.header("Rank Events")
candidates = []
for entry in st.session_state.data:
@@ -25,7 +25,7 @@ def render():
candidates.append({"entry": entry, "claims": perfect})
if not candidates:
st.info("No PERFECT events available.")
st.info("No events available.")
st.stop()
if "current_bundle" not in st.session_state: