davanstrien HF staff commited on
Commit
9110fae
1 Parent(s): 58e96b2

bump max requests

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ client = Client(headers=headers, http2=True, limits=limits, timeout=60.0)
30
 
31
 
32
  @lru_cache(maxsize=None)
33
- def get_hub_community_activity(user: str, max: int = 35_000) -> List[Any]:
34
  with tqdm() as pbar:
35
  all_data = []
36
  i = 1
 
30
 
31
 
32
  @lru_cache(maxsize=None)
33
+ def get_hub_community_activity(user: str, max: int = 50_000) -> List[Any]:
34
  with tqdm() as pbar:
35
  all_data = []
36
  i = 1