4 "summary": "This framework could be used for parsing HTML easily with jQuery style queries.",
5 "description": "# SwSelect\nThis Swift framework provides similar selector implementation to [jQuery](http://jquery.com). It could be used for parsing HTML easily with jQuery style queries. Currently, it supports only tag queries but no content manipulations. Most codes are ported from an Golang project called [\"Cascadia\"](https://github.com/andybalholm/cascadia).\n\n## Simple usage\n```Swift\n//Get image urls\nlet $ = SwSelect(html)\nlet imgUrls = $(”img”).attrs(”src”)\nfor url in imgUrls {\nprint(url)\n}\n\n//get image urls inside tags with class=a1\nlet imgUrls2 = $(”.a1″).find(”img”).attrs(”src”)\n```\nPlease check unit test codes for more usages",
6 "homepage": "https://github.com/julianshen/SwSelect",
9 "Julian Shen": "julianshen@gmail.com"
12 "git": "https://github.com/julianshen/SwSelect.git",
20 "module_name": "SwSelect",
25 "HEADER_SEARCH_PATHS": "$(SDKROOT)/usr/include/libxml2"
27 "module_map": "libxml.modulemap",
28 "prepare_command": "cat > \"libxml.modulemap\" << MAP\nmodule libxml [system] {\n header \"$(SDKROOT)/usr/include/libxml2/libxml/HTMLtree.h\"\n header \"$(SDKROOT)/usr/include/libxml2/libxml/HTMLparser.h\"\n header \"$(SDKROOT)/usr/include/libxml2/libxml/xpath.h\"\n header \"$(SDKROOT)/usr/include/libxml2/libxml/xpathInternals.h\"\n header \"$(SDKROOT)/usr/include/libxml2/libxml/xmlerror.h\"\n link \"libxml\"\n export *\n}\nMAP",
29 "source_files": "SwSelect/libxml2/libxml2.h",