Skip to content

Instantly share code, notes, and snippets.

View xDHILEx's full-sized avatar

Anthony Fadale xDHILEx

View GitHub Profile
@xDHILEx
xDHILEx / test.py
Created October 26, 2015 19:09
Building a JSON object of Band and Album information.
import json
class Artist(object):
def __init__(self, artistname):
self.artistname = artistname
self.albums = []
class Album(object):
def __init__(self, name):
self.name = name