Skip to content

Commit 49e76a7

Browse files
author
anisa-hawes
committed
Merge branch 'gh-pages' into Issue-3569
2 parents 2e0132b + 13f8e5e commit 49e76a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

en/lessons/creating-apis-with-python-and-flask.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ According to the Chronicling America documentation, in order to get structured d
139139

140140
The query parameters follow the `?` in the request, and are seperated from one another by the `&` symbol. The first query parameter, `format=json`, changes the returned data from HTML to JSON. The second, `proxtext=fire`, narrows the returned entries to those that include our search term.
141141

142-
If you [follow the above link](http://chroniclingamerica.loc.gov/search/pages/results/?format=json&proxtext=fire) in your browser, you'll see a structured list of the items in the database related to the search term "fire." The format of the returned data is called JSON, and is a structured format that looks like this excerpt from the Chronicling America results:
142+
If you follow the above link in your browser, you'll see a structured list of the items in the database related to the search term "fire." The format of the returned data is called JSON, and is a structured format that looks like this excerpt from the Chronicling America results:
143143

144144
```json
145145
"city": [

en/lessons/fetch-and-parse-data-with-openrefine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ The basic components of the ChromAm API are:
365365

366366
- the base URL, `https://chroniclingamerica.loc.gov/`
367367
- the search service location for individual newspaper pages, `search/pages/results`
368-
- a query string, starting with `?` and made up of value pairs (`fieldname=value`) separated by `&`. Much like using the [advanced search form](https://chroniclingamerica.loc.gov/#tab=tab_advanced_search), the value pairs of the query string set the [search options](https://chroniclingamerica.loc.gov/search/pages/opensearch.xml).
368+
- a query string, starting with `?` and made up of value pairs (`fieldname=value`) separated by `&`. Much like using the [advanced search form](https://chroniclingamerica.loc.gov/#tab=tab_advanced_search), the value pairs of the query string set the search options.
369369

370370
Using a GREL expression, these components can be combined with the values in the "ChronAm" project to construct a search query URL.
371371
The contents of the data table can be accessed using [GREL variables](https://github.com/OpenRefine/OpenRefine/wiki/Variables).

0 commit comments

Comments
 (0)