https://github.com/ehcaning/magical-folder-creator-for-movies
Create propper folder for each one of your movies for a better movie management
https://github.com/ehcaning/magical-folder-creator-for-movies
automationtool movie python python3
Last synced: about 1 month ago
JSON representation
Create propper folder for each one of your movies for a better movie management
- Host: GitHub
- URL: https://github.com/ehcaning/magical-folder-creator-for-movies
- Owner: ehcaning
- Created: 2021-08-19T08:49:11.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-19T09:31:59.000Z (almost 4 years ago)
- Last Synced: 2025-04-18T12:19:16.167Z (about 2 months ago)
- Topics: automationtool, movie, python, python3
- Language: Python
- Homepage:
- Size: 292 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Magical folder creator for movies
If you are as lazy as I am, you may need this tool :)
This tool creates a folder for each movie in current directory and move movie and subtitle and etc to created folder. Example:
### Before:
### After:
## Usage:
Just clone this repo somewhere like this:
```bash
$ cd ~/tools
$ git clone [email protected]:Ehcaning/magical_folder_creator_for_movies.git
```
Or if you prefer clone using HTTPS:
```bash
$ git clone https://github.com/Ehcaning/magical_folder_creator_for_movies.git
```Then cd to directories with your movies in it:
```bash
$ cd /somewhere_with_movies_in_it
```
Then run the script like this:
```bash
$ python3 ~/tools/magical_folder_creator_for_movies/magic.py
```
And it's done :DFor easier access to script, you can make an alias for it with this simple command:
```bash
$ echo "alias folderMagic=\"python3 ~/tools/magical_folder_creator_for_movies/magic.py\"" >> ~/.bashrc
```
Or add it manually to `~/.bashrc`
```bash
alias folderMagic="python3 ~/tools/magical_folder_creator_for_movies/magic.py"
```## Tests:
```bash
$ python3 tests.py
```