-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathweb\readme.html
More file actions
185 lines (167 loc) · 5.99 KB
/
Copy pathweb\readme.html
File metadata and controls
185 lines (167 loc) · 5.99 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TikTok Backup Tool Documentation</title>
<style>
:root {
--bg-color: #ffffff;
--text-color: #333333;
--section-bg: #f5f5f5;
--button-color: #0077ee;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #1a1a1a;
--text-color: #ffffff;
--section-bg: #2d2d2d;
--button-color: #0077ee;
}
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1, h2, h3 {
color: var(--text-color);
}
pre {
background-color: var(--section-bg);
padding: 15px;
border-radius: 5px;
overflow-x: auto;
}
.donation-section {
background-color: var(--section-bg);
padding: 20px;
border-radius: 10px;
margin-top: 40px;
text-align: center;
}
.coffee-buttons {
display: flex;
justify-content: center;
gap: 15px;
margin: 20px 0;
flex-wrap: wrap;
}
.coffee-button {
background-color: var(--button-color);
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: opacity 0.3s;
}
.coffee-button:hover {
opacity: 0.9;
}
</style>
</head>
<body>
<div class="container">
<h1>TikTok Backup Tool</h1>
<h2>Overview</h2>
<p>The TikTok Backup Tool is a powerful utility that creates comprehensive backups of TikTok profiles. It downloads and organizes profile information, videos, and associated metadata in a structured format.</p>
<h2>Features</h2>
<ul>
<li>Profile Information Backup
<ul>
<li>Avatar image</li>
<li>Bio text</li>
<li>Statistics (followers, following, likes)</li>
</ul>
</li>
<li>Video Content Backup
<ul>
<li>Pinned videos</li>
<li>Regular videos</li>
<li>Video metadata (description, date, sound info)</li>
<li>Comments (when available)</li>
</ul>
</li>
<li>Organized Directory Structure
<ul>
<li>Timestamped backup folders</li>
<li>Clear categorization of content</li>
<li>Detailed metadata files</li>
</ul>
</li>
</ul>
<h2>Requirements</h2>
<ul>
<li>Python 3.8 or higher</li>
<li>Google Chrome browser</li>
<li>Internet connection</li>
<li>Required Python packages (automatically installed):
<ul>
<li>selenium</li>
<li>yt-dlp</li>
<li>requests</li>
</ul>
</li>
</ul>
<h2>Installation</h2>
<ol>
<li>Ensure Python 3.8+ is installed on your system</li>
<li>Download the tt-backup.py script</li>
<li>Run the script - it will automatically install required dependencies</li>
</ol>
<h2>Usage</h2>
<pre>python tt-backup.py</pre>
<p>When prompted:</p>
<ol>
<li>Enter TikTok usernames (comma-separated for multiple accounts)</li>
<li>Select backup options (reposts, favorites, liked videos)</li>
<li>Wait for the backup process to complete</li>
</ol>
<h2>Output Structure</h2>
<pre>
@username_Month Day-Year/
├── 01_profile/
│ ├── 01_avatar/
│ ├── 02_bio/
│ └── 03_stats/
├── 02_pinned_videos/
├── 03_playlists/
├── 04_videos/
├── 05_reposts/
├── 06_favorites/
├── 07_liked/
└── 08_html_snapshot/</pre>
<h2>Common Use Cases</h2>
<ul>
<li>Content creators backing up their own profiles</li>
<li>Archiving TikTok content for preservation</li>
<li>Creating local copies of favorite content</li>
<li>Tracking profile changes over time</li>
</ul>
<div class="donation-section">
<h2>💰 Support the Developer</h2>
<p>Hey there! I'm KayWat, the developer behind this tool. 👋</p>
<p>If you find this tool helpful, consider buying me a coffee! Your support keeps me fueled and creating! ❤️</p>
<div class="coffee-buttons">
<a href="https://www.paypal.com/donate/?hosted_button_id=J3ABMPG6MQF3L&custom=1coffee" class="coffee-button" target="_blank">
☕️ One Coffee ($6)
</a>
<a href="https://www.paypal.com/donate/?hosted_button_id=J3ABMPG6MQF3L&custom=2coffees" class="coffee-button" target="_blank">
☕️☕️ Two Coffees ($12)
</a>
<a href="https://www.paypal.com/donate/?hosted_button_id=J3ABMPG6MQF3L&custom=3coffees" class="coffee-button" target="_blank">
☕️☕️☕️ Three Coffees ($24)
</a>
</div>
<p>Thanks for your support! It means the world to me! 🙏</p>
</div>
</div>
</body>
</html>