Skip to content

Commit a0cb13a

Browse files
committed
short introduction
1 parent 296cb1f commit a0cb13a

File tree

3 files changed

+35
-6
lines changed

3 files changed

+35
-6
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"hash": "fbeb74bb60433d23610e537258da28d0",
3+
"result": {
4+
"engine": "jupyter",
5+
"markdown": "---\ntitle: \"Welcome to Unlocking Data\"\ndescription: \"A Gentle Introduction to APIs\"\nformat:\n html:\n toc: false\n---\n\n\n\n\n\nThis is the workbook that accompanies the workshop \"Unlocking Data: A Gentle Introduction to APIs\". \n\nThe workshop is designed for people with no programming experience, who want to start working with APIs, particularly Web APIs.\n\nYou can follow the workbook without any particular software. We have included some interactive examples in the workbook, so you can follow along with the workshop.\n\nAlthough you don't need any particular software or programming language to follow the lessons, you can look at the code that is used to generate the examples by clicking in the `Code` button, like in the example below:\n\n\n\n\n\n```{ojs}\n\nviewof code = input.code(\n value = \"\n\n\n ::: {#4d21a6ab .cell execution_count=1}\n ``` {.python .cell-code}\n print('Hello, world!')\n ```\n \n ::: {.cell-output .cell-output-stdout}\n ```\n Hello, world!\n ```\n :::\n :::\n \n \n \",\n type = \"text\"\n)\n\ncode;\n```\n\n",
6+
"supporting": [
7+
"index_files"
8+
],
9+
"filters": [],
10+
"includes": {}
11+
}
12+
}

_quarto.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ website:
2828
href: chapters/collecting-data-for-analysis.qmd
2929
- text: "Analyzing Data"
3030
href: chapters/analyzing-data.qmd
31-
- text: "Conclusion"
32-
href: chapters/closing.qmd
3331
- text: "A Catalog of APIs"
3432
href: resources/catalog.qmd
3533

chapters/index.qmd

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,32 @@
11
---
2-
title: "Unlocking Data"
2+
title: "Welcome to Unlocking Data"
33
description: "A Gentle Introduction to APIs"
44
format:
55
html:
66
toc: false
77
---
88

9+
This is the workbook that accompanies the workshop *Unlocking Data: A Gentle Introduction to APIs*.
910

10-
# Unlocking data
11-
## A Gentle Introduction to APIs
11+
The workshop is designed for people with no programming experience who want to start working with APIs, particularly web APIs.
1212

13-
A presentation will be given here...
13+
You can follow this workbook without installing any specific software. We’ve included interactive examples so you can practice alongside the workshop.
14+
15+
Although no programming knowledge is required, you can explore the code behind each example by clicking the Code button, as shown below:
16+
17+
```{ojs}
18+
//| code-fold: true
19+
20+
hello = "Hello, world!"
21+
hello
22+
```
23+
24+
The workbook is divided into two main sections:
25+
26+
1. [**Interacting with APIs**](what-is-an-api.html): This section covers the basics—what APIs are, how they work, and how to use them.
27+
28+
2. [**APIs for Data Analysis**](collecting-data-for-analysis.html): This section focuses on APIs as data sources for research. It includes a lesson on collecting data via APIs and an example of how to analyze the collected data.
29+
30+
Each lesson can be followed independently, and the workbook will remain available even if you don’t attend the workshop.
31+
32+
Without further ado, let’s get started!

0 commit comments

Comments
 (0)