-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathapp.py
50 lines (42 loc) · 1.8 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return """
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://sudor2spr.github.io/Documentation/assets/style.css">
<titleSudoR2spr Repository</title>
<link rel="icon" type="image/x-icon" href="https://raw.githubusercontent.com/SudoR2spr/SudoR2spr/main/assets/angel-op/Angel-ji.png">
</head>
<body>
<div class="container" style="bg-dark text-red text-center py-3 mt-5">
<a href="https://telegram.me/teraboxdownloader_file" class="card">
<p>
░█▀▀▄░▒█▄░▒█░▒█▀▀█░▒█▀▀▀░▒█░░░<br>
▒█▄▄█░▒█▒█▒█░▒█░▄▄░▒█▀▀▀░▒█░░░<br>
▒█░▒█░▒█░░▀█░▒█▄▄▀░▒█▄▄▄░▒█▄▄█<br>
<br>
<b>v2.0.0</b>
</p>
</a>
</div>
<br></br><br></br><br></br>
<footer class="bg-dark text-white text-center py-3 mt-5">
<center><img loading="lazy" class="object-none object-center" src="https://graph.org/file/548b8b73c35af202bfdac.png" width="60" height="60">
Powered By 𝐖𝐎𝐎𝐃𝐜𝐫𝐚𝐟𝐭
<img loading="lazy" class="object-none object-center" src="https://graph.org/file/548b8b73c35af202bfdac.png" width="60" height="60">
<div class="footer__copyright">
<p class="footer__copyright-info">
© 2024 Video Downloader. All rights reserved.
</p>
</div>
</footer></center>
</body>
</html>
"""
if __name__ == "__main__":
app.run()