1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-02-02 12:26:48 +01:00
Marcus Müller 2a14ec9d4d Lyrics Providers: Remove unreachable ones
This was determined programmatically by means of trying to do a simple
HTTP request to / of any of the URLs given:

```python
from lxml import etree
from urllib import parse
import requests
doc = etree.parse("ultimate_providers.xml")
root = doc.getroot()
for provider in root:
    parsed_url = parse.urlparse(provider.get("url"))
    url = f"{parsed_url.scheme}://{parsed_url.netloc}/"
    try:
        requests.head(url, timeout=5)
    except Exception as e:
        print(parsed_url.netloc)
```

Note that these were also removed from songinfoview as present, and from
outgoingdatacreator. The two lists there were found to be inconsistent,
but this isn't subject of this PR.

Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-12 13:33:01 +01:00
..
2020-05-21 21:45:04 +01:00
2020-05-21 21:45:04 +01:00
2021-04-21 10:24:53 +01:00
2010-07-12 19:51:23 +00:00
2020-05-21 21:45:04 +01:00
2020-05-21 21:45:04 +01:00
2010-06-02 17:50:53 +00:00
2014-02-07 16:46:48 +01:00
2014-02-07 16:46:48 +01:00
2010-06-02 18:44:53 +00:00
2020-05-21 21:45:04 +01:00
2020-05-21 21:45:04 +01:00
2020-05-21 21:45:04 +01:00
2020-05-21 21:45:04 +01:00