From 61998e05c013978605d09b54e73d16a581548b32 Mon Sep 17 00:00:00 2001 From: Jackson Taylor Date: Sat, 22 May 2021 21:20:44 -0400 Subject: Initial commit --- README.md | 11 +++++++++++ initial_sorter | 4 ++++ sorter | 4 ++++ sync_libraries | 4 ++++ 4 files changed, 23 insertions(+) create mode 100644 README.md create mode 100755 initial_sorter create mode 100755 sorter create mode 100755 sync_libraries 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!") diff --git a/sorter b/sorter new file mode 100755 index 0000000..82aab3a --- /dev/null +++ b/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!") -- cgit v1.2.3