Metadata-Version: 2.1
Name: scrape-html
Version: 0.0.17
Summary: Get html in string from a page
Home-page: https://github.com/AndyPythonCode/scrape-html
Author: Andy J. Arciniega
Author-email: andyarciniegas24@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Generate HTML in string from URL

```python
from scraping.scraper import PageSources

page = PageSources('url...')

print(page.get_current_html())
```

## It Need a google chrome driver

### To check the version you have of Google Chrome, you can do it from the browser information and in the "Help" section:

- Open a window in the browser.
- Go to the three points in the upper right.
- Choose the "Help" option from the drop-down menu.
- Tap on "Google Chrome Information"

---

### Go to https://chromedriver.chromium.org/downloads select your version, system and download

### It will be a file like this:

<img src="https://i.ibb.co/6Hfy3M6/Screenshot-2021-07-12-001416.png"  title="hover text">

### **Copy and paste in your root project**


