- Notifications
You must be signed in to change notification settings - Fork2
Muninn is a fast and flexible HTML parsing tool that simplifies the process of extracting data from HTMLs.
License
wopehq/muninn
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Muninn is a fast and flexible HTML parsing tool that simplifies the process of extracting data from HTMLs. It allows you to create a configuration file, making it easy to keep parser settings up to date even when selectors change. With its easy-to-learn syntax and the power of thecheerio library for parsing, Muninn is a versatile solution for various parsing needs.
- Fast and efficient HTML parsing
- Easy-to-learn syntax for creating parser configurations
- Flexibility to handle changing selectors
- Powered by the popularcheerio library
import{parse}from'muninn';constconfig={schema:{title:'#productTitle',price:'#priceblock_ourprice',rating:{selector:'#acrPopover span | float',regex:/\d+\.?\d?/},features:{selector:'#productOverview_feature_div tr.a-spacing-small | array',schema:{name:'td:nth-child(1)',value:'td:nth-child(2)'}}}};// The `data` is an HTML Content of type string.// https://www.amazon.com/AMD-Ryzen-3700X-16-Thread-Processor/dp/B07SXMZLPK/constdata='<html>...</html>';constresult=parse(data,config);
{"title":"AMD Ryzen 7 3700X 8-Core, 16-Thread Unlocked Desktop Processor with Wraith Prism LED Cooler","price":"$308.99","rating":4.9,"features":[{"name":"Brand","value":"AMD"},{"name":"CPU Model","value":"AMD Ryzen 7"},{"name":"CPU Speed","value":"4.4 GHz"},{"name":"CPU Socket","value":"Socket AM4"},{"name":"Processor Count","value":"8"}]}
Distributed under the MIT License. See LICENSE for more information.
About
Muninn is a fast and flexible HTML parsing tool that simplifies the process of extracting data from HTMLs.
Topics
Resources
License
Code of conduct
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
Contributors5
Uh oh!
There was an error while loading.Please reload this page.