Format numbers
This commit is contained in:
parent
3201aea856
commit
b3539d7a47
19
app.py
19
app.py
@ -203,6 +203,17 @@ def get_data(video_id, real_url):
|
|||||||
|
|
||||||
return None, soup
|
return None, soup
|
||||||
|
|
||||||
|
def human_format(num):
|
||||||
|
"""Format a number in a human-readable way (e.g., 1K, 2M, etc.)"""
|
||||||
|
if num is None:
|
||||||
|
return None
|
||||||
|
num = float('{:.3g}'.format(num))
|
||||||
|
magnitude = 0
|
||||||
|
while abs(num) >= 1000:
|
||||||
|
magnitude += 1
|
||||||
|
num /= 1000.0
|
||||||
|
return '{}{}'.format('{:f}'.format(num).rstrip('0').rstrip('.'), ['', 'K', 'M', 'B', 'T'][magnitude])
|
||||||
|
|
||||||
def get_oembed_url(params):
|
def get_oembed_url(params):
|
||||||
"""Get the oEmbed (/owoembed) URL based on the given params (server response)"""
|
"""Get the oEmbed (/owoembed) URL based on the given params (server response)"""
|
||||||
if not params:
|
if not params:
|
||||||
@ -215,10 +226,10 @@ def get_oembed_url(params):
|
|||||||
if not video_id:
|
if not video_id:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
view_count = str(params.get('video', {}).get('count', {}).get('view')) or "n/a"
|
view_count = human_format(params.get('video', {}).get('count', {}).get('view')) or "n/a"
|
||||||
comment_count = str(params.get('video', {}).get('count', {}).get('comment')) or "n/a"
|
comment_count = human_format(params.get('video', {}).get('count', {}).get('comment')) or "n/a"
|
||||||
like_count = str(params.get('video', {}).get('count', {}).get('like')) or "n/a"
|
like_count = human_format(params.get('video', {}).get('count', {}).get('like')) or "n/a"
|
||||||
mylist_count = str(params.get('video', {}).get('count', {}).get('mylist')) or "n/a"
|
mylist_count = human_format(params.get('video', {}).get('count', {}).get('mylist')) or "n/a"
|
||||||
provder_stats = f"👁️ {view_count} 💬 {comment_count} ❤️ {like_count} 📝 {mylist_count}"
|
provder_stats = f"👁️ {view_count} 💬 {comment_count} ❤️ {like_count} 📝 {mylist_count}"
|
||||||
|
|
||||||
author_name_encoded = urllib.parse.quote(author_name)
|
author_name_encoded = urllib.parse.quote(author_name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user