├── .gitignore ├── LICENSE ├── xpath_selector ├── CHANGELOG.md ├── LICENSE ├── README-zh_CN.MD ├── README.md ├── analysis_options.yaml ├── example │ ├── html_example.dart │ ├── pubspec.yaml │ ├── readme.md │ └── xml_example.dart ├── html_xpath_selector.iml ├── lib │ ├── src │ │ ├── builder.dart │ │ ├── execute.dart │ │ ├── model │ │ │ └── base.dart │ │ ├── parser.dart │ │ ├── reg.dart │ │ ├── selector.dart │ │ └── utils │ │ │ ├── dom_selector.dart │ │ │ ├── op.dart │ │ │ └── utils.dart │ └── xpath_selector.dart └── pubspec.yaml ├── xpath_selector_html_parser ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh_CN.md ├── analysis_options.yaml ├── example │ └── example.dart ├── lib │ ├── src │ │ ├── ext.dart │ │ └── model.dart │ └── xpath_selector_html_parser.dart ├── pubspec.yaml └── test │ └── html_test.dart └── xpath_selector_xml_parser ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh_CN.md ├── analysis_options.yaml ├── example └── example.dart ├── lib ├── src │ ├── ext.dart │ └── model.dart └── xpath_selector_xml_parser.dart ├── pubspec.yaml └── test ├── extra_test.dart └── xml_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/LICENSE -------------------------------------------------------------------------------- /xpath_selector/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/CHANGELOG.md -------------------------------------------------------------------------------- /xpath_selector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/LICENSE -------------------------------------------------------------------------------- /xpath_selector/README-zh_CN.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/README-zh_CN.MD -------------------------------------------------------------------------------- /xpath_selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/README.md -------------------------------------------------------------------------------- /xpath_selector/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/analysis_options.yaml -------------------------------------------------------------------------------- /xpath_selector/example/html_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/example/html_example.dart -------------------------------------------------------------------------------- /xpath_selector/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/example/pubspec.yaml -------------------------------------------------------------------------------- /xpath_selector/example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/example/readme.md -------------------------------------------------------------------------------- /xpath_selector/example/xml_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/example/xml_example.dart -------------------------------------------------------------------------------- /xpath_selector/html_xpath_selector.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/html_xpath_selector.iml -------------------------------------------------------------------------------- /xpath_selector/lib/src/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/builder.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/execute.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/execute.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/model/base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/model/base.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/parser.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/reg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/reg.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/selector.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/utils/dom_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/utils/dom_selector.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/utils/op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/utils/op.dart -------------------------------------------------------------------------------- /xpath_selector/lib/src/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/src/utils/utils.dart -------------------------------------------------------------------------------- /xpath_selector/lib/xpath_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/lib/xpath_selector.dart -------------------------------------------------------------------------------- /xpath_selector/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector/pubspec.yaml -------------------------------------------------------------------------------- /xpath_selector_html_parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/.gitignore -------------------------------------------------------------------------------- /xpath_selector_html_parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/CHANGELOG.md -------------------------------------------------------------------------------- /xpath_selector_html_parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/LICENSE -------------------------------------------------------------------------------- /xpath_selector_html_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/README.md -------------------------------------------------------------------------------- /xpath_selector_html_parser/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/README_zh_CN.md -------------------------------------------------------------------------------- /xpath_selector_html_parser/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/analysis_options.yaml -------------------------------------------------------------------------------- /xpath_selector_html_parser/example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/example/example.dart -------------------------------------------------------------------------------- /xpath_selector_html_parser/lib/src/ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/lib/src/ext.dart -------------------------------------------------------------------------------- /xpath_selector_html_parser/lib/src/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/lib/src/model.dart -------------------------------------------------------------------------------- /xpath_selector_html_parser/lib/xpath_selector_html_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/lib/xpath_selector_html_parser.dart -------------------------------------------------------------------------------- /xpath_selector_html_parser/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/pubspec.yaml -------------------------------------------------------------------------------- /xpath_selector_html_parser/test/html_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_html_parser/test/html_test.dart -------------------------------------------------------------------------------- /xpath_selector_xml_parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/.gitignore -------------------------------------------------------------------------------- /xpath_selector_xml_parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/CHANGELOG.md -------------------------------------------------------------------------------- /xpath_selector_xml_parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/LICENSE -------------------------------------------------------------------------------- /xpath_selector_xml_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/README.md -------------------------------------------------------------------------------- /xpath_selector_xml_parser/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/README_zh_CN.md -------------------------------------------------------------------------------- /xpath_selector_xml_parser/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/analysis_options.yaml -------------------------------------------------------------------------------- /xpath_selector_xml_parser/example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/example/example.dart -------------------------------------------------------------------------------- /xpath_selector_xml_parser/lib/src/ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/lib/src/ext.dart -------------------------------------------------------------------------------- /xpath_selector_xml_parser/lib/src/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/lib/src/model.dart -------------------------------------------------------------------------------- /xpath_selector_xml_parser/lib/xpath_selector_xml_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/lib/xpath_selector_xml_parser.dart -------------------------------------------------------------------------------- /xpath_selector_xml_parser/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/pubspec.yaml -------------------------------------------------------------------------------- /xpath_selector_xml_parser/test/extra_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/test/extra_test.dart -------------------------------------------------------------------------------- /xpath_selector_xml_parser/test/xml_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonkimi/xpath_selector/HEAD/xpath_selector_xml_parser/test/xml_test.dart --------------------------------------------------------------------------------