urlicon 0.2.2__py3-none-any.whl → 0.2.4__py3-none-any.whl

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.
urlicon/urlicon.py CHANGED
@@ -40,6 +40,11 @@ def get_url_icon(url):
40
40
  return get_default_img(text=url)
41
41
 
42
42
 
43
+ def get_url_content_file_icon(url):
44
+ icon_url = get_url_icon(url)
45
+ return requests_get(icon_url)
46
+
47
+
43
48
  def get_meta_icon_from_url(url, url_soup=None):
44
49
  soup_icons, url_soup = get_soup_icons_from_url(url, url_soup)
45
50
 
@@ -54,9 +59,9 @@ def get_meta_icon_from_url(url, url_soup=None):
54
59
  img = final_icon["href"]
55
60
 
56
61
  try:
57
- url_request = requests_get(url)
62
+ url_request = requests_get(img)
58
63
  except:
59
- return None
64
+ return None, url_soup
60
65
 
61
66
  if url_request is None:
62
67
  img = None
@@ -88,7 +93,10 @@ def get_soup_icons_from_url(url, url_soup=None):
88
93
  def get_soup_icon_size(soup_icon):
89
94
  if not soup_icon.has_attr("sizes"):
90
95
  return 1
91
- return int(soup_icon["sizes"].split("x")[0])
96
+ try:
97
+ return int(soup_icon["sizes"].split("x")[0])
98
+ except:
99
+ return 1
92
100
 
93
101
 
94
102
  def get_favicon_from_url(url):
@@ -99,7 +107,7 @@ def get_favicon_from_url(url):
99
107
  except:
100
108
  return None
101
109
 
102
- if favicon_request is None or "html" in favicon_request[:150]:
110
+ if favicon_request is None or "html" in str(favicon_request)[:150]:
103
111
  return None
104
112
  else:
105
113
  return favicon
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: urlicon
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: `URLicon` helps you to discover an possible icon from a URL.
5
5
  Author-email: Cesar Cardoso <hello@cesarcardoso.cc>
6
6
  License-Expression: MIT
@@ -11,7 +11,7 @@ Requires-Dist: dotenv>=0.9.9
11
11
  Requires-Dist: requests>=2.32.5
12
12
  Requires-Dist: unforgettable
13
13
 
14
- # URLicon - v0.2.2
14
+ # URLicon - v0.2.4
15
15
 
16
16
  `URLicon` helps you to discover an possible icon from a URL.
17
17
 
@@ -0,0 +1,6 @@
1
+ urlicon/urlicon.py,sha256=kUuI_-vve499Ubkguuvc9oe9ekmMkuDaDGiQpTEhjKo,4579
2
+ urlicon/urls.py,sha256=ErdlgRva3bxs6HuBX2iHng21PqpWGIF1etZFToJq4jc,2235
3
+ urlicon-0.2.4.dist-info/METADATA,sha256=0MklT6LhNTxS_57mPPC67tYb7H0ZJlQSzg6tP0GJMbw,1788
4
+ urlicon-0.2.4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
5
+ urlicon-0.2.4.dist-info/top_level.txt,sha256=Jts8QbeWp-6xANJ9KVj3CHk6L-8D950AQ_ZKXmF4YGI,8
6
+ urlicon-0.2.4.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- urlicon/urlicon.py,sha256=KlLx-1m47AfVv_tBF_6ieHoRxGWCwuMgVkm6mbTVENc,4417
2
- urlicon/urls.py,sha256=ErdlgRva3bxs6HuBX2iHng21PqpWGIF1etZFToJq4jc,2235
3
- urlicon-0.2.2.dist-info/METADATA,sha256=8F5UrKIMx3Zyjrel0-3McnSy0TTye4jZUQbqC1om1E0,1788
4
- urlicon-0.2.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
5
- urlicon-0.2.2.dist-info/top_level.txt,sha256=Jts8QbeWp-6xANJ9KVj3CHk6L-8D950AQ_ZKXmF4YGI,8
6
- urlicon-0.2.2.dist-info/RECORD,,