https://github.com/agentcooper/nownownow-json
Data from https://nownownow.com as a JSON file
https://github.com/agentcooper/nownownow-json
json now nownownow webring
Last synced: 2 months ago
JSON representation
Data from https://nownownow.com as a JSON file
- Host: GitHub
- URL: https://github.com/agentcooper/nownownow-json
- Owner: agentcooper
- Created: 2023-12-22T17:34:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-04T14:15:15.000Z (over 2 years ago)
- Last Synced: 2025-01-13T05:29:50.967Z (over 1 year ago)
- Topics: json, now, nownownow, webring
- Language: HTML
- Homepage: https://agentcooper.github.io/nownownow-json/
- Size: 462 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nownownow-json
https://agentcooper.github.io/nownownow-json/
Data from https://nownownow.com as a JSON file: [`./data.json`](./data.json).
You can view the JSON file as a table in the [Datasette UI](https://lite.datasette.io/?json=https%3A%2F%2Fraw.githubusercontent.com%2Fagentcooper%2Fnownownow-json%2Fmain%2Fdata.json#/data/data).
Or use [`jq`](https://jqlang.github.io/jq/) tool to query the data:
```bash
cat data.json | jq '.[] | select(.location | ascii_downcase | contains("amsterdam"))'
```
## Install dependencies
```bash
npm install
```
## Fetch HTML
```bash
# requires https://github.com/sibprogrammer/xq
./fetch
```
## Parse and update data.json
```bash
node parse.js > data.json
```