From d2e8cfb023ba4248664a46da996f58aa7efa9bbc Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 13:59:15 -0500 Subject: [PATCH 1/9] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5cc09cc..35fcb0e 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,14 @@ I will note that **I am not an expert**. I taught myself how to use python and b ### This code assumes you have installed the following: +### Stand Alone - **[chbrown/overdrive](https://github.com/chbrown/overdrive)** - **[python3](https://www.python.org/)** -- **[pydub](https://github.com/jiaaro/pydub/)** - **[ffmpeg](https://github.com/jiaaro/pydub#getting-ffmpeg-set-up)** -- **[mutagen](https://mutagen.readthedocs.io/en/latest/)** -Reference the linked repositories for tips and tricks on setting up each one. (pydub & mutagen included in requirements.txt but ffmpeg needs to be installed globally as the python version results in occassional glitches.) +### In requirements.txt +- **[pydub](https://github.com/jiaaro/pydub/)** +- **[mutagen](https://mutagen.readthedocs.io/en/latest/)** ## Organization I've organized my directory into the following folder structures mainly because I find it easier to follow the process when I'm visualizing the steps, but it should go without saying that you can mix and match this to your liking. From 7d6bfe03cffb3b38d95acda5cf3893e78a1ad273 Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 13:59:51 -0500 Subject: [PATCH 2/9] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 35fcb0e..a46378e 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,11 @@ I will note that **I am not an expert**. I taught myself how to use python and b ### This code assumes you have installed the following: -### Stand Alone +#### Stand Alone - **[chbrown/overdrive](https://github.com/chbrown/overdrive)** -- **[python3](https://www.python.org/)** - **[ffmpeg](https://github.com/jiaaro/pydub#getting-ffmpeg-set-up)** -### In requirements.txt +#### In requirements.txt - **[pydub](https://github.com/jiaaro/pydub/)** - **[mutagen](https://mutagen.readthedocs.io/en/latest/)** From 68dd26d1c9b7fd6e3a69c3d6695fd0c1518132ea Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:00:04 -0500 Subject: [PATCH 3/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a46378e..c4fe33b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ I will note that **I am not an expert**. I taught myself how to use python and b ### This code assumes you have installed the following: -#### Stand Alone +#### Stand alone - **[chbrown/overdrive](https://github.com/chbrown/overdrive)** - **[ffmpeg](https://github.com/jiaaro/pydub#getting-ffmpeg-set-up)** From 7cb2c9157acc900de06fdc9628dbacd356e01d78 Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:00:39 -0500 Subject: [PATCH 4/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4fe33b..298c314 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ I will note that **I am not an expert**. I taught myself how to use python and b ### This code assumes you have installed the following: -#### Stand alone +#### Standalone - **[chbrown/overdrive](https://github.com/chbrown/overdrive)** - **[ffmpeg](https://github.com/jiaaro/pydub#getting-ffmpeg-set-up)** From aa008703a2b2e3fc1ad804b08882a50494103486 Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:05:53 -0500 Subject: [PATCH 5/9] Update README.md --- README.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 298c314..d6b45d9 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,21 @@ I will note that **I am not an expert**. I taught myself how to use python and b I've organized my directory into the following folder structures mainly because I find it easier to follow the process when I'm visualizing the steps, but it should go without saying that you can mix and match this to your liking. - BOOKS - - 00_ARCHIVE - - 01_ANNEX - - 02_CIRCULATION - - 03_BOOKSHELF + ├── 00_ARCHIVE + ├── 01_ANNEX + ├── 02_CIRCULATION + └── 03_BOOKSHELF +- QUEUE + └── Downloaded .odm's + + root_directory/ +├── BOOKS +│ ├── 00_ARCHIVE +│ └── file2.ext +├── sub_directory2/ +│ ├── file3.ext +│ └── file4.ext +└── file_in_root.ext ## Setup ### Config From 32a6562ed656792920f46538aedc9bf8fa4d4834 Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:07:19 -0500 Subject: [PATCH 6/9] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6b45d9..ff23bf6 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ I will note that **I am not an expert**. I taught myself how to use python and b ## Organization I've organized my directory into the following folder structures mainly because I find it easier to follow the process when I'm visualizing the steps, but it should go without saying that you can mix and match this to your liking. +''' - BOOKS ├── 00_ARCHIVE ├── 01_ANNEX @@ -33,7 +34,7 @@ I've organized my directory into the following folder structures mainly because └── 03_BOOKSHELF - QUEUE └── Downloaded .odm's - +''' root_directory/ ├── BOOKS │ ├── 00_ARCHIVE From 3da546c0156ec57c0aa3dd618b7d553d68d5f6a6 Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:08:23 -0500 Subject: [PATCH 7/9] Update README.md --- README.md | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index ff23bf6..9cf8637 100644 --- a/README.md +++ b/README.md @@ -26,23 +26,13 @@ I will note that **I am not an expert**. I taught myself how to use python and b ## Organization I've organized my directory into the following folder structures mainly because I find it easier to follow the process when I'm visualizing the steps, but it should go without saying that you can mix and match this to your liking. -''' - BOOKS - ├── 00_ARCHIVE - ├── 01_ANNEX - ├── 02_CIRCULATION - └── 03_BOOKSHELF + - 00_ARCHIVE + - 01_ANNEX + - 02_CIRCULATION + - 03_BOOKSHELF - QUEUE - └── Downloaded .odm's -''' - root_directory/ -├── BOOKS -│ ├── 00_ARCHIVE -│ └── file2.ext -├── sub_directory2/ -│ ├── file3.ext -│ └── file4.ext -└── file_in_root.ext + - Downloaded .odm's ## Setup ### Config From 740a217d86be1353c8ce2507b90e69f341abd480 Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:10:41 -0500 Subject: [PATCH 8/9] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9cf8637..2422311 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,12 @@ I will note that **I am not an expert**. I taught myself how to use python and b I've organized my directory into the following folder structures mainly because I find it easier to follow the process when I'm visualizing the steps, but it should go without saying that you can mix and match this to your liking. - BOOKS - - 00_ARCHIVE - - 01_ANNEX - - 02_CIRCULATION - - 03_BOOKSHELF + - 00_ARCHIVE + - 01_ANNEX + - 02_CIRCULATION + - 03_BOOKSHELF - QUEUE - - Downloaded .odm's + - Downloaded .odm's ## Setup ### Config From 40d71542cb25ebd6b81cae4ca56c05a80206afff Mon Sep 17 00:00:00 2001 From: bender <123113548+LeLawnGames@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:11:52 -0500 Subject: [PATCH 9/9] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2422311..1fbce04 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,12 @@ I will note that **I am not an expert**. I taught myself how to use python and b I've organized my directory into the following folder structures mainly because I find it easier to follow the process when I'm visualizing the steps, but it should go without saying that you can mix and match this to your liking. - BOOKS - - 00_ARCHIVE - - 01_ANNEX - - 02_CIRCULATION - - 03_BOOKSHELF + - 00_ARCHIVE + - 01_ANNEX + - 02_CIRCULATION + - 03_BOOKSHELF - QUEUE - - Downloaded .odm's + - Downloaded .odm's ## Setup ### Config