-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23894b0
commit ebdee84
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name: Repacker | ||
|
||
on: | ||
push: | ||
# push: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 6,14,22 * * *' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# skpick | ||
|
||
Picker for skpick, just bullshit | ||
|
||
Extract from one zip file | ||
|
||
```python | ||
from skpick.pick import pick_from_package | ||
|
||
pick_from_package( | ||
'/your/package.zip', | ||
'/your/directory/to/save', | ||
) | ||
``` | ||
|
||
Extract from multiple zip file from a directory | ||
|
||
```python | ||
from skpick.pick import pick_from_dir_of_packages | ||
|
||
pick_from_dir_of_packages( | ||
'/your/packages/dir', | ||
'/your/directory/to/save', # files from all the packages will be stored to this directory | ||
) | ||
``` |