-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
executable file
·49 lines (39 loc) · 2.06 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<title>Exportify</title>
<meta charset="utf-8">
<meta name="description" content="Export and save your Spotify playlists to csv. Analyze your music tastes in the Jupyter notebook. Data fields include genres, artists, popularity, year and more.">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="canonical" href="https://exportify.net">
<!-- Bootstrap -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- React.js -->
<script src="//unpkg.com/react@16/umd/react.production.min.js"></script>
<script src="//unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<!-- IO utils -->
<script src="FileSaver.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jszip/2.5.0/jszip.min.js"></script>
<link rel="stylesheet" href="style.css">
<script src="exportify.js"></script>
</head>
<body>
<div class="container">
<div id="header">
<div id="logoutContainer" class="text-right"></div>
<h1><a href="https://github.com/pavelkomarov/exportify"><i class="fa fa-spotify" style="color: #84BD00"></i> Exportify</a></h1>
<p id="subtitle" class="lead">Export your Spotify playlists.</p>
<p>Analyze the data <a href="http://pavelkomarov.com/exportify/taste_analysis">like this</a>
by <a href="https://mybinder.org/v2/gh/pavelkomarov/exportify/master" target="_blank">
launching the notebook</a>, uploading your <tt>.csv</tt>, and running the <tt>.ipynb</tt>.</p>
<p>What do you use your data to do? Have improvement ideas? Join the <a href="https://github.com/pavelkomarov/exportify/discussions">discussion</a> on <a href="https://github.com/pavelkomarov/exportify">GitHub</a>!</p>
<p id="error"></p>
<button id="loginButton" type="submit" class="btn btn-lg" onclick="utils.authorize()">
<i class="fa fa-check-circle-o"></i> Get Started
</button>
</div>
<div id="playlistsContainer"></div>
</div><!-- /.container -->
</body>
</html>