abstract-webtools 0.1.4.17__tar.gz → 0.1.4.19__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/PKG-INFO +1 -1
  2. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/setup.py +1 -1
  3. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/abstract_webtools.py +3 -0
  4. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools.egg-info/PKG-INFO +1 -1
  5. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/LICENSE +0 -0
  6. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/README.md +0 -0
  7. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/pyproject.toml +0 -0
  8. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/setup.cfg +0 -0
  9. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/__init__.py +0 -0
  10. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/abstract_crawler.py +0 -0
  11. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/abstract_webtools2.py +0 -0
  12. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/dfgdsf.py +0 -0
  13. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/grab_source_gui.py +0 -0
  14. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/main.py +0 -0
  15. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools/sou.py +0 -0
  16. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools.egg-info/SOURCES.txt +0 -0
  17. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools.egg-info/dependency_links.txt +0 -0
  18. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools.egg-info/requires.txt +0 -0
  19. {abstract_webtools-0.1.4.17 → abstract_webtools-0.1.4.19}/src/abstract_webtools.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: abstract_webtools
3
- Version: 0.1.4.17
3
+ Version: 0.1.4.19
4
4
  Summary: Abstract Web Tools is a Python package that provides various utility functions for web scraping tasks. It is built on top of popular libraries such as `requests`, `BeautifulSoup`, and `urllib3` to simplify the process of fetching and parsing web content.
5
5
  Home-page: https://github.com/AbstractEndeavors/abstract_essentials/tree/main/abstract_webtools
6
6
  Author: putkoff
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
4
4
  long_description = fh.read()
5
5
  setuptools.setup(
6
6
  name='abstract_webtools',
7
- version='0.1.4.17',
7
+ version='0.1.4.19',
8
8
  author='putkoff',
9
9
  author_email='partners@abstractendeavors.com',
10
10
  description='Abstract Web Tools is a Python package that provides various utility functions for web scraping tasks. It is built on top of popular libraries such as `requests`, `BeautifulSoup`, and `urllib3` to simplify the process of fetching and parsing web content.',
@@ -80,6 +80,7 @@ from requests.packages.urllib3.poolmanager import PoolManager
80
80
  from requests.packages.urllib3.util import ssl_
81
81
  from urllib.parse import urlparse
82
82
  import logging
83
+ from bs4 import BeautifulSoup
83
84
  import xml.etree.ElementTree as ET
84
85
  from abstract_utilities.time_utils import get_time_stamp,get_sleep,sleep_count_down
85
86
  from abstract_utilities.string_clean import eatInner,eatAll
@@ -818,6 +819,8 @@ class SoupManager:
818
819
  class_name, class_items = self.find_class_name(class_items)
819
820
  class_value, class_items = self.eat_till_quote(class_items)
820
821
  if class_name and class_value:
822
+ class_name=eatAll(class_name,['',' ','\n','\t'])
823
+ class_value=eatAll(class_value,['',' ','\n','\t'])
821
824
  if class_name not in self.attribute_tracker_js:
822
825
  self.attribute_tracker_js[class_name] = {"class_values":[],"attributions":[]}
823
826
  if class_name not in self.class_names:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: abstract-webtools
3
- Version: 0.1.4.17
3
+ Version: 0.1.4.19
4
4
  Summary: Abstract Web Tools is a Python package that provides various utility functions for web scraping tasks. It is built on top of popular libraries such as `requests`, `BeautifulSoup`, and `urllib3` to simplify the process of fetching and parsing web content.
5
5
  Home-page: https://github.com/AbstractEndeavors/abstract_essentials/tree/main/abstract_webtools
6
6
  Author: putkoff