Skip to content

Commit

Permalink
dev(narugo): add README
Browse files Browse the repository at this point in the history
  • Loading branch information
narugo1992 committed Dec 28, 2023
1 parent 23894b0 commit ebdee84
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/repack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Repacker

on:
push:
# push:
workflow_dispatch:
schedule:
- cron: '0 6,14,22 * * *'
Expand Down
22 changes: 22 additions & 0 deletions README.md
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
)
```

0 comments on commit ebdee84

Please sign in to comment.