Organize the Slippi game files in your filesystem according to their attributes
Project description
treefrog
Description
Organize the Slippi game files in your filesystem according to their attributes.
Installation
With Python installed, simply run the following command to add the package to your project.
python -m pip install treefrog
Usage
Module
Currently, the package supports organizing the files according to a supplied ordering of parsers, flattening the files against the supplied root folder, and renaming all the files according to their attributes. These may be accomplished programmatically with the use of the Tree class or through the command-line interface.
Organize
The organize method serves the purpose of moving each game file found (deeply or otherwise) under the root folder to its proper location according to the supplied ordering of parsers. If no ordering is given, then treefrog will use its default. Here is a simple example of calling this method:
from treefrog import Tree
from treefrog.parse.parsers import year, month, matchup, stage
ordering = (
year,
month,
matchup,
stage
) # An iterable of the desired levels of the hierarchy
with Tree("slp/", show_progress=True) as tree:
tree.organize(ordering) # Organize the files into subfolders according to the supplied attributes
Feel free to provide your own logic for formatting the names of the folders at a particular level with a corresponding iterable of functions:
from treefrog import Tree
from treefrog.parse.parsers import year, month, stage
from treefrog.parse.utils import character_name, most_used_character, opponent, user
def ordered_matchup(game):
p1 = user(game, "DTB#566")
p2 = opponent(game, "DTB#566")
return f"{character_name(most_used_character(p1))} vs {character_name(most_used_character(p2))}"
ordering = (
year,
month,
lambda game: opponent(game, "DTB#566").netplay.code,
ordered_matchup,
stage
)
with Tree("slp/", show_progress=True) as tree:
tree.organize(ordering)
Any custom parser you provide will need to be a Callable that takes in a Game instance and returns a str.
Further, you can use cascading methods to simplify your programming. Each of the methods organize, flatten, and rename will return a reference to the instance object on which it was called. Something like this: tree.organize().rename() will both organize and rename the game files.
Flatten
The flatten method serves the simple purpose of moving each game file found (deeply or otherwise) under the root folder back to the root folder itself. Here's an example of what calling this method may look like:
from treefrog import Tree
tree = Tree("slp/")
tree.flatten().resolve()
Note that you do not have to use Tree with a context manager. If you do not use the with keyword as in the first couple of examples, you will need to end your operations with a call to the resolve method in order to see the changes reflected in your filesystem.
Rename
The rename method simply renames each game file according to its attributes. Without a rename function supplied, treefrog will use the default_filename function found in the treefrog.rename module. Alternatively, you may provide your own rename function as shown below:
from treefrog import Tree
from treefrog.parse.parsers import stage, timestamp
from treefrog.parse.utils import character_name, characters
def create_filename(game: Game):
p1, p2 = tuple(characters(game))
return f"{timestamp(game)} - {character_name(p1)} vs {character_name(p2)} - {stage(game)}.slp"
with Tree("slp/") as tree:
tree.rename(create_filename=create_filename)
Command-Line
This is also command-line program, and can be executed as follows:
python -m treefrog [-h] [-g GLOB] [-c NETPLAY_CODE] [-p] [-d] [-o | -f] [-r] root_folder
Options:
| Argument | Description |
|---|---|
root_folder |
Slippi folder root path |
-h, --help |
show this help message and exit |
-g GLOB, --glob GLOB |
The glob pattern to search with |
-c NETPLAY_CODE, --netplay-code NETPLAY_CODE |
Netplay code (e.g. DTB#566) |
-p, --show-progress |
Whether to show a progress bar |
-d, --default-rename |
Whether to restore the filenames to their defaults |
-o, --organize |
Whether to organize the folder hierarchy |
-f, --flatten |
Whether to flatten your Slippi game files to a shared parent folder |
-r, --rename |
Whether to rename the files according to their features |
For example, the following command will organize all the game files under the slp directory with a progress bar.
python -m treefrog "slp" -c "DTB#566" -op
Feel free to check out the docs for more information.
License
This software is released under the terms of MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file treefrog-0.7.1.tar.gz.
File metadata
- Download URL: treefrog-0.7.1.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.9 Linux/5.4.0-1046-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5477c6c19458ef9bf37b0111c20927a4e7cacb258276ae457b4dc1b4ffae13d0
|
|
| MD5 |
36917c9f80b7efcbdccc334e6b5e4017
|
|
| BLAKE2b-256 |
1501f3bf1be45769201113a7c9148c295f9c2727cc08d826dc3df542e7455304
|
File details
Details for the file treefrog-0.7.1-py3-none-any.whl.
File metadata
- Download URL: treefrog-0.7.1-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.9 Linux/5.4.0-1046-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a00a4794015366fb53cc913c45b0510ffc71e37eee3da646bf579df47235d2b
|
|
| MD5 |
2730af374b7e2db6d2cbbeb1e8cc0ea6
|
|
| BLAKE2b-256 |
5e49124b38370e2f2b0f34354302b2d5d28a0faba2d369efc7da5e0f5e307f7d
|