db259093e4868fcff9a41a6501a73f93cea94dd8
Scraping data from Archives of Nethys
How to scrape all creatures
- Use firefox
- Go to about:config and raise
devtools.netmonitor.responseBodyLimitto the max - Open network dev tools
- Visit https://2e.aonprd.com/Creatures.aspx
- Scroll down and click the button to load all
- In dev tools, click cogwheel, export HAR file.
let jsons = (open '2e.aonprd.com_Archive [26-05-08 21-11-24].har' | from json | get log.entries.response | where headers.value has "application/json" | get content.text)
⤷open '2e.aonprd.com_Archive [26-05-08 21-11-24].har' | from json | get log.entries.response | where headers.value has "application/json" | get content.text
Description
Languages
Nushell
100%