Merge branch 'database' of https://github.com/Kevin-Mok/spotify-lib-vis
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,3 +6,6 @@ db.sqlite3
|
||||
|
||||
api-keys.sh
|
||||
Pipfile
|
||||
super-pass.txt
|
||||
*.js
|
||||
*.ini
|
||||
|
||||
85
spotifyvis/migrations/0001_initial.py
Normal file
85
spotifyvis/migrations/0001_initial.py
Normal file
@@ -0,0 +1,85 @@
|
||||
# Generated by Django 2.0.5 on 2018-06-03 23:01
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Artist',
|
||||
fields=[
|
||||
('artist_id', models.CharField(max_length=30, primary_key=True, serialize=False)),
|
||||
('name', models.CharField(max_length=50, unique=True)),
|
||||
('genre', models.CharField(max_length=20)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Artist',
|
||||
'verbose_name_plural': 'Artists',
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Track',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('track_id', models.CharField(max_length=30)),
|
||||
('year', models.PositiveSmallIntegerField()),
|
||||
('popularity', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('runtime', models.PositiveSmallIntegerField()),
|
||||
('name', models.CharField(max_length=75)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Track',
|
||||
'verbose_name_plural': 'Tracks',
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='User',
|
||||
fields=[
|
||||
('user_id', models.CharField(max_length=30, primary_key=True, serialize=False)),
|
||||
('username', models.CharField(max_length=30)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'User',
|
||||
'verbose_name_plural': 'Users',
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='AudioFeatures',
|
||||
fields=[
|
||||
('track', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, primary_key=True, serialize=False, to='spotifyvis.Track')),
|
||||
('danceability', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('energy', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('loudness', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('speechiness', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('acousticness', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('instrumentalness', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('valence', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
('tempo', models.DecimalField(decimal_places=2, max_digits=2)),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'AudioFeatures',
|
||||
'verbose_name_plural': 'AudioFeatures',
|
||||
},
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='track',
|
||||
name='artist',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='spotifyvis.Artist'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='track',
|
||||
name='users',
|
||||
field=models.ManyToManyField(to='spotifyvis.User'),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='track',
|
||||
unique_together={('track_id', 'artist')},
|
||||
),
|
||||
]
|
||||
@@ -1,3 +1,69 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
class Artist(models.Model):
|
||||
|
||||
class Meta:
|
||||
verbose_name = "Artist"
|
||||
verbose_name_plural = "Artists"
|
||||
|
||||
artist_id = models.CharField(primary_key=True, max_length=30)
|
||||
# unique since only storing one genre per artist right now
|
||||
name = models.CharField(unique=True, max_length=50)
|
||||
genre = models.CharField(max_length=20)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
|
||||
class User(models.Model):
|
||||
|
||||
class Meta:
|
||||
verbose_name = "User"
|
||||
verbose_name_plural = "Users"
|
||||
|
||||
user_id = models.CharField(primary_key=True, max_length=30)
|
||||
username = models.CharField(max_length=30)
|
||||
|
||||
def __str__(self):
|
||||
return self.username
|
||||
|
||||
|
||||
class Track(models.Model):
|
||||
|
||||
class Meta:
|
||||
verbose_name = "Track"
|
||||
verbose_name_plural = "Tracks"
|
||||
unique_together = ('track_id', 'artist',)
|
||||
|
||||
track_id = models.CharField(max_length=30)
|
||||
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
|
||||
year = models.PositiveSmallIntegerField()
|
||||
popularity = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
runtime = models.PositiveSmallIntegerField()
|
||||
name = models.CharField(max_length=75)
|
||||
users = models.ManyToManyField(User)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
|
||||
class AudioFeatures(models.Model):
|
||||
|
||||
class Meta:
|
||||
verbose_name = "AudioFeatures"
|
||||
verbose_name_plural = "AudioFeatures"
|
||||
|
||||
track = models.OneToOneField(Track, on_delete=models.CASCADE, primary_key=True,)
|
||||
danceability = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
energy = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
loudness = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
speechiness = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
acousticness = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
instrumentalness = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
valence = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
tempo = models.DecimalField(decimal_places=2, max_digits=2)
|
||||
|
||||
def __str__(self):
|
||||
return super(AudioFeatures, self).__str__()
|
||||
|
||||
|
||||
|
||||
@@ -14,8 +14,13 @@
|
||||
<!--[if lt IE 7]>
|
||||
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
|
||||
<![endif]-->
|
||||
<h1>Logged in as {{ id }}</h1>
|
||||
<p>Logged in as {{ id }}</p>
|
||||
<h2>Display name {{ user_name }}</h2>
|
||||
<ul>
|
||||
{% for genre_name, genre_count in genre_dict.items %}
|
||||
<li>{{ genre_name }} - {{ genre_count }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<script src="{% static 'spotifyvis/scripts/user_data.js' %}"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user