Skip to content

Instantly share code, notes, and snippets.

@7ranceaddic7
Last active October 26, 2020 03:32
Show Gist options
  • Save 7ranceaddic7/97330f0219d24b6767efe5ca70f92750 to your computer and use it in GitHub Desktop.
Save 7ranceaddic7/97330f0219d24b6767efe5ca70f92750 to your computer and use it in GitHub Desktop.
Pirple-PythonIsEasy
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Descriptive and Referential discographic data to label, identify, and present audio content
# (songs, podcats, videos) and associated information for display and discovery.
'''
Album Data
Discographic data related to an album specific to a song
'''
albumTitles = "Megalithic Symphony" # title of album
albumArtist = "AWOLNation" # name of the album's artist
albumGenre = "Electronic" # name of primary genre of track
albumSubgenre = "alt Rock" # secondary genre, style
trackProducers = ("Aaron Bruno", "Jimmy Messer", "Brian West") # producer(s) credit
albumReleaseDate = "2010.03.15" # album release date
albumLength = 3172 # album length in seconds
albumComment = "" # album comments
albumRating = 0 # personal rating for album
'''
Song Data
Discographic data related to a specific song
'''
trackTitle = "Sail" # song title
trackGenre = "Electronic" # name of primary genre of track
trackSubgenre = "alt rock" # secondary genre, style
trackNumber = 10 # number of the songtrack
trackProducers = ("Aaron Bruno", "Jimmy Messer", "Brian West") # producer(s) credit
trackReleaseDate = "2011.03.29" # track release date
trackLength = 259 # album length in seconds
trackComment = "Digital Download March 15 2011" # track comments
trackRating = 0 # personal rating for track
releaseType = "Album" # track release version (Radio, Single Album)
'''
Lyrics Data
Discographic data related to a specific song's lyrics
'''
composer = "Aaron Bruno" # lyracist
explicitContent = "none" # indicates whether the track contains explicit content
lyricsLanguage = "English" # language of the sung lyrics
lyricsPublisher = "Aaron Bruno" # publisher representing the lyricist/lyrics contributor
releaseLanguage = "English" # language of the release itself
'''
Artist(s) Data
Discographic data related to a specific song's artist(s)
'''
performanceArtist = "AWOLNation" # main artist on the track
originalArtist = "" # original artist, primaryArtist if original
featuredArtists = "" # any other artists featured on the track
artistType = "Band" # Band, Person, Group, Orchestra, Character, ...
additionalContributors = "Kenny Carkeet" # Anyone else that should be credited
composerTrack = "Aaron Bruno" # who wrote or contributed music for the song
composerPublisher = "" # publisher representing the composer or composer
'''
Publisher & Owner Data
Discographic data related to a specific song's rightsholder(s)
'''
studioLabel = "Red Bull Studios" # studio recording label
recordLabel = "Red Bull Records" # recording label/recording company
compositionOwner = "AWOLNation" # owner of the composition rights
compositionYear = 2010 # year the track was composed
recordingOwner = "AWOLNation" # owner of the sound recording
recordingYear = 2010 # year the recording took place
'''
Media Data
Discographic data related to a specific song's distribution media
'''
discNumber = 1 # disc number of the track
totalDiscs = 1 # total number of discs in the set
totalTracks = 14 # total number of tracks in the album
formatType = "CD" # Audio, Video
mediaFormat = "" # LP, MP3, MP4,
releaseCountry = "US" # country of origin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment