pixiv_down-artist.1 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. .Dd March 31, 2024
  2. .Dt PIXIV_DOWN-ARTIST 1
  3. .Os
  4. .Sh NAME
  5. .Nm pixiv_down
  6. .Cm artist
  7. .Nd download everything by an artist from
  8. .Lk www.pixiv.net
  9. .Sh SYNOPSIS
  10. .Nm
  11. .Cm artist
  12. .Op Fl t | \-type Ar type
  13. .Ar IDs ...
  14. .Nm
  15. .Cm artist
  16. .Op Fl t | \-type Ar type
  17. .Op Fl \-skip-illust Ar offset
  18. .Op Fl \-skip-manga Ar offset
  19. .Op Fl \-skip-novel Ar offset
  20. .Ar ID
  21. .Sh DESCRIPTION
  22. .Nm
  23. .Cm artist
  24. allows you to download all content created by the provided artist
  25. .Ar IDs .
  26. By default, all content types will be downloaded, though this can
  27. be limited with the
  28. .Fl \-type
  29. flag.
  30. .Pp
  31. If you are only downloading the content from one artist (only one
  32. .Ar ID
  33. has been provided), you can specify the offset for each content type
  34. with the
  35. .Fl \-skip-illust ,
  36. .Fl \-skip-manga ,
  37. and
  38. .Fl \-skip-novel
  39. flags.
  40. .Pp
  41. .Nm
  42. .Cm artist
  43. supports downloading the following content types:
  44. .Bl -bullet -compact
  45. .It
  46. Illustrations
  47. .It
  48. Manga
  49. .It
  50. Novels
  51. .It
  52. Ugoira
  53. .El
  54. .Ss Options
  55. .Bl -tag
  56. .It Fl h, \-help
  57. Print the synopsis, a list of options, and some examples.
  58. .It Fl \-skip-illust Ar offset
  59. Skip the first
  60. .Ar offset
  61. amount of illustrations when downloading an artist. This flag
  62. cannot be used with multiple artist
  63. .Ar IDs .
  64. .It Fl \-skip-manga Ar offset
  65. Skip the first
  66. .Ar offset
  67. amount of manga when downloading an artist. This flag cannot be
  68. used with multiple artist
  69. .Ar IDs .
  70. .It Fl \-skip-novel Ar offset
  71. Skip the first
  72. .Ar offset
  73. novels when downloading an artist. This flag cannot be used with
  74. multiple artist
  75. .Ar IDs .
  76. .It Fl t, \-type Ar type
  77. Restrict the content type downloaded to just
  78. .Ar type .
  79. This does not support specifying multiple types. Accepted values
  80. are
  81. .Qq illust ,
  82. .Qq manga ,
  83. and
  84. .Qq novel .
  85. .Sh EXAMPLES
  86. To download everything from a single artist, you simply pass the ID
  87. of the artist as an argument:
  88. .Dl $ pixiv_down artist 35025269
  89. You can download multiple artists in succession by passing all of
  90. their IDs at once:
  91. .Dl $ pixiv_down artist 35025269 18059658 33558705
  92. It's possible to limit the type of content download to just one
  93. type by passing the
  94. .Fl \-type
  95. flag:
  96. .Dl $ pixiv_down artist --type manga 35025269 18059658 33558705
  97. If you were part way through downloading an artist, you can specify
  98. an offset for a particular content type by passing either of the
  99. .Fl \-skip-illust ,
  100. .Fl \-skip-manga ,
  101. or
  102. .Fl \-skip-novel
  103. flags. Any combination of these can be used.
  104. .Dl $ pixiv_down artist --skip-illust 20 --skip-novel 2 35025269
  105. .Sh SEE ALSO
  106. .Xr pixiv_down 1 ,
  107. .Xr pixiv_down-artwork 1 ,
  108. .Xr pixiv_down-daily 1 ,
  109. .Xr pixiv_down-following 1 ,
  110. .Xr pixiv_down-novel 1
  111. .Sh AUTHORS
  112. Written by
  113. .An Mio Aq stigma@disroot.org
  114. .Sh BUGS
  115. .Pp
  116. Please report any bugs you may find at the bug tracker, which can be
  117. found on the website at
  118. .Lk https://yume-neru.neocities.org/p/pixiv_down.html