From b3539d7a47ea15b9bc4a40a19decc9c99da94380 Mon Sep 17 00:00:00 2001 From: MMaker Date: Tue, 25 Feb 2025 18:08:15 -0500 Subject: [PATCH] Format numbers --- app.py | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/app.py b/app.py index c6b8f82..bfc9637 100644 --- a/app.py +++ b/app.py @@ -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)