Skip to content

Commit a84439c

Browse files
authored
use local files instead to avoid rate limits (#1530)
1 parent 30e64b1 commit a84439c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

data/olympic-winners.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

docs/enterprise/ag_grid/aligned-grids.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import pandas as pd
1111

1212
import reflex_enterprise as rxe
1313

14-
df = pd.read_json("https://www.ag-grid.com/example-assets/olympic-winners.json")
14+
# Olympic winners data (originally from https://www.ag-grid.com/example-assets/olympic-winners.json)
15+
df = pd.read_json("data/olympic-winners.json")
1516

1617
row_data = df.to_dict("records")
1718

docs/enterprise/ag_grid/pivot-mode.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ import reflex as rx
2020

2121
import reflex_enterprise as rxe
2222

23-
df = pd.read_json("https://www.ag-grid.com/example-assets/olympic-winners.json")
23+
# Olympic winners data (originally from https://www.ag-grid.com/example-assets/olympic-winners.json)
24+
df = pd.read_json("data/olympic-winners.json")
2425

2526
def pivot_page():
2627
return rxe.ag_grid(

0 commit comments

Comments
 (0)