diff --git a/README.md b/README.md index df68b05..359340d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ ## Scrapes labels from etherscan, bscscan & polygonscan, arbitrium, fantom, avalanche website and stores into JSON/CSV. +## 🔴 Currently broken due to [undetected chromedriver not working.](https://github.com/brianleect/etherscan-labels/issues/42) + | Chain | Site | Label Count | Status | Last scraped | | --------------------------------------------------------------------------------- | ------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------- | ------ | ------------ | | [ETH](https://github.com/brianleect/etherscan-labels/tree/main/data/etherscan) | [https://etherscan.io](https://etherscan.io) | [29945](https://github.com/brianleect/etherscan-labels/tree/main/./data/etherscan/combined/combinedAllLabels.json) | ✅ ok | 18/6/2023 | diff --git a/main.py b/main.py index 833c779..56a1802 100644 --- a/main.py +++ b/main.py @@ -23,6 +23,7 @@ def login(): # Retrieve label information and saves as JSON/CSV def getLabel(label, label_type="account", input_type='single'): + # Only eth and opt uses new label scraping method if ('eth' not in baseUrl): getLabelOldFormat(label, label_type=label_type, input_type=input_type) return