Skip to content
Snippets Groups Projects
Commit a9c1b01c authored by Grant's avatar Grant
Browse files

updates to remove ei references

parent 9845c074
Branches develop
No related tags found
No related merge requests found
"""Exceptions to Use"""
class ParserError(Exception):
"""Custom exception class to handle Selenium webdriver crashes."""
def __init__(self, message="The Selenium webdriver has crashed"):
super().__init__(message)
......@@ -22,7 +22,7 @@ from selenium.common.exceptions import StaleElementReferenceException
from selenium.common.exceptions import NoSuchWindowException
from selenium.common.exceptions import TimeoutException
from urllib3.exceptions import HTTPError, ConnectionError
from ei.exceptions import ParserError
from scrapers.exceptions import ParserError
from rich.logging import RichHandler
from rich.traceback import install
install()
......
......@@ -5,7 +5,7 @@ import os
from setuptools import setup
# update version information here
_version = '0.1.1'
_version = '0.1.5'
# packages
_packages = ['scrapers', 'scrapers.mixins']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment