Skip to content

Instantly share code, notes, and snippets.

View jchinson's full-sized avatar

Cody Hinson jchinson

  • Greenville, NC
View GitHub Profile
#!/usr/bin/python3
'''Creates a random playlist of songs from a
source directory. The size of the playlist is specified by the user
in megabytes.'''
#Author: Cody Hinson
import sys
import os
import random
import shutil
#!/usr/bin/python
'''This program will create a random playlist of songs from a
source directory. The size of the playlist is specified by the user
in megabytes'''
#Author: Cody Hinson
import sys
import os
import random
import math