Format numbers

This commit is contained in:
MMaker 2025-02-25 18:08:15 -05:00
parent 3201aea856
commit b3539d7a47
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

19
app.py
View File

@ -203,6 +203,17 @@ def get_data(video_id, real_url):
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):
"""Get the oEmbed (/owoembed) URL based on the given params (server response)"""
if not params:
@ -215,10 +226,10 @@ def get_oembed_url(params):
if not video_id:
return None
view_count = str(params.get('video', {}).get('count', {}).get('view')) or "n/a"
comment_count = str(params.get('video', {}).get('count', {}).get('comment')) or "n/a"
like_count = str(params.get('video', {}).get('count', {}).get('like')) or "n/a"
mylist_count = str(params.get('video', {}).get('count', {}).get('mylist')) or "n/a"
view_count = human_format(params.get('video', {}).get('count', {}).get('view')) or "n/a"
comment_count = human_format(params.get('video', {}).get('count', {}).get('comment')) or "n/a"
like_count = human_format(params.get('video', {}).get('count', {}).get('like')) 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}"
author_name_encoded = urllib.parse.quote(author_name)