mirror of
https://github.com/cooperhammond/irs.git
synced 2024-12-22 17:35:28 +00:00
18 lines
378 B
Python
18 lines
378 B
Python
from irs.ripper import Ripper
|
|
import os
|
|
|
|
if not os.path.exists("test_dir"):
|
|
os.makedirs("test_dir")
|
|
Ripper({
|
|
"post_processors": {
|
|
"location": "test_dir/",
|
|
"organize": True,
|
|
}
|
|
}).album("Da Frame 2R / Matador")
|
|
|
|
Ripper({
|
|
"post_processors": {
|
|
"location": "test_dir/",
|
|
"organize": True,
|
|
}
|
|
}).playlist("IRS Testing", "prakkillian") |