-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
77 additions
and
6 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
Metadata-Version: 2.1 | ||
Name: garser | ||
Version: 1.1 | ||
Summary: A HTML Parser | ||
Home-page: https://github.com/grayhat12/garser | ||
Author: GrayHat | ||
Author-email: garyahthacks10@gmail.com | ||
License: UNKNOWN | ||
Download-URL: https://github.com/GrayHat12/garser/archive/v1.1.tar.gz | ||
Description: <p align="center"> | ||
<img src="https://grayhat12.github.io/compiler/favicon_io/favicon-32x32.png" width="32" /> | ||
</p> | ||
<div align="center"> | ||
<a href="https://travis-ci.org/github/GrayHat12/garser"> | ||
<img src="https://api.travis-ci.org/GrayHat12/garser.svg?branch=master&status=created" alt="Build Status" /> | ||
</a> | ||
<a href="#"> | ||
<img src="https://img.shields.io/badge/python-3.7-blue.svg?style=flat-square" alt="Python version" /> | ||
</a> | ||
<a href="https://github.com/grayhat12/garser/blob/master/LICENSE"> | ||
<img src="https://img.shields.io/github/license/grayhat12/garser.svg?style=flat-square" alt="License" /> | ||
</a> | ||
</div> | ||
|
||
<h4 align="center">Wrapper around the HTMLParser python module</h4> | ||
|
||
<p align="center"> | ||
<a href="https://grayhat12.github.io/garser/">Documentation</a> • | ||
<a href="https://grayhat12.github.io/garser/usage/">Basic usage</a> • | ||
</p> | ||
|
||
## About | ||
|
||
Garser is one of the more advanced tools to scan and parse html. It stores all html entities in objects | ||
|
||
## Features | ||
|
||
- Parses HTML in nested object format | ||
- Attributes are stored as data members | ||
- Nested and Non-Nested Entity search | ||
- Entity Search based on attributes | ||
- Intelligent nesting for non closing html entities | ||
- Objects can be converted to JSON Format | ||
- Inspired by Selenium | ||
|
||
|
||
## License | ||
|
||
This tool is licensed under the GNU General Public License v3.0. | ||
|
||
Some parts of this code comes from [HTMLParser](https://docs.python.org/2/library/htmlparser.html) | ||
|
||
Platform: UNKNOWN | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Requires-Python: >=3.6 | ||
Description-Content-Type: text/markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
README.md | ||
setup.cfg | ||
setup.py | ||
garser/__init__.py | ||
garser/element.py | ||
garser/parser.py | ||
garser.egg-info/PKG-INFO | ||
garser.egg-info/SOURCES.txt | ||
garser.egg-info/dependency_links.txt | ||
garser.egg-info/top_level.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
garser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters