diff options
-rw-r--r-- | README.md | 11 | ||||
-rwxr-xr-x | initial_sorter | 4 | ||||
-rwxr-xr-x | sorter | 4 | ||||
-rwxr-xr-x | sync_libraries | 4 |
4 files changed, 23 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..24ae12d --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Jackson's Awesome Music Organizing Scripts - JAMOS + +## Purpose +These are the scripts that I use while organizing music that I download + +1. Sorting and Tagging +Program to take NEW music and sort it where it goes, with most of the apropriate metadata +2. Initial Sorting +Script to take exisiting music and organize it, and suit new naming conventions +3. Script to Sync Changes +Instead of copying large amounts of files each time I add a new song or 2, this will sync only the changes. diff --git a/initial_sorter b/initial_sorter new file mode 100755 index 0000000..c23e5a7 --- /dev/null +++ b/initial_sorter @@ -0,0 +1,4 @@ +#!/usr/bin/python3 + +if __name__ == "__main__": + print("Initial Sorter!") @@ -0,0 +1,4 @@ +#!/usr/bin/python3 + +if __name__ == "__main__": + print("Sorter!") diff --git a/sync_libraries b/sync_libraries new file mode 100755 index 0000000..6a86399 --- /dev/null +++ b/sync_libraries @@ -0,0 +1,4 @@ +#!/usr/bin/python3 + +if __name__ == "__main__": + print("Syncing Libraries!") |