Metadata-Version: 2.1
Name: wsq-parser
Version: 1.0.1
Summary: Python module for scraping web-sites
Home-page: https://github.com/WenzzyX/wsq_parser.git
Author: Wenzzy
License: UNKNOWN
Download-URL: https://github.com/WenzzyX/wsq_parser/archive/master.zip
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown

# wsq_parser (Scraping python pkg)

# Example №1:

```python
from wsq_parser import Parser


class ExampleParser(Parser):
    def parse(self):
        self.log("Getting example soup", 0) # Logging events [info]
        example_page_soup = self.get_page(self.URL) # Got soup for url 


if __name__ == '__main__':
    ExampleParser("https://example.com/", 1)

```
### Another examples:
#### [ParserMejor](https://github.com/WenzzyX/ParserMejor), [ParserElite](https://github.com/WenzzyX/ParserElite)

