From 3214afc4d8f0eafb1028fb4597fe481499d81c0f Mon Sep 17 00:00:00 2001 From: Hugo Date: Fri, 20 Mar 2026 16:58:51 +0000 Subject: [PATCH] docs: update broken dataset download links in docs --- src/content/docs/client-apis/python.mdx | 8 ++++---- src/content/docs/get-started/index.mdx | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/content/docs/client-apis/python.mdx b/src/content/docs/client-apis/python.mdx index 903b750..a37d9bc 100644 --- a/src/content/docs/client-apis/python.mdx +++ b/src/content/docs/client-apis/python.mdx @@ -22,10 +22,10 @@ and is more convenient to use. Download the [CSV files](https://github.com/LadybugDB/ladybug/tree/master/dataset/demo-db/csv) used in the examples below: ```bash mkdir ./data/ -curl -L -o ./data/city.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/city.csv -curl -L -o ./data/user.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/user.csv -curl -L -o ./data/follows.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/follows.csv -curl -L -o ./data/lives-in.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/lives-in.csv +curl -L -o ./data/city.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/city.csv +curl -L -o ./data/user.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/user.csv +curl -L -o ./data/follows.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/follows.csv +curl -L -o ./data/lives-in.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/lives-in.csv ``` diff --git a/src/content/docs/get-started/index.mdx b/src/content/docs/get-started/index.mdx index c0bd0d1..1800f5b 100644 --- a/src/content/docs/get-started/index.mdx +++ b/src/content/docs/get-started/index.mdx @@ -97,10 +97,10 @@ Also download the example CSV files [from our GitHub repo](https://github.com/La ```bash mkdir ./data/ -curl -L -o ./data/city.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/city.csv -curl -L -o ./data/user.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/user.csv -curl -L -o ./data/follows.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/follows.csv -curl -L -o ./data/lives-in.csv https://raw.githubusercontent.com/ladybugdb/ladybug/refs/heads/master/dataset/demo-db/csv/lives-in.csv +curl -L -o ./data/city.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/city.csv +curl -L -o ./data/user.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/user.csv +curl -L -o ./data/follows.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/follows.csv +curl -L -o ./data/lives-in.csv https://raw.githubusercontent.com/LadybugDB/dataset/refs/heads/main/demo-db/csv/lives-in.csv ``` In this example, we will create a graph with two node types, `User` and `City`, and two relationship types, `Follows` and `LivesIn`.