Maked last update time human-readable
This commit is contained in:
parent
cc8670b6e0
commit
1fecedbbb3
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
import os
|
||||
import sqlite3
|
||||
import requests
|
||||
import datetime
|
||||
|
||||
def read_music_database(url):
|
||||
os.remove("assets/localwrapped/music.db")
|
||||
|
@ -40,7 +41,8 @@ def generatehtmlcode(url):
|
|||
html += '<meta property="og:url" content="https://halhadus.rocks/localwrapped.html">\n'
|
||||
html += '<h1>Halhadus\' Local Wrapped</h1>\n'
|
||||
html += '<h2>Total Play Time: ' + str(int(total_play_time(url)/60)) + ' minutes</h2>\n'
|
||||
html += '<h3>Last Updated: ' + os.path.getmtime('assets/localwrapped/count.db') + '</h3>\n'
|
||||
# HUMAN READABLE last updated time (example: 2021-09-01 12:34:56) of assets/localwrapped/music.db (UTC +3)
|
||||
html += '<h2>Last Updated: ' + datetime.datetime.utcfromtimestamp(os.path.getmtime("assets/localwrapped/music.db")).strftime('%Y-%m-%d %H:%M:%S') + ' (UTC +3)</h2>\n'
|
||||
html += '<h3>Most Played Musics</h3>\n'
|
||||
html += '<ol>\n'
|
||||
count_list_formatted = []
|
||||
|
|
Loading…
Add table
Reference in a new issue