party
v0.7.6: Pull size limit flag
그냥 재미삼아 던진 것 뿐이야
간단히 말해서 어느 날 밤 심심해서 이 프로젝트를 함께 던져 시간을 보냈습니다.
(맨 위로)
이와 같은 것이 pypi에서 환영받을 수 있을지 확신할 수 없으므로 지금은 여기 github에서 호스팅하고 있습니다. 빠른 설치 지침
최신 버전의 Python을 사용하세요. ^3.9이면 괜찮을 것 같습니다. 3.7 또는 3.8에 대한 지원을 원할 경우 이슈를 열면 됩니다. 일부 입력 항목을 변경하고 해당 항목이 작동하도록 가져오기만 하면 됩니다.
우분투 22.04
apt-get install python3 python3-pip
Arch/Manjaro (저는 아치형에 더 가깝습니다)
sudo pacman -S python python-pip
저장소를 복제하거나 릴리스에서 설치할 수 있습니다.
pip install https://github.com/darkdragn/party/releases/download/v0.7.6/party-0.7.6-py3-none-any.whl
git clone https://github.com/darkdragn/party.git
cd party
pip install .
(맨 위로)
파티에는 4가지 기본 명령이 있습니다.
파티 <명령어>
kemono: Download from kemono
coomer: Download from coomer
update: Checks for and downloads new posts
search: Find creators based on username or id
케모노와 쿠머
옵션의 기본 분석
Usage: party kemono [OPTIONS] SERVICE USER_ID
Quick download command for kemono.party
Arguments:
SERVICE Specify the service to pull from ; Ex(patreon,fanbox,onlyfans)
[required]
USER_ID User id from the url or name from search [required]
Options:
--site TEXT [default: https://kemono.party]
--files / --no-files [default: files]
--exclude-external / --no-exclude-external
[default: exclude-external]
-l, --limit INTEGER Number of posts to parse. Starts from newest
to oldest.
--post-id / --no-post-id Sets file_format to
{ref.post_id}_{ref.filename}, mutually
exclusive with post_title, ordered short and
file_format
-e, --exclude-extension TEXT File extension to exclude
-w, --workers INTEGER Number of open download connections
[default: 4]
--name TEXT If you provided an id in the argument, you
can provide a name here to skip user db
pull/search.
-d, --directory TEXT Specify an output directory
--post-title / --no-post-title Sets file_format to
{ref.post_title}_{ref.filename}, mutually
exclusive with post_id, ordered_short and
file_format [default: no-post-title]
--ordered-short / --no-ordered-short
Sets file_format to {ref.post_id}_{ref.index
:03}.{ref.extension}, mutually exclusive
with post_id, post_title and file_format
[default: no-ordered-short]
--file-format TEXT Used to set the output file format. Mutually
exclusive with post_id, post_title and
ordered short. For custom options, see
post.py for schema fields. For example,
{ref.post_id}_{ref.index:03}_{ref.filename}
would accomplish combining post_id and
ordering the files based on appearance in
the post while keeping the original filename
and extension [default: {ref.filename}]
--help Show this message and exit.
예
kemono에서 무언가 다운로드
party kemono patreon diives
coomer에서 무언가를 다운로드하세요.
party coomer onlyfans belledelphine
coomer에서 다운로드하고 사진을 제외하며 다운로드를 2회로 제한합니다.
party coomer fansly forgottenlovechild -e jpg -e jpeg -e png -w 2
파티는 다운로드하는 동안 기존 파일을 확인하므로 불완전한 아카이브는 kemono/coomer 또는 업데이트를 통해 완료될 수 있습니다.
party update diives
검색은 kemono 및 coomer take의 모든 옵션(예: -e, -w, -d, -l)을 지원합니다.
사용자 검색
party search belk
사용자를 검색하고 대화형으로 결과 선택
party search belk -i
+-------+------------------+--------------------+---------+
| Index | Name | ID | Service |
+-------+------------------+--------------------+---------+
| 0 | Belkos Fanbox | 877689163103764480 | discord |
| 1 | belkadog | 7025886 | patreon |
| 2 | Belksasar3DPrint | 37766530 | patreon |
| 3 | Belko | 39123643 | fanbox |
+-------+------------------+--------------------+---------+
Index selection: : 3
Downloading Belko using default options...
Downloading from user: Belko
0% | | 1/909 [00: 00< 11:57
좀 더 구체적인 검색
party search --site coomer --service fansly forgotten -w 3 -e jpg
+-------+--------------------+--------------------+---------+
| Index | Name | ID | Service |
+-------+--------------------+--------------------+---------+
| 0 | forgottenlovechild | 434514358358253568 | fansly |
+-------+--------------------+--------------------+---------+
(맨 위로)