nickpreston24 / nugs-net6

nugs-net6
1 stars 0 forks source link

Create a common mapping JSON from Airtable to Neo #28

Open nickpreston24 opened 1 year ago

nickpreston24 commented 1 year ago

Create a simple JSON containing instructions on how to map content from URLs I find on the web and store them to Neo4j, with Cypher.

Sample links:

Get the twist rate .pngs from: https://www.everydaymarksman.co/wp-content/uploads/2018/12/224-Stabilization-1024x576.png

Get the ammo counts, dates, and prices from: https://ammoseek.com/ammo/300aac-blackout

This should cut down on the amount of custom "Repositories" and updates needed and can be slimmed down over time.

e.g.:

{
   "name": "AmmoSeek.com",
   "url": "https://ammoseek.com/ammo/300aac-blackout",
   "globs": 
    { "specific_round_urls":  "/ammo/**"},
   "css_selectors":
     [ { "find" : "th#priceField"}]

}