Search Results

2
votes
1answer
210 views

Python scripted mp3 database, with a php front end

So, here's the deal. I am attempting to write a quick python script that reads the basic id3 tags from an mp3 (artist, album, songname, genre, etc). The python script will use most likely the mut …
2
votes
4answers
812 views

Python Time Seconds to h:m:s

I have a function that returns information in seconds, but I need to store that information in hours:minutes:seconds. Is there an easy way to convert the seconds to this format in python? …
1
vote
4answers
378 views

Directory Walker for Python

I am currently using the directory walker from Here import os class DirectoryWalker: # a forward …
0
votes
3answers
345 views

Python mysql with variables

I am having a hard time using the MySQLdb module to insert information into my database. I need to insert 6 variables into the table. cursor.execute (""" INSERT INTO …
-2
votes

Python Time Seconds to h:m:s

def GetInHMS(seconds): hours = seconds / 3600 seconds -= 3600*hours minutes = seconds / 60 seconds -= 60*minutes if hours == 0: return "%d:%d" % (minutes, secon …