Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:quantumblacklabs/private-kedro i…
Browse files Browse the repository at this point in the history
…nto develop
  • Loading branch information
tolomea committed Oct 7, 2019
2 parents 0c5d98e + cd26ab1 commit 837f5ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/03_tutorial/03_set_up_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ wget -O data/01_raw/shuttles.xlsx https://raw.githubusercontent.com/quantumblack

Alternatively, if you are a Windows user, try [Wget for Windows](https://eternallybored.org/misc/wget/) and the following commands instead:

```bash
```bat
wget -O data\01_raw\reviews.csv https://raw.githubusercontent.com/quantumblacklabs/kedro/develop/docs/source/03_tutorial/data/reviews.csv
wget -O data\01_raw\companies.csv https://raw.githubusercontent.com/quantumblacklabs/kedro/develop/docs/source/03_tutorial/data/companies.csv
wget -O data\01_raw\shuttles.xlsx https://raw.githubusercontent.com/quantumblacklabs/kedro/develop/docs/source/03_tutorial/data/shuttles.xlsx
```

or [cURL for Windows](https://curl.haxx.se/windows/):

```bash
```bat
curl -o data\01_raw\reviews.csv https://raw.githubusercontent.com/quantumblacklabs/kedro/develop/docs/source/03_tutorial/data/reviews.csv
curl -o data\01_raw\companies.csv https://raw.githubusercontent.com/quantumblacklabs/kedro/develop/docs/source/03_tutorial/data/companies.csv
curl -o data\01_raw\shuttles.xlsx https://raw.githubusercontent.com/quantumblacklabs/kedro/develop/docs/source/03_tutorial/data/shuttles.xlsx
Expand Down Expand Up @@ -111,7 +111,7 @@ mkdir -p src/kedro_tutorial/io && touch src/kedro_tutorial/io/__init__.py

Or, if you are a Windows user:

```bash
```bat
mkdir src\kedro_turorial\io && type nul > src\kedro_turorial\io\__init__.py
```

Expand All @@ -121,7 +121,7 @@ Creating new custom dataset implementations is done by creating a class that ext
touch src/kedro_tutorial/io/xls_local.py
```
For Windows, try:
```bash
```bat
type nul > src\kedro_tutorial\io\xls_local.py
```

Expand Down

0 comments on commit 837f5ca

Please sign in to comment.