mirror of
https://github.com/TrentSPalmer/hugo_themes_report.git
synced 2024-12-04 16:41:31 -08:00
update rank_hugo_themes.py fix various corner cases
This commit is contained in:
parent
66720672b9
commit
b92173ef77
@ -101,11 +101,17 @@ def get_hugo_themes_list():
|
|||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
lower_case_themes_list = []
|
lower_case_themes_list = []
|
||||||
for x in response.text.splitlines():
|
for x in response.text.splitlines():
|
||||||
if "gcushen" not in x:
|
if "wowchemy-hugo-themes" not in x:
|
||||||
if x[0:10] == "gitlab.com" or x[0:10] == "github.com":
|
"""
|
||||||
if x.lower() not in lower_case_themes_list:
|
alexa-portfolio, hugo-theme-ladder malformed themes.toml
|
||||||
THEMESLIST.append(x)
|
"""
|
||||||
lower_case_themes_list.append(x.lower())
|
if "alexa-portfolio" not in x and "hugo-theme-ladder" not in x:
|
||||||
|
if x[0:10] == "gitlab.com" or x[0:10] == "github.com":
|
||||||
|
if x.lower() not in lower_case_themes_list:
|
||||||
|
if x[-1] == " " and "termishTheme" in x:
|
||||||
|
x = x[0:-1]
|
||||||
|
THEMESLIST.append(x)
|
||||||
|
lower_case_themes_list.append(x.lower())
|
||||||
|
|
||||||
print(response.status_code, get_hugo_themes_list.__name__)
|
print(response.status_code, get_hugo_themes_list.__name__)
|
||||||
|
|
||||||
@ -226,6 +232,8 @@ def get_corrected_theme_name(x):
|
|||||||
return x.rstrip("/v2")
|
return x.rstrip("/v2")
|
||||||
elif "docuapi" in x:
|
elif "docuapi" in x:
|
||||||
return x.rstrip("/v2")
|
return x.rstrip("/v2")
|
||||||
|
elif "hugo-theme-zen" in x:
|
||||||
|
return x.rstrip("/v2")
|
||||||
elif "osprey-delight" in x:
|
elif "osprey-delight" in x:
|
||||||
return x.rstrip("/v5")
|
return x.rstrip("/v5")
|
||||||
elif "bilberry-hugo-theme" in x:
|
elif "bilberry-hugo-theme" in x:
|
||||||
@ -273,6 +281,7 @@ def get_commit_info_for_hugo_themes():
|
|||||||
response.status_code,
|
response.status_code,
|
||||||
get_commit_info_for_hugo_themes.__name__,
|
get_commit_info_for_hugo_themes.__name__,
|
||||||
hugo_theme,
|
hugo_theme,
|
||||||
|
api_call_url,
|
||||||
)
|
)
|
||||||
print(response.status_code, get_commit_info_for_hugo_themes.__name__)
|
print(response.status_code, get_commit_info_for_hugo_themes.__name__)
|
||||||
|
|
||||||
@ -344,7 +353,11 @@ def get_repo_info_for_hugo_themes():
|
|||||||
quit()
|
quit()
|
||||||
elif response.status_code == 404:
|
elif response.status_code == 404:
|
||||||
print(
|
print(
|
||||||
response.status_code, get_repo_info_for_hugo_themes.__name__, hugo_theme
|
response.status_code,
|
||||||
|
get_repo_info_for_hugo_themes.__name__,
|
||||||
|
hugo_theme,
|
||||||
|
api_call_url,
|
||||||
|
headers,
|
||||||
)
|
)
|
||||||
print(response.status_code, get_repo_info_for_hugo_themes.__name__)
|
print(response.status_code, get_repo_info_for_hugo_themes.__name__)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user