diff --git a/lib/pyItunes/Library.py b/lib/pyItunes/Library.py
deleted file mode 100644
index 3118fb7b..00000000
--- a/lib/pyItunes/Library.py
+++ /dev/null
@@ -1,41 +0,0 @@
-from lib.pyItunes.Song import Song
-import time
-class Library:
- def __init__(self,dictionary):
- self.songs = self.parseDictionary(dictionary)
-
- def parseDictionary(self,dictionary):
- songs = []
- format = "%Y-%m-%dT%H:%M:%SZ"
- for song,attributes in dictionary.iteritems():
- s = Song()
- s.name = attributes.get('Name')
- s.artist = attributes.get('Artist')
- s.album_artist = attributes.get('Album Aritst')
- s.composer = attributes.get('Composer')
- s.album = attributes.get('Album')
- s.genre = attributes.get('Genre')
- s.kind = attributes.get('Kind')
- if attributes.get('Size'):
- s.size = int(attributes.get('Size'))
- s.total_time = attributes.get('Total Time')
- s.track_number = attributes.get('Track Number')
- if attributes.get('Year'):
- s.year = int(attributes.get('Year'))
- if attributes.get('Date Modified'):
- s.date_modified = time.strptime(attributes.get('Date Modified'),format)
- if attributes.get('Date Added'):
- s.date_added = time.strptime(attributes.get('Date Added'),format)
- if attributes.get('Bit Rate'):
- s.bit_rate = int(attributes.get('Bit Rate'))
- if attributes.get('Sample Rate'):
- s.sample_rate = int(attributes.get('Sample Rate'))
- s.comments = attributes.get("Comments ")
- if attributes.get('Rating'):
- s.rating = int(attributes.get('Rating'))
- if attributes.get('Play Count'):
- s.play_count = int(attributes.get('Play Count'))
- if attributes.get('Location'):
- s.location = attributes.get('Location')
- songs.append(s)
- return songs
\ No newline at end of file
diff --git a/lib/pyItunes/Song.py b/lib/pyItunes/Song.py
deleted file mode 100644
index c59759e6..00000000
--- a/lib/pyItunes/Song.py
+++ /dev/null
@@ -1,46 +0,0 @@
-class Song:
- """
- Song Attributes:
- name (String)
- artist (String)
- album_arist (String)
- composer = None (String)
- album = None (String)
- genre = None (String)
- kind = None (String)
- size = None (Integer)
- total_time = None (Integer)
- track_number = None (Integer)
- year = None (Integer)
- date_modified = None (Time)
- date_added = None (Time)
- bit_rate = None (Integer)
- sample_rate = None (Integer)
- comments = None (String)
- rating = None (Integer)
- album_rating = None (Integer)
- play_count = None (Integer)
- location = None (String)
- """
- name = None
- artist = None
- album_arist = None
- composer = None
- album = None
- genre = None
- kind = None
- size = None
- total_time = None
- track_number = None
- year = None
- date_modified = None
- date_added = None
- bit_rate = None
- sample_rate = None
- comments = None
- rating = None
- album_rating = None
- play_count = None
- location = None
-
- #title = property(getTitle,setTitle)
\ No newline at end of file
diff --git a/lib/pyItunes/XMLLibraryParser.py b/lib/pyItunes/XMLLibraryParser.py
deleted file mode 100644
index 6824aee7..00000000
--- a/lib/pyItunes/XMLLibraryParser.py
+++ /dev/null
@@ -1,42 +0,0 @@
-import re
-class XMLLibraryParser:
- def __init__(self,xmlLibrary):
- f = open(xmlLibrary)
- s = f.read()
- lines = s.split("\n")
- self.dictionary = self.parser(lines)
-
- def getValue(self,restOfLine):
- value = re.sub("<.*?>","",restOfLine)
- u = unicode(value,"utf-8")
- cleanValue = u.encode("ascii","xmlcharrefreplace")
- return cleanValue
-
- def keyAndRestOfLine(self,line):
- rawkey = re.search('(.*?)',line).group(0)
- key = re.sub("*key>","",rawkey)
- restOfLine = re.sub(".*?","",line).strip()
- return key,restOfLine
-
- def parser(self,lines):
- dicts = 0
- songs = {}
- inSong = False
- for line in lines:
- if re.search('',line):
- dicts += 1
- if re.search('',line):
- dicts -= 1
- inSong = False
- songs[songkey] = temp
- if dicts == 2 and re.search('(.*?)',line):
- rawkey = re.search('(.*?)',line).group(0)
- songkey = re.sub("*key>","",rawkey)
- inSong = True
- temp = {}
- if dicts == 3 and re.search('(.*?)',line):
- key,restOfLine = self.keyAndRestOfLine(line)
- temp[key] = self.getValue(restOfLine)
- if len(songs) > 0 and dicts < 2:
- return songs
- return songs
\ No newline at end of file
diff --git a/lib/pyItunes/__init__.py b/lib/pyItunes/__init__.py
deleted file mode 100644
index eb66d826..00000000
--- a/lib/pyItunes/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from lib.pyItunes.XMLLibraryParser import XMLLibraryParser
-from lib.pyItunes.Library import Library
-from lib.pyItunes.Song import Song
\ No newline at end of file