aria2c.rst 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455
  1. aria2c(1)
  2. =========
  3. SYNOPSIS
  4. --------
  5. **aria2c** [<OPTIONS>] [<URI>|<MAGNET>|<TORRENT_FILE>|<METALINK_FILE>] ...
  6. DESCRIPTION
  7. -----------
  8. aria2 is a utility for downloading files. The supported protocols are
  9. HTTP(S), FTP, SFTP, BitTorrent, and Metalink. aria2 can download a
  10. file from multiple sources/protocols and tries to utilize your maximum
  11. download bandwidth. It supports downloading a file from HTTP(S)/FTP
  12. /SFTP and BitTorrent at the same time, while the data downloaded from
  13. HTTP(S)/FTP/SFTP is uploaded to the BitTorrent swarm. Using Metalink
  14. chunk checksums, aria2 automatically validates chunks of data while
  15. downloading a file.
  16. OPTIONS
  17. -------
  18. .. note::
  19. Most FTP related options are applicable to SFTP as well.
  20. Some options are not effective against SFTP (e.g., :option:`--ftp-pasv`)
  21. Basic Options
  22. ~~~~~~~~~~~~~
  23. .. option:: -d, --dir=<DIR>
  24. The directory to store the downloaded file.
  25. .. option:: -i, --input-file=<FILE>
  26. Downloads the URIs listed in ``FILE``. You can specify multiple sources for a
  27. single entity by putting multiple URIs on a single line separated by the
  28. :kbd:`TAB` character.
  29. Additionally, options can be specified after each URI line. Option lines
  30. must start with one or more white space characters (:kbd:`SPACE` or :kbd:`TAB`)
  31. and must only contain one option per line.
  32. Input files can use gzip compression.
  33. When ``FILE`` is specified as ``-``, aria2 will read the input from ``stdin``.
  34. See the `Input File`_ subsection for details.
  35. See also the :option:`--deferred-input` option.
  36. See also the :option:`--save-session` option.
  37. .. option:: -l, --log=<LOG>
  38. The file name of the log file. If ``-`` is specified, log is written to
  39. ``stdout``. If empty string("") is specified, or this option is omitted,
  40. no log is written to disk at all.
  41. .. option:: -j, --max-concurrent-downloads=<N>
  42. Set the maximum number of parallel downloads for every queue item.
  43. See also the :option:`--split <-s>` option.
  44. Default: ``5``
  45. .. note::
  46. :option:`--max-concurrent-downloads` limits the number of items
  47. which are downloaded concurrently. :option:`--split <-s>` and
  48. :option:`--min-split-size <-k>` affect the number of connections
  49. inside each item. Imagine that you have an input file (see
  50. :option:`--input-file <-i>` option) like this:
  51. .. code-block:: text
  52. http://example.com/foo
  53. http://example.com/bar
  54. Here is 2 download items. aria2 can download these items
  55. concurrently if the value more than or equal 2 is given to
  56. :option:`--max-concurrent-downloads`. In each download item, you
  57. can configure the number of connections using :option:`--split
  58. <-s>` and/or :option:`--min-split-size <-k>`, etc.
  59. .. option:: -V, --check-integrity [true|false]
  60. Check file integrity by validating piece hashes or a hash of entire
  61. file. This option has effect only in BitTorrent, Metalink downloads
  62. with checksums or HTTP(S)/FTP downloads with
  63. :option:`--checksum` option. If
  64. piece hashes are provided, this option can detect damaged portions
  65. of a file and re-download them. If a hash of entire file is
  66. provided, hash check is only done when file has been already
  67. download. This is determined by file length. If hash check fails,
  68. file is re-downloaded from scratch. If both piece hashes and a hash
  69. of entire file are provided, only piece hashes are used. Default:
  70. ``false``
  71. .. option:: -c, --continue [true|false]
  72. Continue downloading a partially downloaded file.
  73. Use this option to resume a download started by a web browser or another
  74. program which downloads files sequentially from the beginning.
  75. Currently this option is only applicable to HTTP(S)/FTP downloads.
  76. .. option:: -h, --help[=<TAG>|<KEYWORD>]
  77. The help messages are classified with tags. A tag starts with
  78. ``#``. For example, type ``--help=#http`` to get the usage for the
  79. options tagged with ``#http``. If non-tag word is given, print the
  80. usage for the options whose name includes that word. Available
  81. Values: ``#basic``, ``#advanced``, ``#http``, ``#https``, ``#ftp``,
  82. ``#metalink``, ``#bittorrent``, ``#cookie``, ``#hook``, ``#file``, ``#rpc``,
  83. ``#checksum``, ``#experimental``, ``#deprecated``, ``#help``, ``#all``
  84. Default: ``#basic``
  85. HTTP/FTP/SFTP Options
  86. ~~~~~~~~~~~~~~~~~~~~~
  87. .. option:: --all-proxy=<PROXY>
  88. Use a proxy server for all protocols. To override a previously
  89. defined proxy, use "". You also can override this setting and specify a
  90. proxy server for a particular protocol using :option:`--http-proxy`,
  91. :option:`--https-proxy` and :option:`--ftp-proxy` options. This affects all
  92. downloads.
  93. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``.
  94. See also `ENVIRONMENT`_ section.
  95. .. note::
  96. If user and password are embedded in proxy URI and they are also
  97. specified by *--{http,https,ftp,all}-proxy-{user,passwd}* options,
  98. those specified later override prior options. For example, if you specified
  99. ``http-proxy-user=myname``, ``http-proxy-passwd=mypass`` in aria2.conf and
  100. you specified ``--http-proxy="http://proxy"`` on the command-line, then
  101. you'd get HTTP proxy ``http://proxy`` with user ``myname`` and password
  102. ``mypass``.
  103. Another example: if you specified on the command-line
  104. ``--http-proxy="http://user:pass@proxy" --http-proxy-user="myname"
  105. --http-proxy-passwd="mypass"``, then you'd get HTTP proxy
  106. ``http://proxy`` with user ``myname`` and password ``mypass``.
  107. One more example: if you specified in command-line ``--http-proxy-user="myname"
  108. --http-proxy-passwd="mypass" --http-proxy="http://user:pass@proxy"``,
  109. then you'd get HTTP proxy ``http://proxy`` with user ``user`` and password
  110. ``pass``.
  111. .. option:: --all-proxy-passwd=<PASSWD>
  112. Set password for :option:`--all-proxy` option.
  113. .. option:: --all-proxy-user=<USER>
  114. Set user for :option:`--all-proxy` option.
  115. .. option:: --checksum=<TYPE>=<DIGEST>
  116. Set checksum. TYPE is hash type. The supported hash type is listed
  117. in ``Hash Algorithms`` in ``aria2c -v``. DIGEST is hex digest. For
  118. example, setting sha-1 digest looks like this:
  119. ``sha-1=0192ba11326fe2298c8cb4de616f4d4140213838`` This option applies
  120. only to HTTP(S)/FTP downloads.
  121. .. option:: --connect-timeout=<SEC>
  122. Set the connect timeout in seconds to establish connection to
  123. HTTP/FTP/proxy server. After the connection is established, this
  124. option makes no effect and :option:`--timeout <-t>` option is used instead.
  125. Default: ``60``
  126. .. option:: --dry-run [true|false]
  127. If ``true`` is given, aria2 just checks whether the remote file is
  128. available and doesn't download data. This option has effect on
  129. HTTP/FTP download. BitTorrent downloads are canceled if ``true`` is
  130. specified. Default: ``false``
  131. .. option:: --lowest-speed-limit=<SPEED>
  132. Close connection if download speed is lower than or equal to this
  133. value(bytes per sec).
  134. ``0`` means aria2 does not have a lowest speed limit.
  135. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  136. This option does not affect BitTorrent downloads.
  137. Default: ``0``
  138. .. option:: -x, --max-connection-per-server=<NUM>
  139. The maximum number of connections to one server for each download.
  140. Default: ``1``
  141. .. option:: --max-file-not-found=<NUM>
  142. If aria2 receives "file not found" status from the remote HTTP/FTP
  143. servers NUM times without getting a single byte, then force the
  144. download to fail. Specify ``0`` to disable this option. This options
  145. is effective only when using HTTP/FTP servers. The number of retry
  146. attempt is counted toward :option:`--max-tries`, so it should be
  147. configured too.
  148. Default: ``0``
  149. .. option:: -m, --max-tries=<N>
  150. Set number of tries. ``0`` means unlimited.
  151. See also :option:`--retry-wait`.
  152. Default: ``5``
  153. .. option:: -k, --min-split-size=<SIZE>
  154. aria2 does not split less than 2*SIZE byte range. For example,
  155. let's consider downloading 20MiB file. If SIZE is 10M, aria2 can
  156. split file into 2 range [0-10MiB) and [10MiB-20MiB) and download it
  157. using 2 sources(if :option:`--split <-s>` >= 2, of course). If SIZE is 15M,
  158. since 2*15M > 20MiB, aria2 does not split file and download it using
  159. 1 source. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  160. Possible Values: ``1M`` -``1024M`` Default: ``20M``
  161. .. option:: --netrc-path=<FILE>
  162. Specify the path to the netrc file.
  163. Default: ``$(HOME)/.netrc``
  164. .. note::
  165. Permission of the .netrc file must be 600. Otherwise, the file
  166. will be ignored.
  167. .. option:: -n, --no-netrc [true|false]
  168. Disables netrc support. netrc support is enabled by default.
  169. .. note::
  170. netrc file is only read at the startup if
  171. :option:`--no-netrc <-n>` is ``false``.
  172. So if :option:`--no-netrc <-n>` is ``true`` at the startup,
  173. no netrc is available throughout the session.
  174. You cannot get netrc enabled even if you send
  175. :option:`--no-netrc=false <-n>` using
  176. :func:`aria2.changeGlobalOption`.
  177. .. option:: --no-proxy=<DOMAINS>
  178. Specify a comma separated list of host names, domains and network addresses
  179. with or without a subnet mask where no proxy should be used.
  180. .. note::
  181. For network addresses with a subnet mask, both IPv4 and IPv6 addresses work.
  182. The current implementation does not resolve the host name in an URI to compare
  183. network addresses specified in :option:`--no-proxy`. So it is only effective
  184. if URI has numeric IP addresses.
  185. .. option:: -o, --out=<FILE>
  186. The file name of the downloaded file. It is always relative to the
  187. directory given in :option:`--dir <-d>` option. When the
  188. :option:`--force-sequential <-Z>` option is used, this option is
  189. ignored.
  190. .. note::
  191. You cannot specify a file name for Metalink or BitTorrent downloads.
  192. The file name specified here is only used when the URIs fed to aria2
  193. are given on the command line directly, but not when using
  194. :option:`--input-file <-i>`, :option:`--force-sequential <-Z>` option.
  195. Example:
  196. .. code-block:: console
  197. $ aria2c -o myfile.zip "http://mirror1/file.zip" "http://mirror2/file.zip"
  198. .. option:: --proxy-method=<METHOD>
  199. Set the method to use in proxy request. METHOD is either ``get`` or
  200. ``tunnel``. HTTPS downloads always use ``tunnel`` regardless of this
  201. option.
  202. Default: ``get``
  203. .. option:: -R, --remote-time [true|false]
  204. Retrieve timestamp of the remote file from the remote HTTP/FTP
  205. server and if it is available, apply it to the local file.
  206. Default: ``false``
  207. .. option:: --reuse-uri [true|false]
  208. Reuse already used URIs if no unused URIs are left.
  209. Default: ``true``
  210. .. option:: --retry-wait=<SEC>
  211. Set the seconds to wait between retries. When ``SEC > 0``, aria2 will
  212. retry downloads when the HTTP server returns a 503 response. Default:
  213. ``0``
  214. .. option:: --server-stat-of=<FILE>
  215. Specify the file name to which performance profile of the servers is
  216. saved. You can load saved data using :option:`--server-stat-if` option. See
  217. `Server Performance Profile`_
  218. subsection below for file format.
  219. .. option:: --server-stat-if=<FILE>
  220. Specify the file name to load performance profile of the servers. The
  221. loaded data will be used in some URI selector such as ``feedback``.
  222. See also :option:`--uri-selector` option. See
  223. `Server Performance Profile`_
  224. subsection below for file format.
  225. .. option:: --server-stat-timeout=<SEC>
  226. Specifies timeout in seconds to invalidate performance profile of
  227. the servers since the last contact to them.
  228. Default: ``86400`` (24hours)
  229. .. option:: -s, --split=<N>
  230. Download a file using N connections. If more than N URIs are given,
  231. first N URIs are used and remaining URIs are used for backup. If
  232. less than N URIs are given, those URIs are used more than once so
  233. that N connections total are made simultaneously. The number of
  234. connections to the same host is restricted by the
  235. :option:`--max-connection-per-server <-x>` option.
  236. See also the :option:`--min-split-size <-k>` option.
  237. Default: ``5``
  238. .. note::
  239. Some Metalinks regulate the number of servers to connect. aria2
  240. strictly respects them. This means that if Metalink defines the
  241. ``maxconnections`` attribute lower than N, then aria2 uses the
  242. value of this lower value instead of N.
  243. .. option:: --stream-piece-selector=<SELECTOR>
  244. Specify piece selection algorithm used in HTTP/FTP download. A piece is a
  245. fixed length segment which is downloaded in parallel in a segmented download.
  246. Default: ``default``.
  247. default
  248. Select a piece to reduce the number of connections established.
  249. This is reasonable default behavior because establishing a connection is an
  250. expensive operation.
  251. inorder
  252. Select a piece closest to the beginning of the file. This is useful for
  253. viewing movies while downloading. :option:`--enable-http-pipelining` option
  254. may be useful to reduce re-connection overhead. Note that aria2 honors
  255. :option:`--min-split-size <-k>` option, so it will be necessary to specify
  256. a reasonable value to :option:`--min-split-size <-k>` option.
  257. random
  258. Select a piece randomly. Like ``inorder``, :option:`--min-split-size <-k>`
  259. option is honored.
  260. geom
  261. When starting to download a file, select a piece closest to the beginning
  262. of the file like ``inorder``, but then exponentially increases space
  263. between pieces.
  264. This reduces the number of connections established, while
  265. at the same time downloads the beginning part of the file first. This is
  266. useful for viewing movies while downloading.
  267. .. option:: -t, --timeout=<SEC>
  268. Set timeout in seconds.
  269. Default: ``60``
  270. .. option:: --uri-selector=<SELECTOR>
  271. Specify URI selection algorithm. The possible values are ``inorder``,
  272. ``feedback`` and ``adaptive``. If ``inorder`` is given, URI is tried in
  273. the order appeared in the URI list. If ``feedback`` is given, aria2
  274. uses download speed observed in the previous downloads and choose
  275. fastest server in the URI list. This also effectively skips dead
  276. mirrors. The observed download speed is a part of performance
  277. profile of servers mentioned in :option:`--server-stat-of` and
  278. :option:`--server-stat-if` options. If ``adaptive`` is given, selects one of
  279. the best mirrors for the first and reserved connections. For
  280. supplementary ones, it returns mirrors which has not been tested
  281. yet, and if each of them has already been tested, returns mirrors
  282. which has to be tested again. Otherwise, it doesn't select anymore
  283. mirrors. Like ``feedback``, it uses a performance profile of servers.
  284. Default: ``feedback``
  285. HTTP Specific Options
  286. ~~~~~~~~~~~~~~~~~~~~~
  287. .. option:: --ca-certificate=<FILE>
  288. Use the certificate authorities in FILE to verify the peers.
  289. The certificate file must be in PEM format and can contain multiple CA
  290. certificates.
  291. Use :option:`--check-certificate` option to enable verification.
  292. .. note::
  293. If you build with OpenSSL or the recent version of GnuTLS which
  294. has ``gnutls_certificate_set_x509_system_trust()`` function and
  295. the library is properly configured to locate the system-wide CA
  296. certificates store, aria2 will automatically load those
  297. certificates at the startup.
  298. .. note::
  299. *WinTLS* and *AppleTLS* do not support this option. Instead you will
  300. have to import the certificate into the OS trust store.
  301. .. option:: --certificate=<FILE>
  302. Use the client certificate in FILE. The certificate must be
  303. either in PKCS12 (.p12, .pfx) or in PEM format.
  304. PKCS12 files must contain the certificate, a key and optionally a chain
  305. of additional certificates. Only PKCS12 files with a blank import password
  306. can be opened!
  307. When using PEM, you have to specify the private key via :option:`--private-key`
  308. as well.
  309. .. note::
  310. *WinTLS* does not support PEM files at the moment. Users have to use PKCS12
  311. files.
  312. .. note::
  313. *AppleTLS* users should use the KeyChain Access utility to import the client
  314. certificate and get the SHA-1 fingerprint from the Information dialog
  315. corresponding to that certificate.
  316. To start aria2c use `--certificate=<SHA-1>`.
  317. Alternatively PKCS12 files are also supported. PEM files, however, are not
  318. supported.
  319. .. option:: --check-certificate [true|false]
  320. Verify the peer using certificates specified in :option:`--ca-certificate` option.
  321. Default: ``true``
  322. .. option:: --http-accept-gzip [true|false]
  323. Send ``Accept-Encoding: deflate, gzip`` request header and inflate response if
  324. remote server responds with ``Content-Encoding: gzip`` or
  325. ``Content-Encoding: deflate``. Default: ``false``
  326. .. note::
  327. Some server responds with ``Content-Encoding: gzip`` for files which
  328. itself is gzipped file. aria2 inflates them anyway because of the
  329. response header.
  330. .. option:: --http-auth-challenge [true|false]
  331. Send HTTP authorization header only when it is requested by the
  332. server. If ``false`` is set, then authorization header is always sent
  333. to the server. There is an exception: if user name and password are
  334. embedded in URI, authorization header is always sent to the server
  335. regardless of this option. Default: ``false``
  336. .. option:: --http-no-cache [true|false]
  337. Send ``Cache-Control: no-cache`` and ``Pragma: no-cache`` header to avoid
  338. cached content. If ``false`` is given, these headers are not sent
  339. and you can add Cache-Control header with a directive you like
  340. using :option:`--header` option. Default: ``false``
  341. .. option:: --http-user=<USER>
  342. Set HTTP user. This affects all URIs.
  343. .. option:: --http-passwd=<PASSWD>
  344. Set HTTP password. This affects all URIs.
  345. .. option:: --http-proxy=<PROXY>
  346. Use a proxy server for HTTP. To override a previously defined proxy,
  347. use "".
  348. See also the :option:`--all-proxy` option. This affects all http downloads.
  349. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  350. .. option:: --http-proxy-passwd=<PASSWD>
  351. Set password for :option:`--http-proxy`.
  352. .. option:: --http-proxy-user=<USER>
  353. Set user for :option:`--http-proxy`.
  354. .. option:: --https-proxy=<PROXY>
  355. Use a proxy server for HTTPS. To override a previously defined proxy,
  356. use "".
  357. See also the :option:`--all-proxy` option. This affects all https download.
  358. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  359. .. option:: --https-proxy-passwd=<PASSWD>
  360. Set password for :option:`--https-proxy`.
  361. .. option:: --https-proxy-user=<USER>
  362. Set user for :option:`--https-proxy`.
  363. .. option:: --private-key=<FILE>
  364. Use the private key in FILE.
  365. The private key must be decrypted and in PEM format.
  366. An encrypted key may cause undefined behavior.
  367. See also :option:`--certificate` option.
  368. .. option:: --referer=<REFERER>
  369. Set an http referrer (Referer). This affects all http/https downloads.
  370. If ``*`` is given, the download URI is also used as the referrer.
  371. This may be useful when used together with the
  372. :option:`--parameterized-uri <-P>` option.
  373. .. option:: --enable-http-keep-alive [true|false]
  374. Enable HTTP/1.1 persistent connection.
  375. Default: ``true``
  376. .. option:: --enable-http-pipelining [true|false]
  377. Enable HTTP/1.1 pipelining.
  378. Default: ``false``
  379. .. note::
  380. There is usually no performance gain from enabling this option.
  381. .. option:: --header=<HEADER>
  382. Append HEADER to HTTP request header.
  383. You can use this option repeatedly to specify more than one header:
  384. .. code-block:: console
  385. $ aria2c --header="X-A: b78" --header="X-B: 9J1" "http://host/file"
  386. .. option:: --load-cookies=<FILE>
  387. Load Cookies from FILE using the Firefox3 format (SQLite3),
  388. Chromium/Google Chrome (SQLite3) and the
  389. Mozilla/Firefox(1.x/2.x)/Netscape format.
  390. .. note::
  391. If aria2 is built without libsqlite3, then it doesn't support Firefox3
  392. and Chromium/Google Chrome cookie format.
  393. .. option:: --save-cookies=<FILE>
  394. Save Cookies to FILE in Mozilla/Firefox(1.x/2.x)/ Netscape
  395. format. If FILE already exists, it is overwritten. Session Cookies
  396. are also saved and their expiry values are treated as 0. Possible
  397. Values: ``/path/to/file``
  398. .. option:: --use-head [true|false]
  399. Use HEAD method for the first request to the HTTP server.
  400. Default: ``false``
  401. .. option:: --no-want-digest-header [true|false]
  402. Whether to disable Want-Digest header when doing requests.
  403. Default: ``false``
  404. .. option:: -U, --user-agent=<USER_AGENT>
  405. Set user agent for HTTP(S) downloads.
  406. Default: ``aria2/$VERSION``, $VERSION is replaced by package version.
  407. FTP/SFTP Specific Options
  408. ~~~~~~~~~~~~~~~~~~~~~~~~~
  409. .. option:: --ftp-user=<USER>
  410. Set FTP user. This affects all URIs.
  411. Default: ``anonymous``
  412. .. option:: --ftp-passwd=<PASSWD>
  413. Set FTP password. This affects all URIs.
  414. If user name is embedded but password is missing in URI, aria2 tries
  415. to resolve password using .netrc. If password is found in .netrc,
  416. then use it as password. If not, use the password specified in this
  417. option.
  418. Default: ``ARIA2USER@``
  419. .. option:: -p, --ftp-pasv [true|false]
  420. Use the passive mode in FTP.
  421. If ``false`` is given, the active mode will be used.
  422. Default: ``true``
  423. .. note::
  424. This option is ignored for SFTP transfer.
  425. .. option:: --ftp-proxy=<PROXY>
  426. Use a proxy server for FTP. To override a previously defined proxy,
  427. use "".
  428. See also the :option:`--all-proxy` option. This affects all ftp downloads.
  429. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  430. .. option:: --ftp-proxy-passwd=<PASSWD>
  431. Set password for :option:`--ftp-proxy` option.
  432. .. option:: --ftp-proxy-user=<USER>
  433. Set user for :option:`--ftp-proxy` option.
  434. .. option:: --ftp-type=<TYPE>
  435. Set FTP transfer type. TYPE is either ``binary`` or ``ascii``.
  436. Default: ``binary``
  437. .. note::
  438. This option is ignored for SFTP transfer.
  439. .. option:: --ftp-reuse-connection [true|false]
  440. Reuse connection in FTP.
  441. Default: ``true``
  442. .. option:: --ssh-host-key-md=<TYPE>=<DIGEST>
  443. Set checksum for SSH host public key. TYPE is hash type. The
  444. supported hash type is ``sha-1`` or ``md5``. DIGEST is hex
  445. digest. For example:
  446. ``sha-1=b030503d4de4539dc7885e6f0f5e256704edf4c3``. This option can
  447. be used to validate server's public key when SFTP is used. If this
  448. option is not set, which is default, no validation takes place.
  449. BitTorrent/Metalink Options
  450. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  451. .. option:: --select-file=<INDEX>...
  452. Set file to download by specifying its index.
  453. You can find the file index using the :option:`--show-files <-S>` option.
  454. Multiple indexes can be specified by using ``,``, for example: ``3,6``.
  455. You can also use ``-`` to specify a range: ``1-5``.
  456. ``,`` and ``-`` can be used together: ``1-5,8,9``.
  457. When used with the -M option, index may vary depending on the query
  458. (see *--metalink-\** options).
  459. .. note::
  460. In multi file torrent, the adjacent files specified by this option may
  461. also be downloaded. This is by design, not a bug.
  462. A single piece may include several files or part of files, and aria2
  463. writes the piece to the appropriate files.
  464. .. option:: -S, --show-files [true|false]
  465. Print file listing of ".torrent", ".meta4" and ".metalink" file and exit.
  466. In case of ".torrent" file, additional information
  467. (infohash, piece length, etc) is also printed.
  468. BitTorrent Specific Options
  469. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  470. .. option:: --bt-detach-seed-only [true|false]
  471. Exclude seed only downloads when counting concurrent active
  472. downloads (See :option:`-j` option). This means that if ``-j3`` is
  473. given and this option is turned on and 3 downloads are active and
  474. one of those enters seed mode, then it is excluded from active
  475. download count (thus it becomes 2), and the next download waiting in
  476. queue gets started. But be aware that seeding item is still
  477. recognized as active download in RPC method. Default: ``false``
  478. .. option:: --bt-enable-hook-after-hash-check [true|false]
  479. Allow hook command invocation after hash check (see :option:`-V`
  480. option) in BitTorrent download. By default, when hash check
  481. succeeds, the command given by :option:`--on-bt-download-complete`
  482. is executed. To disable this action, give ``false`` to this option.
  483. Default: ``true``
  484. .. option:: --bt-enable-lpd [true|false]
  485. Enable Local Peer Discovery. If a private flag is set in a torrent,
  486. aria2 doesn't use this feature for that download even if ``true`` is
  487. given. Default: ``false``
  488. .. option:: --bt-exclude-tracker=<URI>[,...]
  489. Comma separated list of BitTorrent tracker's announce URI to
  490. remove. You can use special value ``*`` which matches all URIs, thus
  491. removes all announce URIs. When specifying ``*`` in shell
  492. command-line, don't forget to escape or quote it. See also
  493. :option:`--bt-tracker` option.
  494. .. option:: --bt-external-ip=<IPADDRESS>
  495. Specify the external IP address to use in BitTorrent download and DHT.
  496. It may be sent to BitTorrent tracker. For DHT, this option should be
  497. set to report that local node is downloading a particular torrent.
  498. This is critical to use DHT in a private network. Although this
  499. function is named ``external``, it can accept any kind of IP
  500. addresses.
  501. .. option:: --bt-force-encryption [true|false]
  502. Requires BitTorrent message payload encryption with arc4. This is a
  503. shorthand of :option:`--bt-require-crypto`
  504. :option:`--bt-min-crypto-level`\=arc4. This option does not change
  505. the option value of those options. If ``true`` is given, deny
  506. legacy BitTorrent handshake and only use Obfuscation handshake and
  507. always encrypt message payload. Default: ``false``
  508. .. option:: --bt-hash-check-seed [true|false]
  509. If ``true`` is given, after hash check using :option:`--check-integrity <-V>` option and
  510. file is complete, continue to seed file. If you want to check file
  511. and download it only when it is damaged or incomplete, set this
  512. option to ``false``. This option has effect only on BitTorrent download.
  513. Default: ``true``
  514. .. option:: --bt-load-saved-metadata [true|false]
  515. Before getting torrent metadata from DHT when downloading with
  516. magnet link, first try to read file saved by
  517. :option:`--bt-save-metadata` option. If it is successful, then skip
  518. downloading metadata from DHT.
  519. Default: ``false``
  520. .. option:: --bt-lpd-interface=<INTERFACE>
  521. Use given interface for Local Peer Discovery. If this option is not
  522. specified, the default interface is chosen. You can specify
  523. interface name and IP address. Possible Values: interface, IP
  524. address
  525. .. option:: --bt-max-open-files=<NUM>
  526. Specify maximum number of files to open in multi-file
  527. BitTorrent/Metalink download globally.
  528. Default: ``100``
  529. .. option:: --bt-max-peers=<NUM>
  530. Specify the maximum number of peers per torrent. ``0`` means
  531. unlimited. See also :option:`--bt-request-peer-speed-limit` option.
  532. Default: ``55``
  533. .. option:: --bt-metadata-only [true|false]
  534. Download metadata only. The file(s) described in metadata will not
  535. be downloaded. This option has effect only when BitTorrent Magnet
  536. URI is used. See also :option:`--bt-save-metadata` option. Default: ``false``
  537. .. option:: --bt-min-crypto-level=plain|arc4
  538. Set minimum level of encryption method.
  539. If several encryption methods are provided by a peer, aria2 chooses the lowest
  540. one which satisfies the given level.
  541. Default: ``plain``
  542. .. option:: --bt-prioritize-piece=head[=<SIZE>],tail[=<SIZE>]
  543. Try to download first and last pieces of each file first. This is
  544. useful for previewing files. The argument can contain 2 keywords:
  545. ``head`` and ``tail``. To include both keywords, they must be separated
  546. by comma. These keywords can take one parameter, SIZE. For example,
  547. if ``head=<SIZE>`` is specified, pieces in the range of first SIZE bytes
  548. of each file get higher priority. ``tail=<SIZE>`` means the range of
  549. last SIZE bytes of each file. SIZE can include ``K`` or ``M`` (1K = 1024,
  550. 1M = 1024K). If SIZE is omitted, SIZE=1M is used.
  551. .. option:: --bt-remove-unselected-file [true|false]
  552. Removes the unselected files when download is completed in
  553. BitTorrent. To select files, use
  554. :option:`--select-file` option. If it is
  555. not used, all files are assumed to be selected. Please use this
  556. option with care because it will actually remove files from your
  557. disk.
  558. Default: ``false``
  559. .. option:: --bt-require-crypto [true|false]
  560. If ``true`` is given, aria2 doesn't accept and establish connection with legacy
  561. BitTorrent handshake(\\19BitTorrent protocol).
  562. Thus aria2 always uses Obfuscation handshake.
  563. Default: ``false``
  564. .. option:: --bt-request-peer-speed-limit=<SPEED>
  565. If the whole download speed of every torrent is lower than SPEED,
  566. aria2 temporarily increases the number of peers to try for more
  567. download speed. Configuring this option with your preferred download
  568. speed can increase your download speed in some cases.
  569. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  570. Default: ``50K``
  571. .. option:: --bt-save-metadata [true|false]
  572. Save metadata as ".torrent" file. This option has effect only when
  573. BitTorrent Magnet URI is used. The file name is hex encoded info
  574. hash with suffix ".torrent". The directory to be saved is the same
  575. directory where download file is saved. If the same file already
  576. exists, metadata is not saved. See also :option:`--bt-metadata-only`
  577. option. Default: ``false``
  578. .. option:: --bt-seed-unverified [true|false]
  579. Seed previously downloaded files without verifying piece hashes.
  580. Default: ``false``
  581. .. option:: --bt-stop-timeout=<SEC>
  582. Stop BitTorrent download if download speed is 0 in consecutive SEC
  583. seconds. If ``0`` is given, this feature is disabled. Default: ``0``
  584. .. option:: --bt-tracker=<URI>[,...]
  585. Comma separated list of additional BitTorrent tracker's announce
  586. URI. These URIs are not affected by :option:`--bt-exclude-tracker` option
  587. because they are added after URIs in :option:`--bt-exclude-tracker` option are
  588. removed.
  589. .. option:: --bt-tracker-connect-timeout=<SEC>
  590. Set the connect timeout in seconds to establish connection to
  591. tracker. After the connection is established, this option makes no
  592. effect and :option:`--bt-tracker-timeout` option is used instead. Default:
  593. ``60``
  594. .. option:: --bt-tracker-interval=<SEC>
  595. Set the interval in seconds between tracker requests. This
  596. completely overrides interval value and aria2 just uses this value
  597. and ignores the min interval and interval value in the response of
  598. tracker. If ``0`` is set, aria2 determines interval based on the
  599. response of tracker and the download progress. Default: ``0``
  600. .. option:: --bt-tracker-timeout=<SEC>
  601. Set timeout in seconds. Default: ``60``
  602. .. option:: --dht-entry-point=<HOST>:<PORT>
  603. Set host and port as an entry point to IPv4 DHT network.
  604. .. option:: --dht-entry-point6=<HOST>:<PORT>
  605. Set host and port as an entry point to IPv6 DHT network.
  606. .. option:: --dht-file-path=<PATH>
  607. Change the IPv4 DHT routing table file to PATH.
  608. Default: ``$HOME/.aria2/dht.dat`` if present, otherwise
  609. ``$XDG_CACHE_HOME/aria2/dht.dat``.
  610. .. option:: --dht-file-path6=<PATH>
  611. Change the IPv6 DHT routing table file to PATH.
  612. Default: ``$HOME/.aria2/dht6.dat`` if present, otherwise
  613. ``$XDG_CACHE_HOME/aria2/dht6.dat``.
  614. .. option:: --dht-listen-addr6=<ADDR>
  615. Specify address to bind socket for IPv6 DHT. It should be a global
  616. unicast IPv6 address of the host.
  617. .. option:: --dht-listen-port=<PORT>...
  618. Set UDP listening port used by DHT(IPv4, IPv6) and UDP tracker.
  619. Multiple ports can be specified by using ``,``, for example:
  620. ``6881,6885``. You can also use ``-`` to specify a range:
  621. ``6881-6999``. ``,`` and ``-`` can be used together.
  622. Default: ``6881-6999``
  623. .. note::
  624. Make sure that the specified ports are open for incoming UDP traffic.
  625. .. option:: --dht-message-timeout=<SEC>
  626. Set timeout in seconds. Default: ``10``
  627. .. option:: --enable-dht [true|false]
  628. Enable IPv4 DHT functionality. It also enables UDP tracker
  629. support. If a private flag is set in a torrent, aria2 doesn't use
  630. DHT for that download even if ``true`` is given. Default: ``true``
  631. .. option:: --enable-dht6 [true|false]
  632. Enable IPv6 DHT functionality. If a private flag is set in a
  633. torrent, aria2 doesn't use DHT for that download even if ``true`` is
  634. given. Use :option:`--dht-listen-port` option to specify port number to
  635. listen on. See also :option:`--dht-listen-addr6` option.
  636. .. option:: --enable-peer-exchange [true|false]
  637. Enable Peer Exchange extension. If a private flag is set in a torrent, this
  638. feature is disabled for that download even if ``true`` is given.
  639. Default: ``true``
  640. .. option:: --follow-torrent=true|false|mem
  641. If ``true`` or ``mem`` is specified, when a file whose suffix is ``.torrent`` or content
  642. type is ``application/x-bittorrent`` is downloaded, aria2 parses it as a torrent
  643. file and downloads files mentioned in it.
  644. If ``mem`` is specified, a torrent file is not written to the disk, but is just
  645. kept in memory.
  646. If ``false`` is specified, the ``.torrent`` file is downloaded to the disk, but
  647. is not parsed as a torrent and its contents are not downloaded.
  648. Default: ``true``
  649. .. option:: -O, --index-out=<INDEX>=<PATH>
  650. Set file path for file with index=INDEX. You can find the file index
  651. using the :option:`--show-files <-S>` option. PATH is a relative path to the
  652. path specified in :option:`--dir <-d>` option. You can use this option multiple
  653. times. Using this option, you can specify the output file names of
  654. BitTorrent downloads.
  655. .. option:: --listen-port=<PORT>...
  656. Set TCP port number for BitTorrent downloads.
  657. Multiple ports can be specified by using ``,``, for example: ``6881,6885``.
  658. You can also use ``-`` to specify a range: ``6881-6999``.
  659. ``,`` and ``-`` can be used together: ``6881-6889,6999``.
  660. Default: ``6881-6999``
  661. .. note::
  662. Make sure that the specified ports are open for incoming TCP traffic.
  663. .. option:: --max-overall-upload-limit=<SPEED>
  664. Set max overall upload speed in bytes/sec.
  665. ``0`` means unrestricted.
  666. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  667. To limit the upload speed per torrent, use :option:`--max-upload-limit <-u>` option.
  668. Default: ``0``
  669. .. option:: -u, --max-upload-limit=<SPEED>
  670. Set max upload speed per each torrent in bytes/sec.
  671. ``0`` means unrestricted.
  672. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  673. To limit the overall upload speed, use :option:`--max-overall-upload-limit` option.
  674. Default: ``0``
  675. .. option:: --peer-id-prefix=<PEER_ID_PREFIX>
  676. Specify the prefix of peer ID. The peer ID in
  677. BitTorrent is 20 byte length. If more than 20
  678. bytes are specified, only first 20 bytes are
  679. used. If less than 20 bytes are specified, random
  680. byte data are added to make its length 20 bytes.
  681. Default: ``A2-$MAJOR-$MINOR-$PATCH-``, $MAJOR, $MINOR and $PATCH are
  682. replaced by major, minor and patch version number respectively. For
  683. instance, aria2 version 1.18.8 has prefix ID ``A2-1-18-8-``.
  684. .. option:: --peer-agent=<PEER_AGENT>
  685. Specify the string used during the bitorrent extended handshake
  686. for the peer's client version.
  687. Default: ``aria2/$MAJOR.$MINOR.$PATCH``, $MAJOR, $MINOR and $PATCH are
  688. replaced by major, minor and patch version number respectively. For
  689. instance, aria2 version 1.18.8 has peer agent ``aria2/1.18.8``.
  690. .. option:: --seed-ratio=<RATIO>
  691. Specify share ratio. Seed completed torrents until share ratio reaches
  692. RATIO.
  693. You are strongly encouraged to specify equals or more than ``1.0`` here.
  694. Specify ``0.0`` if you intend to do seeding regardless of share ratio.
  695. If :option:`--seed-time` option is specified along with this option, seeding ends when
  696. at least one of the conditions is satisfied.
  697. Default: ``1.0``
  698. .. option:: --seed-time=<MINUTES>
  699. Specify seeding time in (fractional) minutes. Also see the
  700. :option:`--seed-ratio` option.
  701. .. note::
  702. Specifying :option:`--seed-time=0 <--seed-time>` disables seeding after download completed.
  703. .. option:: -T, --torrent-file=<TORRENT_FILE>
  704. The path to the ".torrent" file. You are not required to use this
  705. option because you can specify ".torrent" files without :option:`--torrent-file <-T>`.
  706. Metalink Specific Options
  707. ~~~~~~~~~~~~~~~~~~~~~~~~~
  708. .. option:: --follow-metalink=true|false|mem
  709. If ``true`` or ``mem`` is specified, when a file whose suffix is ``.meta4`` or ``.metalink`` or content
  710. type of ``application/metalink4+xml`` or ``application/metalink+xml`` is downloaded, aria2 parses it as a metalink
  711. file and downloads files mentioned in it.
  712. If ``mem`` is specified, a metalink file is not written to the disk, but is just
  713. kept in memory.
  714. If ``false`` is specified, the ``.metalink`` file is downloaded to
  715. the disk, but is not parsed as a metalink file and its contents are not
  716. downloaded.
  717. Default: ``true``
  718. .. option:: --metalink-base-uri=<URI>
  719. Specify base URI to resolve relative URI in metalink:url and
  720. metalink:metaurl element in a metalink file stored in local disk. If
  721. URI points to a directory, URI must end with ``/``.
  722. .. option:: -M, --metalink-file=<METALINK_FILE>
  723. The file path to ".meta4" and ".metalink" file. Reads input from ``stdin`` when ``-`` is
  724. specified. You are not required to use this option because you can
  725. specify ".metalink" files without :option:`--metalink-file <-M>`.
  726. .. option:: --metalink-language=<LANGUAGE>
  727. The language of the file to download.
  728. .. option:: --metalink-location=<LOCATION>[,...]
  729. The location of the preferred server.
  730. A comma-delimited list of locations is acceptable, for example, ``jp,us``.
  731. .. option:: --metalink-os=<OS>
  732. The operating system of the file to download.
  733. .. option:: --metalink-version=<VERSION>
  734. The version of the file to download.
  735. .. option:: --metalink-preferred-protocol=<PROTO>
  736. Specify preferred protocol.
  737. The possible values are ``http``, ``https``, ``ftp`` and ``none``.
  738. Specify ``none`` to disable this feature.
  739. Default: ``none``
  740. .. option:: --metalink-enable-unique-protocol [true|false]
  741. If ``true`` is given and several protocols are available for a mirror in a
  742. metalink file, aria2 uses one of them.
  743. Use :option:`--metalink-preferred-protocol` option to specify the preference of
  744. protocol.
  745. Default: ``true``
  746. RPC Options
  747. ~~~~~~~~~~~
  748. .. option:: --enable-rpc [true|false]
  749. Enable JSON-RPC/XML-RPC server. It is strongly recommended to set
  750. secret authorization token using :option:`--rpc-secret` option. See
  751. also :option:`--rpc-listen-port` option. Default: ``false``
  752. .. option:: --pause [true|false]
  753. Pause download after added. This option is effective only when
  754. :option:`--enable-rpc=true <--enable-rpc>` is given.
  755. Default: ``false``
  756. .. option:: --pause-metadata [true|false]
  757. Pause downloads created as a result of metadata download. There are
  758. 3 types of metadata downloads in aria2: (1) downloading .torrent
  759. file. (2) downloading torrent metadata using magnet link. (3)
  760. downloading metalink file. These metadata downloads will generate
  761. downloads using their metadata. This option pauses these subsequent
  762. downloads. This option is effective only when
  763. :option:`--enable-rpc=true <--enable-rpc>` is given.
  764. Default: ``false``
  765. .. option:: --rpc-allow-origin-all [true|false]
  766. Add Access-Control-Allow-Origin header field with value ``*`` to the
  767. RPC response.
  768. Default: ``false``
  769. .. option:: --rpc-certificate=<FILE>
  770. Use the certificate in FILE for RPC server. The certificate must be
  771. either in PKCS12 (.p12, .pfx) or in PEM format.
  772. PKCS12 files must contain the certificate, a key and optionally a chain
  773. of additional certificates. Only PKCS12 files with a blank import password
  774. can be opened!
  775. When using PEM, you have to specify the private key via :option:`--rpc-private-key`
  776. as well. Use :option:`--rpc-secure` option to enable encryption.
  777. .. note::
  778. *WinTLS* does not support PEM files at the moment. Users have to use PKCS12
  779. files.
  780. .. note::
  781. *AppleTLS* users should use the KeyChain Access utility to first generate a
  782. self-signed SSL-Server certificate, e.g. using the wizard, and get the
  783. SHA-1 fingerprint from the Information dialog corresponding to that new
  784. certificate.
  785. To start aria2c with :option:`--rpc-secure` use
  786. `--rpc-certificate=<SHA-1>`.
  787. Alternatively PKCS12 files are also supported. PEM files, however, are not
  788. supported.
  789. .. option:: --rpc-listen-all [true|false]
  790. Listen incoming JSON-RPC/XML-RPC requests on all network interfaces. If false
  791. is given, listen only on local loopback interface. Default: ``false``
  792. .. option:: --rpc-listen-port=<PORT>
  793. Specify a port number for JSON-RPC/XML-RPC server to listen to. Possible
  794. Values: ``1024`` -``65535`` Default: ``6800``
  795. .. option:: --rpc-max-request-size=<SIZE>
  796. Set max size of JSON-RPC/XML-RPC request. If aria2 detects the request is
  797. more than SIZE bytes, it drops connection. Default: ``2M``
  798. .. option:: --rpc-passwd=<PASSWD>
  799. Set JSON-RPC/XML-RPC password.
  800. .. Warning::
  801. :option:`--rpc-passwd` option will be deprecated in the future
  802. release. Migrate to :option:`--rpc-secret` option as soon as
  803. possible.
  804. .. option:: --rpc-private-key=<FILE>
  805. Use the private key in FILE for RPC server. The private key must be
  806. decrypted and in PEM format. Use :option:`--rpc-secure` option to
  807. enable encryption. See also :option:`--rpc-certificate` option.
  808. .. option:: --rpc-save-upload-metadata [true|false]
  809. Save the uploaded torrent or metalink metadata in the directory
  810. specified by :option:`--dir` option. The file name consists of SHA-1
  811. hash hex string of metadata plus extension. For torrent, the
  812. extension is '.torrent'. For metalink, it is '.meta4'. If false is
  813. given to this option, the downloads added by
  814. :func:`aria2.addTorrent` or :func:`aria2.addMetalink` will not be
  815. saved by :option:`--save-session` option. Default: ``true``
  816. .. option:: --rpc-secret=<TOKEN>
  817. Set RPC secret authorization token. Read :ref:`rpc_auth` to know
  818. how this option value is used.
  819. .. option:: --rpc-secure [true|false]
  820. RPC transport will be encrypted by SSL/TLS. The RPC clients must
  821. use https scheme to access the server. For WebSocket client, use wss
  822. scheme. Use :option:`--rpc-certificate` and
  823. :option:`--rpc-private-key` options to specify the server
  824. certificate and private key.
  825. .. option:: --rpc-user=<USER>
  826. Set JSON-RPC/XML-RPC user.
  827. .. Warning::
  828. :option:`--rpc-user` option will be deprecated in the future
  829. release. Migrate to :option:`--rpc-secret` option as soon as
  830. possible.
  831. Advanced Options
  832. ~~~~~~~~~~~~~~~~
  833. .. option:: --allow-overwrite [true|false]
  834. Restart download from scratch if the corresponding control file
  835. doesn't exist. See also :option:`--auto-file-renaming` option. Default:
  836. ``false``
  837. .. option:: --allow-piece-length-change [true|false]
  838. If false is given, aria2 aborts download when a piece length is different
  839. from one in a control file.
  840. If true is given, you can proceed but some download progress will be lost.
  841. Default: ``false``
  842. .. option:: --always-resume [true|false]
  843. Always resume download. If ``true`` is given, aria2 always tries to
  844. resume download and if resume is not possible, aborts download. If
  845. ``false`` is given, when all given URIs do not support resume or aria2
  846. encounters ``N`` URIs which does not support resume (``N`` is the value
  847. specified using :option:`--max-resume-failure-tries` option), aria2
  848. downloads file from scratch. See :option:`--max-resume-failure-tries`
  849. option. Default: ``true``
  850. .. option:: --async-dns [true|false]
  851. Enable asynchronous DNS.
  852. Default: ``true``
  853. .. option:: --async-dns-server=<IPADDRESS>[,...]
  854. Comma separated list of DNS server address used in asynchronous DNS
  855. resolver. Usually asynchronous DNS resolver reads DNS server
  856. addresses from ``/etc/resolv.conf``. When this option is used, it uses
  857. DNS servers specified in this option instead of ones in
  858. ``/etc/resolv.conf``. You can specify both IPv4 and IPv6 address. This
  859. option is useful when the system does not have ``/etc/resolv.conf`` and
  860. user does not have the permission to create it.
  861. .. option:: --auto-file-renaming [true|false]
  862. Rename file name if the same file already exists.
  863. This option works only in HTTP(S)/FTP download.
  864. The new file name has a dot and a number(1..9999) appended after the
  865. name, but before the file extension, if any.
  866. Default: ``true``
  867. .. option:: --auto-save-interval=<SEC>
  868. Save a control file(\*.aria2) every SEC seconds.
  869. If ``0`` is given, a control file is not saved during download. aria2 saves a
  870. control file when it stops regardless of the value.
  871. The possible values are between ``0`` to ``600``.
  872. Default: ``60``
  873. .. option:: --conditional-get [true|false]
  874. Download file only when the local file is older than remote
  875. file. This function only works with HTTP(S) downloads only. It does
  876. not work if file size is specified in Metalink. It also ignores
  877. Content-Disposition header. If a control file exists, this option
  878. will be ignored. This function uses If-Modified-Since header to get
  879. only newer file conditionally. When getting modification time of
  880. local file, it uses user supplied file name (see :option:`--out <-o>` option) or
  881. file name part in URI if :option:`--out <-o>` is not specified.
  882. To overwrite existing file, :option:`--allow-overwrite` is required.
  883. Default: ``false``
  884. .. option:: --conf-path=<PATH>
  885. Change the configuration file path to PATH.
  886. Default: ``$HOME/.aria2/aria2.conf`` if present, otherwise
  887. ``$XDG_CONFIG_HOME/aria2/aria2.conf``.
  888. .. option:: --console-log-level=<LEVEL>
  889. Set log level to output to console. LEVEL is either ``debug``,
  890. ``info``, ``notice``, ``warn`` or ``error``. Default: ``notice``
  891. .. option:: --content-disposition-default-utf8 [true|false]
  892. Handle quoted string in Content-Disposition header as UTF-8 instead
  893. of ISO-8859-1, for example, the filename parameter, but not the
  894. extended version filename*. Default: ``false``
  895. .. option:: -D, --daemon [true|false]
  896. Run as daemon. The current working directory will be changed to ``/``
  897. and standard input, standard output and standard error will be
  898. redirected to ``/dev/null``. Default: ``false``
  899. .. option:: --deferred-input [true|false]
  900. If ``true`` is given, aria2 does not read all URIs and options from file
  901. specified by :option:`--input-file <-i>` option at startup,
  902. but it reads one by one when it
  903. needs later. This may reduce memory usage if input file contains a
  904. lot of URIs to download. If ``false`` is given, aria2 reads all URIs
  905. and options at startup.
  906. Default: ``false``
  907. .. Warning::
  908. :option:`--deferred-input` option will be disabled when
  909. :option:`--save-session` is used together.
  910. .. option:: --disable-ipv6 [true|false]
  911. Disable IPv6. This is useful if you have to use broken DNS and want
  912. to avoid terribly slow AAAA record lookup. Default: ``false``
  913. .. option:: --disk-cache=<SIZE>
  914. Enable disk cache. If SIZE is ``0``, the disk cache is
  915. disabled. This feature caches the downloaded data in memory, which
  916. grows to at most SIZE bytes. The cache storage is created for aria2
  917. instance and shared by all downloads. The one advantage of the disk
  918. cache is reduce the disk I/O because the data are written in larger
  919. unit and it is reordered by the offset of the file. If hash
  920. checking is involved and the data are cached in memory, we don't
  921. need to read them from the disk. SIZE can include ``K`` or ``M``
  922. (1K = 1024, 1M = 1024K). Default: ``16M``
  923. .. option:: --download-result=<OPT>
  924. This option changes the way ``Download Results`` is formatted. If
  925. OPT is ``default``, print GID, status, average download speed and
  926. path/URI. If multiple files are involved, path/URI of first
  927. requested file is printed and remaining ones are omitted. If OPT is
  928. ``full``, print GID, status, average download speed, percentage of
  929. progress and path/URI. The percentage of progress and path/URI are
  930. printed for each requested file in each row. If OPT is ``hide``,
  931. ``Download Results`` is hidden.
  932. Default: ``default``
  933. .. option:: --dscp=<DSCP>
  934. Set DSCP value in outgoing IP packets of BitTorrent traffic for
  935. QoS. This parameter sets only DSCP bits in TOS field of IP packets,
  936. not the whole field. If you take values from
  937. */usr/include/netinet/ip.h* divide them by 4 (otherwise values would
  938. be incorrect, e.g. your ``CS1`` class would turn into ``CS4``). If
  939. you take commonly used values from RFC, network vendors'
  940. documentation, Wikipedia or any other source, use them as they are.
  941. .. option:: --rlimit-nofile=<NUM>
  942. Set the soft limit of open file descriptors.
  943. This open will only have effect when:
  944. a) The system supports it (posix)
  945. b) The limit does not exceed the hard limit.
  946. c) The specified limit is larger than the current soft limit.
  947. This is equivalent to setting nofile via ulimit,
  948. except that it will never decrease the limit.
  949. This option is only available on systems supporting the rlimit API.
  950. .. option:: --enable-color [true|false]
  951. Enable color output for a terminal.
  952. Default: ``true``
  953. .. option:: --enable-mmap [true|false]
  954. Map files into memory. This option may not work if the file space
  955. is not pre-allocated. See :option:`--file-allocation`.
  956. Default: ``false``
  957. .. option:: --event-poll=<POLL>
  958. Specify the method for polling events. The possible values are
  959. ``epoll``, ``kqueue``, ``port``, ``poll`` and ``select``. For each ``epoll``,
  960. ``kqueue``, ``port`` and ``poll``, it is available if system supports it.
  961. ``epoll`` is available on recent Linux. ``kqueue`` is available on
  962. various \*BSD systems including Mac OS X. ``port`` is available on Open
  963. Solaris. The default value may vary depending on the system you use.
  964. .. option:: --file-allocation=<METHOD>
  965. Specify file allocation method.
  966. ``none`` doesn't pre-allocate file space. ``prealloc`` pre-allocates file space
  967. before download begins. This may take some time depending on the size of the
  968. file.
  969. If you are using newer file systems such as ext4
  970. (with extents support), btrfs, xfs or NTFS(MinGW build only), ``falloc`` is
  971. your best choice. It allocates large(few GiB)
  972. files almost instantly. Don't use ``falloc`` with
  973. legacy file systems such as ext3 and FAT32 because it takes
  974. almost the same time as ``prealloc`` and it blocks aria2
  975. entirely until allocation finishes. ``falloc`` may
  976. not be available if your system doesn't have
  977. :manpage:`posix_fallocate(3)` function.
  978. ``trunc`` uses :manpage:`ftruncate(2)` system call or
  979. platform-specific counterpart to truncate a file to a specified
  980. length.
  981. Possible Values: ``none``, ``prealloc``, ``trunc``, ``falloc``
  982. Default: ``prealloc``
  983. .. Warning::
  984. Using ``trunc`` seemingly allocates disk space very quickly, but
  985. what it actually does is that it sets file length metadata in
  986. file system, and does not allocate disk space at all. This means
  987. that it does not help avoiding fragmentation.
  988. .. note::
  989. In multi file torrent downloads, the files adjacent forward to the specified files
  990. are also allocated if they share the same piece.
  991. .. option:: --force-save [true|false]
  992. Save download with :option:`--save-session <--save-session>` option
  993. even if the download is completed or removed. This option also saves
  994. control file in that situations. This may be useful to save
  995. BitTorrent seeding which is recognized as completed state.
  996. Default: ``false``
  997. .. option:: --save-not-found [true|false]
  998. Save download with :option:`--save-session <--save-session>` option
  999. even if the file was not found on the server. This option also saves
  1000. control file in that situations.
  1001. Default: ``true``
  1002. .. option:: --gid=<GID>
  1003. Set GID manually. aria2 identifies each download by the ID called
  1004. GID. The GID must be hex string of 16 characters, thus [0-9a-fA-F]
  1005. are allowed and leading zeros must not be stripped. The GID all 0 is
  1006. reserved and must not be used. The GID must be unique, otherwise
  1007. error is reported and the download is not added. This option is
  1008. useful when restoring the sessions saved using
  1009. :option:`--save-session <--save-session>` option. If this option is
  1010. not used, new GID is generated by aria2.
  1011. .. option:: --hash-check-only [true|false]
  1012. If ``true`` is given, after hash check using
  1013. :option:`--check-integrity <-V>` option,
  1014. abort download whether or not download is complete.
  1015. Default: ``false``
  1016. .. option:: --human-readable [true|false]
  1017. Print sizes and speed in human readable format (e.g., 1.2Ki, 3.4Mi)
  1018. in the console readout. Default: ``true``
  1019. .. option:: --interface=<INTERFACE>
  1020. Bind sockets to given interface. You can specify interface name, IP
  1021. address and host name.
  1022. Possible Values: interface, IP address, host name
  1023. .. note::
  1024. If an interface has multiple addresses, it is highly recommended to
  1025. specify IP address explicitly. See also :option:`--disable-ipv6`. If your
  1026. system doesn't have :manpage:`getifaddrs(3)`, this option doesn't accept interface
  1027. name.
  1028. .. option:: --keep-unfinished-download-result [true|false]
  1029. Keep unfinished download results even if doing so exceeds
  1030. :option:`--max-download-result`. This is useful if all unfinished
  1031. downloads must be saved in session file (see
  1032. :option:`--save-session` option). Please keep in mind that there is
  1033. no upper bound to the number of unfinished download result to keep.
  1034. If that is undesirable, turn this option off. Default: ``true``
  1035. .. option:: --max-download-result=<NUM>
  1036. Set maximum number of download result kept in memory. The download
  1037. results are completed/error/removed downloads. The download results
  1038. are stored in FIFO queue and it can store at most NUM download
  1039. results. When queue is full and new download result is created,
  1040. oldest download result is removed from the front of the queue and
  1041. new one is pushed to the back. Setting big number in this option may
  1042. result high memory consumption after thousands of
  1043. downloads. Specifying 0 means no download result is kept. Note that
  1044. unfinished downloads are kept in memory regardless of this option
  1045. value. See :option:`--keep-unfinished-download-result` option.
  1046. Default: ``1000``
  1047. .. option:: --max-mmap-limit=<SIZE>
  1048. Set the maximum file size to enable mmap (see
  1049. :option:`--enable-mmap` option). The file size is determined by the
  1050. sum of all files contained in one download. For example, if a
  1051. download contains 5 files, then file size is the total size of those
  1052. files. If file size is strictly greater than the size specified in
  1053. this option, mmap will be disabled.
  1054. Default: ``9223372036854775807``
  1055. .. option:: --max-resume-failure-tries=<N>
  1056. When used with :option:`--always-resume=false, <--always-resume>` aria2 downloads file from
  1057. scratch when aria2 detects N number of URIs that does not support
  1058. resume. If N is ``0``, aria2 downloads file from scratch when all
  1059. given URIs do not support resume. See :option:`--always-resume` option.
  1060. Default: ``0``
  1061. .. option:: --min-tls-version=<VERSION>
  1062. Specify minimum SSL/TLS version to enable.
  1063. Possible Values: ``TLSv1.1``, ``TLSv1.2``, ``TLSv1.3``
  1064. Default: ``TLSv1.2``
  1065. .. option:: --multiple-interface=<INTERFACES>
  1066. Comma separated list of interfaces to bind sockets to. Requests will
  1067. be split among the interfaces to achieve link aggregation. You can
  1068. specify interface name, IP address and hostname. If
  1069. :option:`--interface` is used, this option will be ignored.
  1070. Possible Values: interface, IP address, hostname
  1071. .. option:: --log-level=<LEVEL>
  1072. Set log level to output.
  1073. LEVEL is either ``debug``, ``info``, ``notice``, ``warn`` or ``error``.
  1074. Default: ``debug``
  1075. .. option:: --on-bt-download-complete=<COMMAND>
  1076. For BitTorrent, a command specified in :option:`--on-download-complete` is
  1077. called after download completed and seeding is over. On the other
  1078. hand, this option set the command to be executed after download
  1079. completed but before seeding.
  1080. See `Event Hook`_ for more details about COMMAND.
  1081. Possible Values: ``/path/to/command``
  1082. .. option:: --on-download-complete=<COMMAND>
  1083. Set the command to be executed after download completed.
  1084. See `Event Hook`_ for more details about COMMAND.
  1085. See also :option:`--on-download-stop` option.
  1086. Possible Values: ``/path/to/command``
  1087. .. option:: --on-download-error=<COMMAND>
  1088. Set the command to be executed after download aborted due to error.
  1089. See `Event Hook`_ for more details about COMMAND.
  1090. See also :option:`--on-download-stop` option. Possible Values:
  1091. ``/path/to/command``
  1092. .. option:: --on-download-pause=<COMMAND>
  1093. Set the command to be executed after download was paused.
  1094. See `Event Hook`_ for more details about COMMAND.
  1095. Possible Values: ``/path/to/command``
  1096. .. option:: --on-download-start=<COMMAND>
  1097. Set the command to be executed after download got started.
  1098. See `Event Hook`_ for more details about COMMAND.
  1099. Possible Values: ``/path/to/command``
  1100. .. option:: --on-download-stop=<COMMAND>
  1101. Set the command to be executed after download stopped. You can override
  1102. the command to be executed for particular download result using
  1103. :option:`--on-download-complete` and :option:`--on-download-error`. If they are
  1104. specified, command specified in this option is not executed.
  1105. See `Event Hook`_ for more details about COMMAND.
  1106. Possible Values: ``/path/to/command``
  1107. .. option:: --optimize-concurrent-downloads [true|false|<A>:<B>]
  1108. Optimizes the number of concurrent downloads according to the
  1109. bandwidth available. aria2 uses the download speed observed in the
  1110. previous downloads to adapt the number of downloads launched in
  1111. parallel according to the rule N = A + B Log10(speed in Mbps). The
  1112. coefficients A and B can be customized in the option arguments with
  1113. A and B separated by a colon. The default values (A=5, B=25) lead to
  1114. using typically 5 parallel downloads on 1Mbps networks and above 50
  1115. on 100Mbps networks. The number of parallel downloads remains
  1116. constrained under the maximum defined by the
  1117. :option:`--max-concurrent-downloads` parameter.
  1118. Default: ``false``
  1119. .. option:: --piece-length=<LENGTH>
  1120. Set a piece length for HTTP/FTP downloads. This is the boundary when
  1121. aria2 splits a file. All splits occur at multiple of this
  1122. length. This option will be ignored in BitTorrent downloads. It
  1123. will be also ignored if Metalink file contains piece hashes.
  1124. Default: ``1M``
  1125. .. note::
  1126. The possible use case of :option:`--piece-length`
  1127. option is change the request range in one HTTP pipelined request.
  1128. To enable HTTP pipelining use
  1129. :option:`--enable-http-pipelining`.
  1130. .. option:: --show-console-readout [true|false]
  1131. Show console readout. Default: ``true``
  1132. .. option:: --stderr [true|false]
  1133. Redirect all console output that would be otherwise printed in
  1134. stdout to stderr. Default: ``false``
  1135. .. option:: --summary-interval=<SEC>
  1136. Set interval in seconds to output download progress summary.
  1137. Setting ``0`` suppresses the output.
  1138. Default: ``60``
  1139. .. option:: -Z, --force-sequential [true|false]
  1140. Fetch URIs in the command-line sequentially and download each URI in a
  1141. separate session, like the usual command-line download utilities.
  1142. Default: ``false``
  1143. .. option:: --max-overall-download-limit=<SPEED>
  1144. Set max overall download speed in bytes/sec. ``0`` means
  1145. unrestricted. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K). To
  1146. limit the download speed per download, use :option:`--max-download-limit`
  1147. option. Default: ``0``
  1148. .. option:: --max-download-limit=<SPEED>
  1149. Set max download speed per each download in bytes/sec. ``0`` means
  1150. unrestricted. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K). To
  1151. limit the overall download speed, use :option:`--max-overall-download-limit`
  1152. option. Default: ``0``
  1153. .. option:: --no-conf [true|false]
  1154. Disable loading aria2.conf file.
  1155. .. option:: --no-file-allocation-limit=<SIZE>
  1156. No file allocation is made for files whose size is smaller than SIZE.
  1157. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  1158. Default: ``5M``
  1159. .. option:: -P, --parameterized-uri [true|false]
  1160. Enable parameterized URI support.
  1161. You can specify set of parts: ``http://{sv1,sv2,sv3}/foo.iso``.
  1162. Also you can specify numeric sequences with step counter:
  1163. ``http://host/image[000-100:2].img``.
  1164. A step counter can be omitted.
  1165. If all URIs do not point to the same file, such as the second example above,
  1166. -Z option is required.
  1167. Default: ``false``
  1168. .. option:: -q, --quiet [true|false]
  1169. Make aria2 quiet (no console output).
  1170. Default: ``false``
  1171. .. option:: --realtime-chunk-checksum [true|false]
  1172. Validate chunk of data by calculating checksum while downloading a file if
  1173. chunk checksums are provided.
  1174. Default: ``true``
  1175. .. option:: --remove-control-file [true|false]
  1176. Remove control file before download. Using with
  1177. :option:`--allow-overwrite=true, <--allow-overwrite>` download always starts from
  1178. scratch. This will be useful for users behind proxy server which
  1179. disables resume.
  1180. .. option:: --save-session=<FILE>
  1181. Save error/unfinished downloads to FILE on exit. You can pass this
  1182. output file to aria2c with :option:`--input-file <-i>` option on
  1183. restart. If you like the output to be gzipped append a .gz extension to
  1184. the file name.
  1185. Please note that downloads added by
  1186. :func:`aria2.addTorrent` and :func:`aria2.addMetalink` RPC method
  1187. and whose metadata could not be saved as a file are not saved.
  1188. Downloads removed using :func:`aria2.remove` and
  1189. :func:`aria2.forceRemove` will not be saved. GID is also saved with
  1190. :option:`gid <--gid>`, but there are some restrictions, see below.
  1191. .. note::
  1192. Normally, GID of the download itself is saved. But some downloads
  1193. use metadata (e.g., BitTorrent and Metalink). In this case, there
  1194. are some restrictions.
  1195. magnet URI, and followed by torrent download
  1196. GID of BitTorrent metadata download is saved.
  1197. URI to torrent file, and followed by torrent download
  1198. GID of torrent file download is saved.
  1199. URI to metalink file, and followed by file downloads described in metalink file
  1200. GID of metalink file download is saved.
  1201. local torrent file
  1202. GID of torrent download is saved.
  1203. local metalink file
  1204. Any meaningful GID is not saved.
  1205. .. option:: --save-session-interval=<SEC>
  1206. Save error/unfinished downloads to a file specified by
  1207. :option:`--save-session` option every SEC seconds. If ``0`` is
  1208. given, file will be saved only when aria2 exits. Default: ``0``
  1209. .. option:: --socket-recv-buffer-size=<SIZE>
  1210. Set the maximum socket receive buffer in bytes. Specifying ``0``
  1211. will disable this option. This value will be set to socket file
  1212. descriptor using ``SO_RCVBUF`` socket option with ``setsockopt()``
  1213. call. Default: ``0``
  1214. .. option:: --stop=<SEC>
  1215. Stop application after SEC seconds has passed.
  1216. If ``0`` is given, this feature is disabled.
  1217. Default: ``0``
  1218. .. option:: --stop-with-process=<PID>
  1219. Stop application when process PID is not running. This is useful if
  1220. aria2 process is forked from a parent process. The parent process
  1221. can fork aria2 with its own pid and when parent process exits for
  1222. some reason, aria2 can detect it and shutdown itself.
  1223. .. option:: --truncate-console-readout [true|false]
  1224. Truncate console readout to fit in a single line.
  1225. Default: ``true``
  1226. .. option:: -v, --version
  1227. Print the version number, copyright and the configuration information and
  1228. exit.
  1229. Notes for Options
  1230. ~~~~~~~~~~~~~~~~~
  1231. Optional arguments
  1232. ^^^^^^^^^^^^^^^^^^
  1233. The options that have its argument surrounded by square brackets([])
  1234. take an optional argument. Usually omitting the argument is evaluated to ``true``.
  1235. If you use short form of these options(such as ``-V``) and give
  1236. an argument, then the option name and its argument should be concatenated(e.g.
  1237. ``-Vfalse``). If any spaces are inserted between the option name and the argument,
  1238. the argument will be treated as URI and usually this is not what you expect.
  1239. Units (K and M)
  1240. ^^^^^^^^^^^^^^^
  1241. Some options takes ``K`` and ``M`` to conveniently represent 1024 and
  1242. 1048576 respectively. aria2 detects these characters in
  1243. case-insensitive way. In other words, ``k`` and ``m`` can be used as
  1244. well as ``K`` and ``M`` respectively.
  1245. URI, MAGNET, TORRENT_FILE, METALINK_FILE
  1246. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1247. You can specify multiple URIs in command-line. Unless you specify
  1248. :option:`--force-sequential <-Z>` option, all URIs must point to the same file or downloading will
  1249. fail.
  1250. You can specify arbitrary number of BitTorrent Magnet URI. Please note
  1251. that they are always treated as a separate download. Both hex encoded
  1252. 40 characters Info Hash and Base32 encoded 32 characters Info Hash are
  1253. supported. The multiple ``tr`` parameters are supported. Because
  1254. BitTorrent Magnet URI is likely to contain ``&`` character, it is highly
  1255. recommended to always quote URI with single(``'``) or double(``"``) quotation.
  1256. It is strongly recommended to enable DHT especially when ``tr``
  1257. parameter is missing. See http://www.bittorrent.org/beps/bep_0009.html
  1258. for more details about BitTorrent Magnet URI.
  1259. You can also specify arbitrary number of torrent files and Metalink
  1260. documents stored on a local drive. Please note that they are always
  1261. treated as a separate download. Both Metalink4 and Metalink version
  1262. 3.0 are supported.
  1263. You can specify both torrent file with -T option and URIs. By doing
  1264. this, you can download a file from both torrent swarm and
  1265. HTTP(S)/FTP/SFTP server at the same time, while the data from
  1266. HTTP(S)/FTP/SFTP are uploaded to the torrent swarm. For single file
  1267. torrents, URI can be a complete URI pointing to the resource or if URI
  1268. ends with /, name in torrent file in torrent is added. For multi-file
  1269. torrents, name and path are added to form a URI for each file.
  1270. .. note::
  1271. Make sure that URI is quoted with single(``'``) or double(``"``) quotation if it
  1272. contains ``&`` or any characters that have special meaning in shell.
  1273. Resuming Download
  1274. ~~~~~~~~~~~~~~~~~
  1275. Usually, you can resume transfer by just issuing same command (aria2c
  1276. URI) if the previous transfer is made by aria2.
  1277. If the previous transfer is made by a browser or wget like sequential
  1278. download manager, then use :option:`--continue <-c>` option to continue the
  1279. transfer.
  1280. Event Hook
  1281. ~~~~~~~~~~
  1282. aria2 provides options to specify arbitrary command after specific event
  1283. occurred. Currently following options are available:
  1284. :option:`--on-bt-download-complete`,
  1285. :option:`--on-download-pause`,
  1286. :option:`--on-download-complete`.
  1287. :option:`--on-download-start`,
  1288. :option:`--on-download-error`,
  1289. :option:`--on-download-stop`.
  1290. aria2 passes 3 arguments to specified command when it is executed.
  1291. These arguments are: GID, the number of files and file path. For
  1292. HTTP, FTP, and SFTP downloads, usually the number of files is 1.
  1293. BitTorrent download can contain multiple files. If number of files is
  1294. more than one, file path is first one. In other words, this is the
  1295. value of path key of first struct whose selected key is true in the
  1296. response of :func:`aria2.getFiles` RPC method. If you want to get all
  1297. file paths, consider to use JSON-RPC/XML-RPC. Please note that file
  1298. path may change during download in HTTP because of redirection or
  1299. Content-Disposition header.
  1300. Let's see an example of how arguments are passed to command:
  1301. .. code-block:: console
  1302. $ cat hook.sh
  1303. #!/bin/sh
  1304. echo "Called with [$1] [$2] [$3]"
  1305. $ aria2c --on-download-complete hook.sh http://example.org/file.iso
  1306. Called with [1] [1] [/path/to/file.iso]
  1307. .. _exit-status:
  1308. EXIT STATUS
  1309. -----------
  1310. Because aria2 can handle multiple downloads at once, it encounters
  1311. lots of errors in a session. aria2 returns the following exit status
  1312. based on the last error encountered.
  1313. 0
  1314. If all downloads were successful.
  1315. 1
  1316. If an unknown error occurred.
  1317. 2
  1318. If time out occurred.
  1319. 3
  1320. If a resource was not found.
  1321. 4
  1322. If aria2 saw the specified number of "resource not found" error.
  1323. See :option:`--max-file-not-found` option.
  1324. 5
  1325. If a download aborted because download speed was too slow.
  1326. See :option:`--lowest-speed-limit` option.
  1327. 6
  1328. If network problem occurred.
  1329. 7
  1330. If there were unfinished downloads. This error is only reported if
  1331. all finished downloads were successful and there were unfinished
  1332. downloads in a queue when aria2 exited by pressing :kbd:`Ctrl-C` by an user
  1333. or sending TERM or INT signal.
  1334. 8
  1335. If remote server did not support resume when resume was required to
  1336. complete download.
  1337. 9
  1338. If there was not enough disk space available.
  1339. 10
  1340. If piece length was different from one in .aria2 control file. See
  1341. :option:`--allow-piece-length-change` option.
  1342. 11
  1343. If aria2 was downloading same file at that moment.
  1344. 12
  1345. If aria2 was downloading same info hash torrent at that moment.
  1346. 13
  1347. If file already existed. See :option:`--allow-overwrite` option.
  1348. 14
  1349. If renaming file failed. See :option:`--auto-file-renaming` option.
  1350. 15
  1351. If aria2 could not open existing file.
  1352. 16
  1353. If aria2 could not create new file or truncate existing file.
  1354. 17
  1355. If file I/O error occurred.
  1356. 18
  1357. If aria2 could not create directory.
  1358. 19
  1359. If name resolution failed.
  1360. 20
  1361. If aria2 could not parse Metalink document.
  1362. 21
  1363. If FTP command failed.
  1364. 22
  1365. If HTTP response header was bad or unexpected.
  1366. 23
  1367. If too many redirects occurred.
  1368. 24
  1369. If HTTP authorization failed.
  1370. 25
  1371. If aria2 could not parse bencoded file (usually ".torrent" file).
  1372. 26
  1373. If ".torrent" file was corrupted or missing information that aria2 needed.
  1374. 27
  1375. If Magnet URI was bad.
  1376. 28
  1377. If bad/unrecognized option was given or unexpected option argument
  1378. was given.
  1379. 29
  1380. If the remote server was unable to handle the request due to a
  1381. temporary overloading or maintenance.
  1382. 30
  1383. If aria2 could not parse JSON-RPC request.
  1384. 31
  1385. Reserved. Not used.
  1386. 32
  1387. If checksum validation failed.
  1388. .. note::
  1389. An error occurred in a finished download will not be reported
  1390. as exit status.
  1391. ENVIRONMENT
  1392. -----------
  1393. aria2 recognizes the following environment variables.
  1394. ``http_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1395. Specify proxy server for use in HTTP.
  1396. Overrides http-proxy value in configuration file.
  1397. The command-line option :option:`--http-proxy` overrides this value.
  1398. ``https_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1399. Specify proxy server for use in HTTPS.
  1400. Overrides https-proxy value in configuration file.
  1401. The command-line option :option:`--https-proxy` overrides this value.
  1402. ``ftp_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1403. Specify proxy server for use in FTP.
  1404. Overrides ftp-proxy value in configuration file.
  1405. The command-line option :option:`--ftp-proxy` overrides this value.
  1406. ``all_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1407. Specify proxy server for use if no protocol-specific proxy is specified.
  1408. Overrides all-proxy value in configuration file.
  1409. The command-line option :option:`--all-proxy` overrides this value.
  1410. .. note::
  1411. Although aria2 accepts ``ftp://`` and ``https://`` scheme in proxy URI, it
  1412. simply assumes that ``http://`` is specified and does not change its
  1413. behavior based on the specified scheme.
  1414. ``no_proxy [DOMAIN,...]``
  1415. Specify a comma-separated list of host names, domains and network addresses
  1416. with or without a subnet mask where no proxy should be used. Overrides the
  1417. `no-proxy` value in configuration file. The command-line option
  1418. :option:`--no-proxy` overrides this value.
  1419. FILES
  1420. -----
  1421. aria2.conf
  1422. ~~~~~~~~~~
  1423. By default, aria2 checks whether the legacy path
  1424. ``$HOME/.aria2/aria2.conf`` is present, otherwise it parses
  1425. ``$XDG_CONFIG_HOME/aria2/aria2.conf`` as its configuration file. You
  1426. can specify the path to configuration file using :option:`--conf-path`
  1427. option. If you don't want to use the configuration file, use
  1428. :option:`--no-conf` option.
  1429. The configuration file is a text file and has 1 option per each
  1430. line. In each line, you can specify name-value pair in the format:
  1431. ``NAME=VALUE``, where name is the long command-line option name without
  1432. ``--`` prefix. You can use same syntax for the command-line option. The
  1433. lines beginning ``#`` are treated as comments::
  1434. # sample configuration file for aria2c
  1435. listen-port=60000
  1436. dht-listen-port=60000
  1437. seed-ratio=1.0
  1438. max-upload-limit=50K
  1439. ftp-pasv=true
  1440. .. note::
  1441. The confidential information such as user/password might be included
  1442. in the configuration file. It is recommended to change file mode
  1443. bits of the configuration file (e.g., ``chmod 600 aria2.conf``), so
  1444. that other user cannot see the contents of the file.
  1445. The environment variables, such as ``${HOME}``, are expanded by shell.
  1446. This means that those variables used in configuration file are not
  1447. expanded. However, it is useful to ``${HOME}`` to refer user's home
  1448. directory in configuration file to specify file paths. Therefore,
  1449. aria2 expands ``${HOME}`` found in the following option values to
  1450. user's home directory:
  1451. * :option:`ca-certificate <--ca-certificate>`
  1452. * :option:`certificate <--certificate>`
  1453. * :option:`dht-file-path <--dht-file-path>`
  1454. * :option:`dht-file-path6 <--dht-file-path6>`
  1455. * :option:`dir <--dir>`
  1456. * :option:`input-file <--input-file>`
  1457. * :option:`load-cookies <--load-cookies>`
  1458. * :option:`log <--log>`
  1459. * :option:`metalink-file <--metalink-file>`
  1460. * :option:`netrc-path <--netrc-path>`
  1461. * :option:`on-bt-download-complete <--on-bt-download-complete>`
  1462. * :option:`on-download-complete <--on-download-complete>`
  1463. * :option:`on-download-error <--on-download-error>`
  1464. * :option:`on-download-start <--on-download-start>`
  1465. * :option:`on-download-stop <--on-download-stop>`
  1466. * :option:`on-download-pause <--on-download-pause>`
  1467. * :option:`out <--out>`
  1468. * :option:`private-key <--private-key>`
  1469. * :option:`rpc-certificate <--rpc-certificate>`
  1470. * :option:`rpc-private-key <--rpc-private-key>`
  1471. * :option:`save-cookies <--save-cookies>`
  1472. * :option:`save-session <--save-session>`
  1473. * :option:`server-stat-if <--server-stat-if>`
  1474. * :option:`server-stat-of <--server-stat-of>`
  1475. * :option:`torrent-file <--torrent-file>`
  1476. Note that this expansion occurs even if the above options are used in
  1477. the command-line. This means that expansion may occur 2 times: first,
  1478. shell and then aria2c.
  1479. dht.dat
  1480. ~~~~~~~~
  1481. Unless the legacy file paths ``$HOME/.aria2/dht.dat`` and
  1482. ``$HOME/.aria2/dht6.dat`` are pointing to existing files, the routing
  1483. table of IPv4 DHT is saved to the path
  1484. ``$XDG_CACHE_HOME/aria2/dht.dat`` and the routing table of IPv6 DHT is
  1485. saved to the path ``$XDG_CACHE_HOME/aria2/dht6.dat``.
  1486. Netrc
  1487. ~~~~~
  1488. Netrc support is enabled by default for HTTP(S)/FTP/SFTP. To disable
  1489. netrc support, specify :option:`--no-netrc <-n>` option. Your .netrc
  1490. file should have correct permissions(600).
  1491. If machine name starts ``.``, aria2 performs domain-match instead of
  1492. exact match. This is an extension of aria2. For example of domain
  1493. match, imagine the following .netrc entry::
  1494. machine .example.org login myid password mypasswd
  1495. ``aria2.example.org`` domain-matches ``.example.org`` and uses ``myid`` and
  1496. ``mypasswd``.
  1497. Some domain-match example follow: ``example.net`` does not domain-match
  1498. ``.example.org``. ``example.org`` does not domain-match ``.example.org``
  1499. because of preceding ``.``. If you want to match ``example.org``, specify
  1500. ``example.org``.
  1501. Control File
  1502. ~~~~~~~~~~~~
  1503. aria2 uses a control file to track the progress of a download. A
  1504. control file is placed in the same directory as the downloading file
  1505. and its file name is the file name of downloading file with ``.aria2``
  1506. appended. For example, if you are downloading file.zip, then the
  1507. control file should be file.zip.aria2. (There is a exception for this
  1508. naming convention. If you are downloading a multi torrent, its
  1509. control file is the "top directory" name of the torrent with ``.aria2``
  1510. appended. The "top directory" name is a value of "name" key in "info"
  1511. directory in a torrent file.)
  1512. Usually a control file is deleted once download completed. If aria2
  1513. decides that download cannot be resumed(for example, when downloading
  1514. a file from a HTTP server which doesn't support resume), a control
  1515. file is not created.
  1516. Normally if you lose a control file, you cannot resume download. But
  1517. if you have a torrent or metalink with chunk checksums for the file,
  1518. you can resume the download without a control file by giving -V option
  1519. to aria2c in command-line.
  1520. .. _input-file:
  1521. Input File
  1522. ~~~~~~~~~~
  1523. The input file can contain a list of URIs for aria2 to download. You
  1524. can specify multiple URIs for a single entity: separate URIs on a
  1525. single line using the TAB character.
  1526. Each line is treated as if it is provided in command-line argument.
  1527. Therefore they are affected by :option:`--force-sequential <-Z>` and :option:`--parameterized-uri <-P>` options.
  1528. Since URIs in the input file are directly read by aria2, they must not
  1529. be quoted with single(``'``) or double(``"``) quotation.
  1530. Lines starting with ``#`` are treated as comments and skipped.
  1531. Additionally, the following options can be specified after each line
  1532. of URIs. These optional lines must start with white space(s).
  1533. .. hlist::
  1534. :columns: 3
  1535. * :option:`all-proxy <--all-proxy>`
  1536. * :option:`all-proxy-passwd <--all-proxy-passwd>`
  1537. * :option:`all-proxy-user <--all-proxy-user>`
  1538. * :option:`allow-overwrite <--allow-overwrite>`
  1539. * :option:`allow-piece-length-change <--allow-piece-length-change>`
  1540. * :option:`always-resume <--always-resume>`
  1541. * :option:`async-dns <--async-dns>`
  1542. * :option:`auto-file-renaming <--auto-file-renaming>`
  1543. * :option:`bt-enable-hook-after-hash-check <--bt-enable-hook-after-hash-check>`
  1544. * :option:`bt-enable-lpd <--bt-enable-lpd>`
  1545. * :option:`bt-exclude-tracker <--bt-exclude-tracker>`
  1546. * :option:`bt-external-ip <--bt-external-ip>`
  1547. * :option:`bt-force-encryption <--bt-force-encryption>`
  1548. * :option:`bt-hash-check-seed <--bt-hash-check-seed>`
  1549. * :option:`bt-load-saved-metadata <--bt-load-saved-metadata>`
  1550. * :option:`bt-max-peers <--bt-max-peers>`
  1551. * :option:`bt-metadata-only <--bt-metadata-only>`
  1552. * :option:`bt-min-crypto-level <--bt-min-crypto-level>`
  1553. * :option:`bt-prioritize-piece <--bt-prioritize-piece>`
  1554. * :option:`bt-remove-unselected-file <--bt-remove-unselected-file>`
  1555. * :option:`bt-request-peer-speed-limit <--bt-request-peer-speed-limit>`
  1556. * :option:`bt-require-crypto <--bt-require-crypto>`
  1557. * :option:`bt-save-metadata <--bt-save-metadata>`
  1558. * :option:`bt-seed-unverified <--bt-seed-unverified>`
  1559. * :option:`bt-stop-timeout <--bt-stop-timeout>`
  1560. * :option:`bt-tracker <--bt-tracker>`
  1561. * :option:`bt-tracker-connect-timeout <--bt-tracker-connect-timeout>`
  1562. * :option:`bt-tracker-interval <--bt-tracker-interval>`
  1563. * :option:`bt-tracker-timeout <--bt-tracker-timeout>`
  1564. * :option:`check-integrity <-V>`
  1565. * :option:`checksum <--checksum>`
  1566. * :option:`conditional-get <--conditional-get>`
  1567. * :option:`connect-timeout <--connect-timeout>`
  1568. * :option:`content-disposition-default-utf8 <--content-disposition-default-utf8>`
  1569. * :option:`continue <-c>`
  1570. * :option:`dir <-d>`
  1571. * :option:`dry-run <--dry-run>`
  1572. * :option:`enable-http-keep-alive <--enable-http-keep-alive>`
  1573. * :option:`enable-http-pipelining <--enable-http-pipelining>`
  1574. * :option:`enable-mmap <--enable-mmap>`
  1575. * :option:`enable-peer-exchange <--enable-peer-exchange>`
  1576. * :option:`file-allocation <--file-allocation>`
  1577. * :option:`follow-metalink <--follow-metalink>`
  1578. * :option:`follow-torrent <--follow-torrent>`
  1579. * :option:`force-save <--force-save>`
  1580. * :option:`ftp-passwd <--ftp-passwd>`
  1581. * :option:`ftp-pasv <-p>`
  1582. * :option:`ftp-proxy <--ftp-proxy>`
  1583. * :option:`ftp-proxy-passwd <--ftp-proxy-passwd>`
  1584. * :option:`ftp-proxy-user <--ftp-proxy-user>`
  1585. * :option:`ftp-reuse-connection <--ftp-reuse-connection>`
  1586. * :option:`ftp-type <--ftp-type>`
  1587. * :option:`ftp-user <--ftp-user>`
  1588. * :option:`gid <--gid>`
  1589. * :option:`hash-check-only <--hash-check-only>`
  1590. * :option:`header <--header>`
  1591. * :option:`http-accept-gzip <--http-accept-gzip>`
  1592. * :option:`http-auth-challenge <--http-auth-challenge>`
  1593. * :option:`http-no-cache <--http-no-cache>`
  1594. * :option:`http-passwd <--http-passwd>`
  1595. * :option:`http-proxy <--http-proxy>`
  1596. * :option:`http-proxy-passwd <--http-proxy-passwd>`
  1597. * :option:`http-proxy-user <--http-proxy-user>`
  1598. * :option:`http-user <--http-user>`
  1599. * :option:`https-proxy <--https-proxy>`
  1600. * :option:`https-proxy-passwd <--https-proxy-passwd>`
  1601. * :option:`https-proxy-user <--https-proxy-user>`
  1602. * :option:`index-out <-O>`
  1603. * :option:`lowest-speed-limit <--lowest-speed-limit>`
  1604. * :option:`max-connection-per-server <-x>`
  1605. * :option:`max-download-limit <--max-download-limit>`
  1606. * :option:`max-file-not-found <--max-file-not-found>`
  1607. * :option:`max-mmap-limit <--max-mmap-limit>`
  1608. * :option:`max-resume-failure-tries <--max-resume-failure-tries>`
  1609. * :option:`max-tries <-m>`
  1610. * :option:`max-upload-limit <-u>`
  1611. * :option:`metalink-base-uri <--metalink-base-uri>`
  1612. * :option:`metalink-enable-unique-protocol <--metalink-enable-unique-protocol>`
  1613. * :option:`metalink-language <--metalink-language>`
  1614. * :option:`metalink-location <--metalink-location>`
  1615. * :option:`metalink-os <--metalink-os>`
  1616. * :option:`metalink-preferred-protocol <--metalink-preferred-protocol>`
  1617. * :option:`metalink-version <--metalink-version>`
  1618. * :option:`min-split-size <-k>`
  1619. * :option:`no-file-allocation-limit <--no-file-allocation-limit>`
  1620. * :option:`no-netrc <-n>`
  1621. * :option:`no-proxy <--no-proxy>`
  1622. * :option:`out <-o>`
  1623. * :option:`parameterized-uri <-P>`
  1624. * :option:`pause <--pause>`
  1625. * :option:`pause-metadata <--pause-metadata>`
  1626. * :option:`piece-length <--piece-length>`
  1627. * :option:`proxy-method <--proxy-method>`
  1628. * :option:`realtime-chunk-checksum <--realtime-chunk-checksum>`
  1629. * :option:`referer <--referer>`
  1630. * :option:`remote-time <-R>`
  1631. * :option:`remove-control-file <--remove-control-file>`
  1632. * :option:`retry-wait <--retry-wait>`
  1633. * :option:`reuse-uri <--reuse-uri>`
  1634. * :option:`rpc-save-upload-metadata <--rpc-save-upload-metadata>`
  1635. * :option:`seed-ratio <--seed-ratio>`
  1636. * :option:`seed-time <--seed-time>`
  1637. * :option:`select-file <--select-file>`
  1638. * :option:`split <-s>`
  1639. * :option:`ssh-host-key-md <--ssh-host-key-md>`
  1640. * :option:`stream-piece-selector <--stream-piece-selector>`
  1641. * :option:`timeout <-t>`
  1642. * :option:`uri-selector <--uri-selector>`
  1643. * :option:`use-head <--use-head>`
  1644. * :option:`user-agent <-U>`
  1645. These options have exactly same meaning of the ones in the
  1646. command-line options, but it just applies to the URIs it belongs to.
  1647. Please note that for options in input file ``--`` prefix must be
  1648. stripped.
  1649. For example, the content of uri.txt is::
  1650. http://server/file.iso http://mirror/file.iso
  1651. dir=/iso_images
  1652. out=file.img
  1653. http://foo/bar
  1654. If aria2 is executed with ``-i uri.txt -d /tmp`` options, then
  1655. ``file.iso`` is saved as ``/iso_images/file.img`` and it is downloaded
  1656. from ``http://server/file.iso`` and ``http://mirror/file.iso``. The file
  1657. ``bar`` is downloaded from ``http://foo/bar`` and saved as ``/tmp/bar``.
  1658. In some cases, :option:`out <-o>` parameter has no effect.
  1659. See note of :option:`--out <-o>`
  1660. option for the restrictions.
  1661. Server Performance Profile
  1662. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  1663. This section describes the format of server performance profile. The
  1664. file is plain text and each line has several ``NAME=VALUE`` pair,
  1665. delimited by comma. Currently following NAMEs are recognized:
  1666. ``host``
  1667. Host name of the server. Required.
  1668. ``protocol``
  1669. Protocol for this profile, such as ftp, http. Required.
  1670. ``dl_speed``
  1671. The average download speed observed in the previous download in
  1672. bytes per sec. Required.
  1673. ``sc_avg_speed``
  1674. The average download speed observed in the previous download in
  1675. bytes per sec. This value is only updated if the download is done in
  1676. single connection environment and only used by
  1677. AdaptiveURISelector. Optional.
  1678. ``mc_avg_speed``
  1679. The average download speed observed in the previous download in
  1680. bytes per sec. This value is only updated if the download is done in
  1681. multi connection environment and only used by
  1682. AdaptiveURISelector. Optional.
  1683. ``counter``
  1684. How many times the server is used. Currently this value is only used
  1685. by AdaptiveURISelector. Optional.
  1686. ``last_updated``
  1687. Last contact time in GMT with this server, specified in the seconds
  1688. since the Epoch(00:00:00 on January 1, 1970, UTC). Required.
  1689. ``status``
  1690. ERROR is set when server cannot be reached or out-of-service or
  1691. timeout occurred. Otherwise, OK is set.
  1692. Those fields must exist in one line. The order of the fields is not
  1693. significant. You can put pairs other than the above; they are simply
  1694. ignored.
  1695. An example follows::
  1696. host=localhost, protocol=http, dl_speed=32000, last_updated=1222491640, status=OK
  1697. host=localhost, protocol=ftp, dl_speed=0, last_updated=1222491632, status=ERROR
  1698. RPC INTERFACE
  1699. -------------
  1700. aria2 provides JSON-RPC over HTTP and XML-RPC over HTTP interfaces that offer
  1701. basically the same functionality. aria2 also provides JSON-RPC
  1702. over WebSocket. JSON-RPC over WebSocket uses the same method signatures
  1703. and response format as JSON-RPC over HTTP, but additionally provides
  1704. server-initiated notifications. See `JSON-RPC over WebSocket`_ section for more
  1705. information.
  1706. The request path of the JSON-RPC interface (for both over HTTP and over
  1707. WebSocket) is ``/jsonrpc``. The request path of the XML-RPC interface is
  1708. ``/rpc``.
  1709. The WebSocket URI for JSON-RPC over WebSocket is
  1710. ``ws://HOST:PORT/jsonrpc``. If you enabled SSL/TLS encryption, use
  1711. ``wss://HOST:PORT/jsonrpc`` instead.
  1712. The implemented JSON-RPC is based on JSON-RPC 2.0
  1713. <http://jsonrpc.org/specification>, and
  1714. supports HTTP POST and GET (JSONP). The WebSocket transport is
  1715. an aria2 extension.
  1716. The JSON-RPC interface does not support notifications over HTTP, but the
  1717. RPC server will send notifications over WebSocket. It also does not
  1718. support floating point numbers. The character encoding must be UTF-8.
  1719. When reading the following documentation for JSON-RPC, interpret structs as JSON
  1720. objects.
  1721. Terminology
  1722. ~~~~~~~~~~~
  1723. GID
  1724. The GID (or gid) is a key to manage each download. Each download will be
  1725. assigned a unique GID. The GID is stored as 64-bit binary value in aria2.
  1726. For RPC access, it is represented as a hex string of 16 characters (e.g.,
  1727. ``2089b05ecca3d829``). Normally, aria2 generates this GID for each
  1728. download, but the user can specify GIDs manually using the :option:`--gid
  1729. <--gid>` option. When querying downloads by GID, you can specify only the
  1730. prefix of a GID as long as it is unique among others.
  1731. .. _rpc_auth:
  1732. RPC authorization secret token
  1733. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1734. As of 1.18.4, in addition to HTTP basic authorization, aria2 provides
  1735. RPC method-level authorization. In a future release, HTTP basic
  1736. authorization will be removed and RPC method-level authorization will
  1737. become mandatory.
  1738. To use RPC method-level authorization, the user has to specify an RPC secret
  1739. authorization token using the :option:`--rpc-secret` option. For each RPC
  1740. method call, the caller has to include the token prefixed with
  1741. ``token:``. Even when the :option:`--rpc-secret` option is not used, if the
  1742. first parameter in the RPC method is a string and starts with ``token:``, it
  1743. will removed from the parameter list before the request is being processed.
  1744. For example, if the RPC secret authorization token is ``$$secret$$``,
  1745. calling `aria2.addUri` RPC method would have to look like this::
  1746. aria2.addUri("token:$$secret$$", ["http://example.org/file"])
  1747. The `system.multicall` RPC method is treated specially. Since the XML-RPC
  1748. specification only allows a single array as a parameter for this method, we
  1749. don't specify the token in the call. Instead, each nested method call has
  1750. to provide the token as the first parameter as described above.
  1751. .. note::
  1752. The secret token validation in aria2 is designed to take at least a certain
  1753. amount of time to mitigate brute-force/dictionary attacks against the RPC
  1754. interface. Therefore it is recommended to prefer Batch or `system.multicall`
  1755. requests when appropriate.
  1756. `system.listMethods` and `system.listNotifications` can be executed without token. Since they just
  1757. return available methods/notifications, they do not alter anything, they're safe without secret token.
  1758. Methods
  1759. ~~~~~~~
  1760. All code examples are compatible with the Python 2.7 interpreter.
  1761. For information on the *secret* parameter, see :ref:`rpc_auth`.
  1762. .. function:: aria2.addUri([secret], uris[, options[, position]])
  1763. This method adds a new download. *uris* is an array of
  1764. HTTP/FTP/SFTP/BitTorrent URIs (strings) pointing to the same
  1765. resource. If you mix URIs pointing to different resources, then the
  1766. download may fail or be corrupted without aria2 complaining. When
  1767. adding BitTorrent Magnet URIs, *uris* must have only one element and
  1768. it should be BitTorrent Magnet URI. *options* is a struct and its
  1769. members are pairs of option name and value. See :ref:`rpc_options`
  1770. below for more details. If *position* is given, it must be an
  1771. integer starting from 0. The new download will be inserted at
  1772. *position* in the waiting queue. If *position* is omitted or
  1773. *position* is larger than the current size of the queue, the new
  1774. download is appended to the end of the queue. This method returns
  1775. the GID of the newly registered download.
  1776. **JSON-RPC Example**
  1777. The following example adds ``http://example.org/file``::
  1778. >>> import urllib2, json
  1779. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1780. ... 'method':'aria2.addUri',
  1781. ... 'params':[['http://example.org/file']]})
  1782. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1783. >>> c.read()
  1784. '{"id":"qwer","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1785. **XML-RPC Example**
  1786. The following example adds ``http://example.org/file``::
  1787. >>> import xmlrpclib
  1788. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1789. >>> s.aria2.addUri(['http://example.org/file'])
  1790. '2089b05ecca3d829'
  1791. The following example adds a new download with two sources and some options::
  1792. >>> s.aria2.addUri(['http://example.org/file', 'http://mirror/file'],
  1793. dict(dir="/tmp"))
  1794. 'd2703803b52216d1'
  1795. The following example adds a download and inserts it to the front of the
  1796. queue::
  1797. >>> s.aria2.addUri(['http://example.org/file'], {}, 0)
  1798. 'ca3d829cee549a4d'
  1799. .. function:: aria2.addTorrent([secret], torrent[, uris[, options[, position]]])
  1800. This method adds a BitTorrent download by uploading a ".torrent" file.
  1801. If you want to add a BitTorrent Magnet URI, use the :func:`aria2.addUri`
  1802. method instead. *torrent* must be a base64-encoded string containing the
  1803. contents of the ".torrent" file.
  1804. *uris* is an array of URIs (string). *uris* is used for
  1805. Web-seeding. For single file torrents, the URI can be a complete URI
  1806. pointing to the resource; if URI ends with /, name in torrent file
  1807. is added. For multi-file torrents, name and path in torrent are
  1808. added to form a URI for each file.
  1809. *options* is a struct and its members are pairs of option name and value.
  1810. See :ref:`rpc_options` below for more details.
  1811. If *position* is given, it must be an integer starting from 0. The new
  1812. download will be inserted at *position* in the waiting queue. If
  1813. *position* is omitted or *position* is larger than the current size of the
  1814. queue, the new download is appended to the end of the queue.
  1815. This method returns the GID of the newly registered download.
  1816. If :option:`--rpc-save-upload-metadata` is ``true``, the
  1817. uploaded data is saved as a file named as the hex string of SHA-1 hash of
  1818. data plus ".torrent" in the directory specified by :option:`--dir
  1819. <-d>` option. E.g. a file name might be
  1820. ``0a3893293e27ac0490424c06de4d09242215f0a6.torrent``. If a file with the
  1821. same name already exists, it is overwritten! If the file cannot be saved
  1822. successfully or :option:`--rpc-save-upload-metadata` is ``false``,
  1823. the downloads added by this method are not saved by :option:`--save-session`.
  1824. The following examples add local file ``file.torrent``.
  1825. **JSON-RPC Example**
  1826. ::
  1827. >>> import urllib2, json, base64
  1828. >>> torrent = base64.b64encode(open('file.torrent').read())
  1829. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'asdf',
  1830. ... 'method':'aria2.addTorrent', 'params':[torrent]})
  1831. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1832. >>> c.read()
  1833. '{"id":"asdf","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1834. **XML-RPC Example**
  1835. ::
  1836. >>> import xmlrpclib
  1837. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1838. >>> s.aria2.addTorrent(xmlrpclib.Binary(open('file.torrent', mode='rb').read()))
  1839. '2089b05ecca3d829'
  1840. .. function:: aria2.addMetalink([secret], metalink[, options[, position]])
  1841. This method adds a Metalink download by uploading a ".metalink" file.
  1842. *metalink* is a base64-encoded string which contains the contents of the
  1843. ".metalink" file.
  1844. *options* is a struct and its members are pairs of option name and value.
  1845. See :ref:`rpc_options` below for more details.
  1846. If *position* is given, it must be an integer starting from 0. The new
  1847. download will be inserted at *position* in the waiting queue. If
  1848. *position* is omitted or *position* is larger than the current size of the
  1849. queue, the new download is appended to the end of the queue.
  1850. This method returns an array of GIDs of newly registered downloads.
  1851. If :option:`--rpc-save-upload-metadata` is ``true``, the uploaded data
  1852. is saved as a file named hex string of SHA-1 hash of data plus
  1853. ".metalink" in the directory specified by :option:`--dir <-d>`
  1854. option. E.g. a file name might be
  1855. ``0a3893293e27ac0490424c06de4d09242215f0a6.metalink``. If a file with the
  1856. same name already exists, it is overwritten! If the file cannot be saved
  1857. successfully or :option:`--rpc-save-upload-metadata` is ``false``,
  1858. the downloads added by this method are not saved by
  1859. :option:`--save-session`.
  1860. The following examples add local file file.meta4.
  1861. **JSON-RPC Example**
  1862. ::
  1863. >>> import urllib2, json, base64
  1864. >>> metalink = base64.b64encode(open('file.meta4').read())
  1865. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1866. ... 'method':'aria2.addMetalink',
  1867. ... 'params':[metalink]})
  1868. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1869. >>> c.read()
  1870. '{"id":"qwer","jsonrpc":"2.0","result":["2089b05ecca3d829"]}'
  1871. **XML-RPC Example**
  1872. ::
  1873. >>> import xmlrpclib
  1874. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1875. >>> s.aria2.addMetalink(xmlrpclib.Binary(open('file.meta4', mode='rb').read()))
  1876. ['2089b05ecca3d829']
  1877. .. function:: aria2.remove([secret], gid)
  1878. This method removes the download denoted by *gid* (string). If the specified
  1879. download is in progress, it is first stopped. The status of the removed
  1880. download becomes ``removed``.
  1881. This method returns GID of removed download.
  1882. The following examples remove a download with GID#2089b05ecca3d829.
  1883. **JSON-RPC Example**
  1884. ::
  1885. >>> import urllib2, json
  1886. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1887. ... 'method':'aria2.remove',
  1888. ... 'params':['2089b05ecca3d829']})
  1889. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1890. >>> c.read()
  1891. '{"id":"qwer","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1892. **XML-RPC Example**
  1893. ::
  1894. >>> import xmlrpclib
  1895. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1896. >>> s.aria2.remove('2089b05ecca3d829')
  1897. '2089b05ecca3d829'
  1898. .. function:: aria2.forceRemove([secret], gid)
  1899. This method removes the download denoted by *gid*. This method
  1900. behaves just like :func:`aria2.remove` except that this method removes
  1901. the download without performing any actions which take time, such as
  1902. contacting BitTorrent trackers to unregister the download first.
  1903. .. function:: aria2.pause([secret], gid)
  1904. This method pauses the download denoted by *gid* (string). The status of
  1905. paused download becomes ``paused``. If the download was active, the download
  1906. is placed in the front of waiting queue. While the status is ``paused``,
  1907. the download is not started. To change status to ``waiting``, use the
  1908. :func:`aria2.unpause` method.
  1909. This method returns GID of paused download.
  1910. .. function:: aria2.pauseAll([secret])
  1911. This method is equal to calling :func:`aria2.pause` for every active/waiting
  1912. download. This methods returns ``OK``.
  1913. .. function:: aria2.forcePause([secret], gid)
  1914. This method pauses the download denoted by *gid*. This method
  1915. behaves just like :func:`aria2.pause` except that this method pauses
  1916. downloads without performing any actions which take time, such as contacting
  1917. BitTorrent trackers to unregister the download first.
  1918. .. function:: aria2.forcePauseAll([secret])
  1919. This method is equal to calling :func:`aria2.forcePause` for every
  1920. active/waiting download. This methods returns ``OK``.
  1921. .. function:: aria2.unpause([secret], gid)
  1922. This method changes the status of the download denoted by *gid* (string) from
  1923. ``paused`` to ``waiting``, making the download eligible to be restarted.
  1924. This method returns the GID of the unpaused download.
  1925. .. function:: aria2.unpauseAll([secret])
  1926. This method is equal to calling :func:`aria2.unpause` for every paused
  1927. download. This methods returns ``OK``.
  1928. .. function:: aria2.tellStatus([secret], gid[, keys])
  1929. This method returns the progress of the download denoted by *gid* (string).
  1930. *keys* is an array of strings. If specified, the response contains only keys
  1931. in the *keys* array. If *keys* is empty or omitted, the response contains all
  1932. keys. This is useful when you just want specific keys and avoid unnecessary
  1933. transfers.
  1934. For example, ``aria2.tellStatus("2089b05ecca3d829", ["gid", "status"])``
  1935. returns the *gid* and *status* keys only. The response is a struct and
  1936. contains following keys. Values are strings.
  1937. ``gid``
  1938. GID of the download.
  1939. ``status``
  1940. ``active`` for currently downloading/seeding downloads.
  1941. ``waiting`` for downloads in the queue; download is not started.
  1942. ``paused`` for paused downloads.
  1943. ``error`` for downloads that were stopped because of error.
  1944. ``complete`` for stopped and completed downloads.
  1945. ``removed`` for the downloads removed by user.
  1946. ``totalLength``
  1947. Total length of the download in bytes.
  1948. ``completedLength``
  1949. Completed length of the download in bytes.
  1950. ``uploadLength``
  1951. Uploaded length of the download in bytes.
  1952. ``bitfield``
  1953. Hexadecimal representation of the download progress. The highest bit
  1954. corresponds to the piece at index 0. Any set bits indicate loaded pieces,
  1955. while unset bits indicate not yet loaded and/or missing pieces. Any overflow
  1956. bits at the end are set to zero. When the download was not started yet,
  1957. this key will not be included in the response.
  1958. ``downloadSpeed``
  1959. Download speed of this download measured in bytes/sec.
  1960. ``uploadSpeed``
  1961. Upload speed of this download measured in bytes/sec.
  1962. ``infoHash``
  1963. InfoHash. BitTorrent only.
  1964. ``numSeeders``
  1965. The number of seeders aria2 has connected to. BitTorrent only.
  1966. ``seeder``
  1967. ``true`` if the local endpoint is a seeder. Otherwise ``false``.
  1968. BitTorrent only.
  1969. ``pieceLength``
  1970. Piece length in bytes.
  1971. ``numPieces``
  1972. The number of pieces.
  1973. ``connections``
  1974. The number of peers/servers aria2 has connected to.
  1975. ``errorCode``
  1976. The code of the last error for this item, if any. The value
  1977. is a string. The error codes are defined in the `EXIT STATUS`_ section.
  1978. This value is only available for stopped/completed downloads.
  1979. ``errorMessage``
  1980. The (hopefully) human readable error message associated to
  1981. ``errorCode``.
  1982. ``followedBy``
  1983. List of GIDs which are generated as the result of this
  1984. download. For example, when aria2 downloads a Metalink file, it
  1985. generates downloads described in the Metalink (see the
  1986. :option:`--follow-metalink` option). This value is useful to track
  1987. auto-generated downloads. If there are no such downloads, this key will not
  1988. be included in the response.
  1989. ``following``
  1990. The reverse link for ``followedBy``. A download included in
  1991. ``followedBy`` has this object's GID in its ``following`` value.
  1992. ``belongsTo``
  1993. GID of a parent download. Some downloads are a part of another
  1994. download. For example, if a file in a Metalink has BitTorrent
  1995. resources, the downloads of ".torrent" files are parts of that parent.
  1996. If this download has no parent, this key will not be included in the
  1997. response.
  1998. ``dir``
  1999. Directory to save files.
  2000. ``files``
  2001. Returns the list of files. The elements of this list are the same structs
  2002. used in :func:`aria2.getFiles` method.
  2003. ``bittorrent``
  2004. Struct which contains information retrieved from the .torrent
  2005. (file). BitTorrent only. It contains following keys.
  2006. ``announceList``
  2007. List of lists of announce URIs. If the torrent contains ``announce``
  2008. and no ``announce-list``, ``announce`` is converted to the
  2009. ``announce-list`` format.
  2010. ``comment``
  2011. The comment of the torrent. ``comment.utf-8`` is used if available.
  2012. ``creationDate``
  2013. The creation time of the torrent. The value is an integer since
  2014. the epoch, measured in seconds.
  2015. ``mode``
  2016. File mode of the torrent. The value is either ``single`` or ``multi``.
  2017. ``info``
  2018. Struct which contains data from Info dictionary. It contains
  2019. following keys.
  2020. ``name``
  2021. name in info dictionary. ``name.utf-8`` is used if available.
  2022. ``verifiedLength``
  2023. The number of verified number of bytes while the files are being
  2024. hash checked. This key exists only when this download is being
  2025. hash checked.
  2026. ``verifyIntegrityPending``
  2027. ``true`` if this download is waiting for the hash check in a
  2028. queue. This key exists only when this download is in the queue.
  2029. **JSON-RPC Example**
  2030. The following example gets information about a download with GID#2089b05ecca3d829::
  2031. >>> import urllib2, json
  2032. >>> from pprint import pprint
  2033. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2034. ... 'method':'aria2.tellStatus',
  2035. ... 'params':['2089b05ecca3d829']})
  2036. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2037. >>> pprint(json.loads(c.read()))
  2038. {u'id': u'qwer',
  2039. u'jsonrpc': u'2.0',
  2040. u'result': {u'bitfield': u'0000000000',
  2041. u'completedLength': u'901120',
  2042. u'connections': u'1',
  2043. u'dir': u'/downloads',
  2044. u'downloadSpeed': u'15158',
  2045. u'files': [{u'index': u'1',
  2046. u'length': u'34896138',
  2047. u'completedLength': u'34896138',
  2048. u'path': u'/downloads/file',
  2049. u'selected': u'true',
  2050. u'uris': [{u'status': u'used',
  2051. u'uri': u'http://example.org/file'}]}],
  2052. u'gid': u'2089b05ecca3d829',
  2053. u'numPieces': u'34',
  2054. u'pieceLength': u'1048576',
  2055. u'status': u'active',
  2056. u'totalLength': u'34896138',
  2057. u'uploadLength': u'0',
  2058. u'uploadSpeed': u'0'}}
  2059. The following example gets only specific keys::
  2060. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2061. ... 'method':'aria2.tellStatus',
  2062. ... 'params':['2089b05ecca3d829',
  2063. ... ['gid',
  2064. ... 'totalLength',
  2065. ... 'completedLength']]})
  2066. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2067. >>> pprint(json.loads(c.read()))
  2068. {u'id': u'qwer',
  2069. u'jsonrpc': u'2.0',
  2070. u'result': {u'completedLength': u'5701632',
  2071. u'gid': u'2089b05ecca3d829',
  2072. u'totalLength': u'34896138'}}
  2073. **XML-RPC Example**
  2074. The following example gets information about a download with GID#2089b05ecca3d829::
  2075. >>> import xmlrpclib
  2076. >>> from pprint import pprint
  2077. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2078. >>> r = s.aria2.tellStatus('2089b05ecca3d829')
  2079. >>> pprint(r)
  2080. {'bitfield': 'ffff80',
  2081. 'completedLength': '34896138',
  2082. 'connections': '0',
  2083. 'dir': '/downloads',
  2084. 'downloadSpeed': '0',
  2085. 'errorCode': '0',
  2086. 'files': [{'index': '1',
  2087. 'length': '34896138',
  2088. 'completedLength': '34896138',
  2089. 'path': '/downloads/file',
  2090. 'selected': 'true',
  2091. 'uris': [{'status': 'used',
  2092. 'uri': 'http://example.org/file'}]}],
  2093. 'gid': '2089b05ecca3d829',
  2094. 'numPieces': '17',
  2095. 'pieceLength': '2097152',
  2096. 'status': 'complete',
  2097. 'totalLength': '34896138',
  2098. 'uploadLength': '0',
  2099. 'uploadSpeed': '0'}
  2100. The following example gets only specific keys::
  2101. >>> r = s.aria2.tellStatus('2089b05ecca3d829', ['gid', 'totalLength', 'completedLength'])
  2102. >>> pprint(r)
  2103. {'completedLength': '34896138', 'gid': '2089b05ecca3d829', 'totalLength': '34896138'}
  2104. .. function:: aria2.getUris([secret], gid)
  2105. This method returns the URIs used in the download denoted by *gid* (string).
  2106. The response is an array of structs and it contains following keys.
  2107. Values are string.
  2108. ``uri``
  2109. URI
  2110. ``status``
  2111. 'used' if the URI is in use. 'waiting' if the URI is still waiting in the
  2112. queue.
  2113. **JSON-RPC Example**
  2114. ::
  2115. >>> import urllib2, json
  2116. >>> from pprint import pprint
  2117. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2118. ... 'method':'aria2.getUris',
  2119. ... 'params':['2089b05ecca3d829']})
  2120. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2121. >>> pprint(json.loads(c.read()))
  2122. {u'id': u'qwer',
  2123. u'jsonrpc': u'2.0',
  2124. u'result': [{u'status': u'used',
  2125. u'uri': u'http://example.org/file'}]}
  2126. **XML-RPC Example**
  2127. ::
  2128. >>> import xmlrpclib
  2129. >>> from pprint import pprint
  2130. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2131. >>> r = s.aria2.getUris('2089b05ecca3d829')
  2132. >>> pprint(r)
  2133. [{'status': 'used', 'uri': 'http://example.org/file'}]
  2134. .. function:: aria2.getFiles([secret], gid)
  2135. This method returns the file list of the download denoted by *gid* (string).
  2136. The response is an array of structs which contain following keys.
  2137. Values are strings.
  2138. ``index``
  2139. Index of the file, starting at 1, in the same order as files appear in the
  2140. multi-file torrent.
  2141. ``path``
  2142. File path.
  2143. ``length``
  2144. File size in bytes.
  2145. ``completedLength``
  2146. Completed length of this file in bytes. Please note that it is
  2147. possible that sum of ``completedLength`` is less than the
  2148. ``completedLength`` returned by the :func:`aria2.tellStatus` method.
  2149. This is because ``completedLength`` in
  2150. :func:`aria2.getFiles`
  2151. only includes completed pieces. On the other hand, ``completedLength``
  2152. in :func:`aria2.tellStatus` also includes partially completed pieces.
  2153. ``selected``
  2154. ``true`` if this file is selected by :option:`--select-file` option. If
  2155. :option:`--select-file` is not specified or this is single-file torrent or
  2156. not a torrent download at all, this value is always ``true``. Otherwise
  2157. ``false``.
  2158. ``uris``
  2159. Returns a list of URIs for this file. The element type is the same struct
  2160. used in the :func:`aria2.getUris` method.
  2161. **JSON-RPC Example**
  2162. ::
  2163. >>> import urllib2, json
  2164. >>> from pprint import pprint
  2165. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2166. ... 'method':'aria2.getFiles',
  2167. ... 'params':['2089b05ecca3d829']})
  2168. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2169. >>> pprint(json.loads(c.read()))
  2170. {u'id': u'qwer',
  2171. u'jsonrpc': u'2.0',
  2172. u'result': [{u'index': u'1',
  2173. u'length': u'34896138',
  2174. u'completedLength': u'34896138',
  2175. u'path': u'/downloads/file',
  2176. u'selected': u'true',
  2177. u'uris': [{u'status': u'used',
  2178. u'uri': u'http://example.org/file'}]}]}
  2179. **XML-RPC Example**
  2180. ::
  2181. >>> import xmlrpclib
  2182. >>> from pprint import pprint
  2183. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2184. >>> r = s.aria2.getFiles('2089b05ecca3d829')
  2185. >>> pprint(r)
  2186. [{'index': '1',
  2187. 'length': '34896138',
  2188. 'completedLength': '34896138',
  2189. 'path': '/downloads/file',
  2190. 'selected': 'true',
  2191. 'uris': [{'status': 'used',
  2192. 'uri': 'http://example.org/file'}]}]
  2193. .. function:: aria2.getPeers([secret], gid)
  2194. This method returns a list peers of the download denoted by *gid* (string).
  2195. This method is for BitTorrent only. The response is an array of structs and
  2196. contains the following keys. Values are strings.
  2197. ``peerId``
  2198. Percent-encoded peer ID.
  2199. ``ip``
  2200. IP address of the peer.
  2201. ``port``
  2202. Port number of the peer.
  2203. ``bitfield``
  2204. Hexadecimal representation of the download progress of the peer. The
  2205. highest bit corresponds to the piece at index 0. Set bits indicate the
  2206. piece is available and unset bits indicate the piece is missing. Any
  2207. spare bits at the end are set to zero.
  2208. ``amChoking``
  2209. ``true`` if aria2 is choking the peer. Otherwise ``false``.
  2210. ``peerChoking``
  2211. ``true`` if the peer is choking aria2. Otherwise ``false``.
  2212. ``downloadSpeed``
  2213. Download speed (byte/sec) that this client obtains from the peer.
  2214. ``uploadSpeed``
  2215. Upload speed(byte/sec) that this client uploads to the peer.
  2216. ``seeder``
  2217. ``true`` if this peer is a seeder. Otherwise ``false``.
  2218. **JSON-RPC Example**
  2219. ::
  2220. >>> import urllib2, json
  2221. >>> from pprint import pprint
  2222. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2223. ... 'method':'aria2.getPeers',
  2224. ... 'params':['2089b05ecca3d829']})
  2225. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2226. >>> pprint(json.loads(c.read()))
  2227. {u'id': u'qwer',
  2228. u'jsonrpc': u'2.0',
  2229. u'result': [{u'amChoking': u'true',
  2230. u'bitfield': u'ffffffffffffffffffffffffffffffffffffffff',
  2231. u'downloadSpeed': u'10602',
  2232. u'ip': u'10.0.0.9',
  2233. u'peerChoking': u'false',
  2234. u'peerId': u'aria2%2F1%2E10%2E5%2D%87%2A%EDz%2F%F7%E6',
  2235. u'port': u'6881',
  2236. u'seeder': u'true',
  2237. u'uploadSpeed': u'0'},
  2238. {u'amChoking': u'false',
  2239. u'bitfield': u'ffffeff0fffffffbfffffff9fffffcfff7f4ffff',
  2240. u'downloadSpeed': u'8654',
  2241. u'ip': u'10.0.0.30',
  2242. u'peerChoking': u'false',
  2243. u'peerId': u'bittorrent client758',
  2244. u'port': u'37842',
  2245. u'seeder': u'false',
  2246. u'uploadSpeed': u'6890'}]}
  2247. **XML-RPC Example**
  2248. ::
  2249. >>> import xmlrpclib
  2250. >>> from pprint import pprint
  2251. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2252. >>> r = s.aria2.getPeers('2089b05ecca3d829')
  2253. >>> pprint(r)
  2254. [{'amChoking': 'true',
  2255. 'bitfield': 'ffffffffffffffffffffffffffffffffffffffff',
  2256. 'downloadSpeed': '10602',
  2257. 'ip': '10.0.0.9',
  2258. 'peerChoking': 'false',
  2259. 'peerId': 'aria2%2F1%2E10%2E5%2D%87%2A%EDz%2F%F7%E6',
  2260. 'port': '6881',
  2261. 'seeder': 'true',
  2262. 'uploadSpeed': '0'},
  2263. {'amChoking': 'false',
  2264. 'bitfield': 'ffffeff0fffffffbfffffff9fffffcfff7f4ffff',
  2265. 'downloadSpeed': '8654',
  2266. 'ip': '10.0.0.30',
  2267. 'peerChoking': 'false',
  2268. 'peerId': 'bittorrent client758',
  2269. 'port': '37842',
  2270. 'seeder': 'false,
  2271. 'uploadSpeed': '6890'}]
  2272. .. function:: aria2.getServers([secret], gid)
  2273. This method returns currently connected HTTP(S)/FTP/SFTP servers of
  2274. the download denoted by *gid* (string). The response is an array of
  2275. structs and contains the following keys. Values are strings.
  2276. ``index``
  2277. Index of the file, starting at 1, in the same order as files appear in the
  2278. multi-file metalink.
  2279. ``servers``
  2280. A list of structs which contain the following keys.
  2281. ``uri``
  2282. Original URI.
  2283. ``currentUri``
  2284. This is the URI currently used for downloading. If redirection is
  2285. involved, currentUri and uri may differ.
  2286. ``downloadSpeed``
  2287. Download speed (byte/sec)
  2288. **JSON-RPC Example**
  2289. ::
  2290. >>> import urllib2, json
  2291. >>> from pprint import pprint
  2292. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2293. ... 'method':'aria2.getServers',
  2294. ... 'params':['2089b05ecca3d829']})
  2295. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2296. >>> pprint(json.loads(c.read()))
  2297. {u'id': u'qwer',
  2298. u'jsonrpc': u'2.0',
  2299. u'result': [{u'index': u'1',
  2300. u'servers': [{u'currentUri': u'http://example.org/file',
  2301. u'downloadSpeed': u'10467',
  2302. u'uri': u'http://example.org/file'}]}]}
  2303. **XML-RPC Example**
  2304. ::
  2305. >>> import xmlrpclib
  2306. >>> from pprint import pprint
  2307. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2308. >>> r = s.aria2.getServers('2089b05ecca3d829')
  2309. >>> pprint(r)
  2310. [{'index': '1',
  2311. 'servers': [{'currentUri': 'http://example.org/dl/file',
  2312. 'downloadSpeed': '20285',
  2313. 'uri': 'http://example.org/file'}]}]
  2314. .. function:: aria2.tellActive([secret], [keys])
  2315. This method returns a list of active downloads. The response is an array of
  2316. the same structs as returned by the :func:`aria2.tellStatus` method.
  2317. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2318. .. function:: aria2.tellWaiting([secret], offset, num, [keys])
  2319. This method returns a list of waiting downloads, including paused
  2320. ones.
  2321. *offset* is an integer and specifies the offset from
  2322. the download waiting at the front.
  2323. *num* is an integer and specifies the max. number of downloads to be returned.
  2324. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2325. If *offset* is a positive integer, this method returns downloads in the
  2326. range of [*offset*, *offset* + *num*).
  2327. *offset* can be a negative integer. *offset* == -1 points last
  2328. download in the waiting queue and *offset* == -2 points the download
  2329. before the last download, and so on. Downloads in the response are
  2330. in reversed order then.
  2331. For example, imagine three downloads "A","B" and "C" are waiting
  2332. in this order. ``aria2.tellWaiting(0, 1)`` returns
  2333. ``["A"]``. ``aria2.tellWaiting(1, 2)`` returns ``["B", "C"]``.
  2334. ``aria2.tellWaiting(-1, 2)`` returns ``["C", "B"]``.
  2335. The response is an array of the same structs as returned by
  2336. :func:`aria2.tellStatus` method.
  2337. .. function:: aria2.tellStopped([secret], offset, num, [keys])
  2338. This method returns a list of stopped downloads.
  2339. *offset* is an integer and specifies the offset from the least recently
  2340. stopped download.
  2341. *num* is an integer and specifies the max. number of downloads to be returned.
  2342. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2343. *offset* and *num* have the same semantics as described in the
  2344. :func:`aria2.tellWaiting` method.
  2345. The response is an array of the same structs as returned by the
  2346. :func:`aria2.tellStatus` method.
  2347. .. function:: aria2.changePosition([secret], gid, pos, how)
  2348. This method changes the position of the download denoted by
  2349. *gid* in the queue.
  2350. *pos* is an integer.
  2351. *how* is a string. If *how* is ``POS_SET``, it moves the download to a
  2352. position relative to the beginning of the queue. If *how* is ``POS_CUR``, it
  2353. moves the download to a position relative to the current position. If *how* is
  2354. ``POS_END``, it moves the download to a position relative to the end of the
  2355. queue. If the destination position is less than 0 or beyond the end of
  2356. the queue, it moves the download to the beginning or the end of the
  2357. queue respectively. The response is an integer denoting the resulting
  2358. position.
  2359. For example, if GID#2089b05ecca3d829 is currently in position 3,
  2360. ``aria2.changePosition('2089b05ecca3d829', -1, 'POS_CUR')`` will
  2361. change its position to 2. Additionally
  2362. ``aria2.changePosition('2089b05ecca3d829', 0, 'POS_SET')`` will
  2363. change its position to 0 (the beginning of the queue).
  2364. The following examples move the download GID#2089b05ecca3d829 to the
  2365. front of the queue.
  2366. **JSON-RPC Example**
  2367. ::
  2368. >>> import urllib2, json
  2369. >>> from pprint import pprint
  2370. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2371. ... 'method':'aria2.changePosition',
  2372. ... 'params':['2089b05ecca3d829', 0, 'POS_SET']})
  2373. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2374. >>> pprint(json.loads(c.read()))
  2375. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': 0}
  2376. **XML-RPC Example**
  2377. ::
  2378. >>> import xmlrpclib
  2379. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2380. >>> s.aria2.changePosition('2089b05ecca3d829', 0, 'POS_SET')
  2381. 0
  2382. .. function:: aria2.changeUri([secret], gid, fileIndex, delUris, addUris[, position])
  2383. This method removes the URIs in *delUris* from and appends the URIs in
  2384. *addUris* to download denoted by *gid*. *delUris* and *addUris* are
  2385. lists of strings. A download can contain multiple files and URIs are
  2386. attached to each file. *fileIndex* is used to select which file to
  2387. remove/attach given URIs. *fileIndex* is 1-based. *position* is used
  2388. to specify where URIs are inserted in the existing waiting URI
  2389. list. *position* is 0-based. When *position* is omitted, URIs are
  2390. appended to the back of the list. This method first executes the removal
  2391. and then the addition. *position* is the position after URIs are removed,
  2392. not the position when this method is called. When removing an URI, if
  2393. the same URIs exist in download, only one of them is removed for each URI
  2394. in *delUris*. In other words, if there are three URIs
  2395. ``http://example.org/aria2`` and you want remove them all, you have to
  2396. specify (at least) 3 ``http://example.org/aria2`` in *delUris*. This
  2397. method returns a list which contains two integers. The first integer is
  2398. the number of URIs deleted. The second integer is the number of URIs
  2399. added.
  2400. The following examples add the URI ``http://example.org/file`` to the
  2401. file whose index is ``1`` and belongs to the download
  2402. GID#2089b05ecca3d829.
  2403. **JSON-RPC Example**
  2404. ::
  2405. >>> import urllib2, json
  2406. >>> from pprint import pprint
  2407. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2408. ... 'method':'aria2.changeUri',
  2409. ... 'params':['2089b05ecca3d829', 1, [],
  2410. ['http://example.org/file']]})
  2411. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2412. >>> pprint(json.loads(c.read()))
  2413. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': [0, 1]}
  2414. **XML-RPC Example**
  2415. ::
  2416. >>> import xmlrpclib
  2417. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2418. >>> s.aria2.changeUri('2089b05ecca3d829', 1, [],
  2419. ['http://example.org/file'])
  2420. [0, 1]
  2421. .. function:: aria2.getOption([secret], gid)
  2422. This method returns options of the download denoted by *gid*. The
  2423. response is a struct where keys are the names of options.
  2424. The values are strings.
  2425. Note that this method does not return options which
  2426. have no default value and have not been set on the command-line, in
  2427. configuration files or RPC methods.
  2428. The following examples get options of the download
  2429. GID#2089b05ecca3d829.
  2430. **JSON-RPC Example**
  2431. ::
  2432. >>> import urllib2, json
  2433. >>> from pprint import pprint
  2434. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2435. ... 'method':'aria2.getOption',
  2436. ... 'params':['2089b05ecca3d829']})
  2437. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2438. >>> pprint(json.loads(c.read()))
  2439. {u'id': u'qwer',
  2440. u'jsonrpc': u'2.0',
  2441. u'result': {u'allow-overwrite': u'false',
  2442. u'allow-piece-length-change': u'false',
  2443. u'always-resume': u'true',
  2444. u'async-dns': u'true',
  2445. ...
  2446. **XML-RPC Example**
  2447. ::
  2448. >>> import xmlrpclib
  2449. >>> from pprint import pprint
  2450. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2451. >>> r = s.aria2.getOption('2089b05ecca3d829')
  2452. >>> pprint(r)
  2453. {'allow-overwrite': 'false',
  2454. 'allow-piece-length-change': 'false',
  2455. 'always-resume': 'true',
  2456. 'async-dns': 'true',
  2457. ....
  2458. .. function:: aria2.changeOption([secret], gid, options)
  2459. This method changes options of the download denoted by *gid* (string)
  2460. dynamically. *options* is a struct.
  2461. The options listed in `Input File`_ subsection are available,
  2462. **except** for following options:
  2463. * :option:`dry-run <--dry-run>`
  2464. * :option:`metalink-base-uri <--metalink-base-uri>`
  2465. * :option:`parameterized-uri <-P>`
  2466. * :option:`pause <--pause>`
  2467. * :option:`piece-length <--piece-length>`
  2468. * :option:`rpc-save-upload-metadata <--rpc-save-upload-metadata>`
  2469. Except for the following options, changing the other options of
  2470. active download makes it restart (restart itself is managed by
  2471. aria2, and no user intervention is required):
  2472. * :option:`bt-max-peers <--bt-max-peers>`
  2473. * :option:`bt-request-peer-speed-limit <--bt-request-peer-speed-limit>`
  2474. * :option:`bt-remove-unselected-file <--bt-remove-unselected-file>`
  2475. * :option:`force-save <--force-save>`
  2476. * :option:`max-download-limit <--max-download-limit>`
  2477. * :option:`max-upload-limit <-u>`
  2478. This method returns ``OK`` for success.
  2479. The following examples set the :option:`max-download-limit
  2480. <--max-download-limit>` option to ``20K`` for the download
  2481. GID#2089b05ecca3d829.
  2482. **JSON-RPC Example**
  2483. ::
  2484. >>> import urllib2, json
  2485. >>> from pprint import pprint
  2486. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2487. ... 'method':'aria2.changeOption',
  2488. ... 'params':['2089b05ecca3d829',
  2489. ... {'max-download-limit':'10K'}]})
  2490. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2491. >>> pprint(json.loads(c.read()))
  2492. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'OK'}
  2493. **XML-RPC Example**
  2494. ::
  2495. >>> import xmlrpclib
  2496. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2497. >>> s.aria2.changeOption('2089b05ecca3d829', {'max-download-limit':'20K'})
  2498. 'OK'
  2499. .. function:: aria2.getGlobalOption([secret])
  2500. This method returns the global options. The response is a struct. Its keys
  2501. are the names of options. Values are strings.
  2502. Note that this method does not return options which have no default
  2503. value and have not been set on the command-line, in configuration
  2504. files or RPC methods. Because global options are used as a template
  2505. for the options of newly added downloads, the response contains keys
  2506. returned by the :func:`aria2.getOption` method.
  2507. .. function:: aria2.changeGlobalOption([secret], options)
  2508. This method changes global options dynamically. *options* is a struct.
  2509. The following options are available:
  2510. * :option:`bt-max-open-files <--bt-max-open-files>`
  2511. * :option:`download-result <--download-result>`
  2512. * :option:`keep-unfinished-download-result <--keep-unfinished-download-result>`
  2513. * :option:`log <-l>`
  2514. * :option:`log-level <--log-level>`
  2515. * :option:`max-concurrent-downloads <-j>`
  2516. * :option:`max-download-result <--max-download-result>`
  2517. * :option:`max-overall-download-limit <--max-overall-download-limit>`
  2518. * :option:`max-overall-upload-limit <--max-overall-upload-limit>`
  2519. * :option:`optimize-concurrent-downloads <--optimize-concurrent-downloads>`
  2520. * :option:`save-cookies <--save-cookies>`
  2521. * :option:`save-session <--save-session>`
  2522. * :option:`server-stat-of <--server-stat-of>`
  2523. In addition, options listed in the `Input File`_ subsection
  2524. are available, **except** for following options:
  2525. :option:`checksum <--checksum>`,
  2526. :option:`index-out <-O>`,
  2527. :option:`out <-o>`,
  2528. :option:`pause <--pause>` and
  2529. :option:`select-file <--select-file>`.
  2530. With the :option:`log <-l>` option, you can dynamically start logging or
  2531. change log file. To stop logging, specify an empty string("") as the parameter
  2532. value. Note that log file is always opened in append mode. This method
  2533. returns ``OK`` for success.
  2534. .. function:: aria2.getGlobalStat([secret])
  2535. This method returns global statistics such as the overall download and
  2536. upload speeds. The response is a struct and contains the following
  2537. keys. Values are strings.
  2538. ``downloadSpeed``
  2539. Overall download speed (byte/sec).
  2540. ``uploadSpeed``
  2541. Overall upload speed(byte/sec).
  2542. ``numActive``
  2543. The number of active downloads.
  2544. ``numWaiting``
  2545. The number of waiting downloads.
  2546. ``numStopped``
  2547. The number of stopped downloads in the current session. This value
  2548. is capped by the :option:`--max-download-result` option.
  2549. ``numStoppedTotal``
  2550. The number of stopped downloads in the current session and *not*
  2551. capped by the :option:`--max-download-result` option.
  2552. **JSON-RPC Example**
  2553. ::
  2554. >>> import urllib2, json
  2555. >>> from pprint import pprint
  2556. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2557. ... 'method':'aria2.getGlobalStat'})
  2558. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2559. >>> pprint(json.loads(c.read()))
  2560. {u'id': u'qwer',
  2561. u'jsonrpc': u'2.0',
  2562. u'result': {u'downloadSpeed': u'21846',
  2563. u'numActive': u'2',
  2564. u'numStopped': u'0',
  2565. u'numWaiting': u'0',
  2566. u'uploadSpeed': u'0'}}
  2567. **XML-RPC Example**
  2568. ::
  2569. >>> import xmlrpclib
  2570. >>> from pprint import pprint
  2571. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2572. >>> r = s.aria2.getGlobalStat()
  2573. >>> pprint(r)
  2574. {'downloadSpeed': '23136',
  2575. 'numActive': '2',
  2576. 'numStopped': '0',
  2577. 'numWaiting': '0',
  2578. 'uploadSpeed': '0'}
  2579. .. function:: aria2.purgeDownloadResult([secret])
  2580. This method purges completed/error/removed downloads to free memory.
  2581. This method returns ``OK``.
  2582. .. function:: aria2.removeDownloadResult([secret], gid)
  2583. This method removes a completed/error/removed download denoted by *gid*
  2584. from memory. This method returns ``OK`` for success.
  2585. The following examples remove the download result of the download
  2586. GID#2089b05ecca3d829.
  2587. **JSON-RPC Example**
  2588. ::
  2589. >>> import urllib2, json
  2590. >>> from pprint import pprint
  2591. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2592. ... 'method':'aria2.removeDownloadResult',
  2593. ... 'params':['2089b05ecca3d829']})
  2594. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2595. >>> pprint(json.loads(c.read()))
  2596. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'OK'}
  2597. **XML-RPC Example**
  2598. ::
  2599. >>> import xmlrpclib
  2600. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2601. >>> s.aria2.removeDownloadResult('2089b05ecca3d829')
  2602. 'OK'
  2603. .. function:: aria2.getVersion([secret])
  2604. This method returns the version of aria2 and the list of enabled
  2605. features. The response is a struct and contains following keys.
  2606. ``version``
  2607. Version number of aria2 as a string.
  2608. ``enabledFeatures``
  2609. List of enabled features. Each feature is given as a string.
  2610. **JSON-RPC Example**
  2611. ::
  2612. >>> import urllib2, json
  2613. >>> from pprint import pprint
  2614. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2615. ... 'method':'aria2.getVersion'})
  2616. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2617. >>> pprint(json.loads(c.read()))
  2618. {u'id': u'qwer',
  2619. u'jsonrpc': u'2.0',
  2620. u'result': {u'enabledFeatures': [u'Async DNS',
  2621. u'BitTorrent',
  2622. u'Firefox3 Cookie',
  2623. u'GZip',
  2624. u'HTTPS',
  2625. u'Message Digest',
  2626. u'Metalink',
  2627. u'XML-RPC'],
  2628. u'version': u'1.11.0'}}
  2629. **XML-RPC Example**
  2630. ::
  2631. >>> import xmlrpclib
  2632. >>> from pprint import pprint
  2633. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2634. >>> r = s.aria2.getVersion()
  2635. >>> pprint(r)
  2636. {'enabledFeatures': ['Async DNS',
  2637. 'BitTorrent',
  2638. 'Firefox3 Cookie',
  2639. 'GZip',
  2640. 'HTTPS',
  2641. 'Message Digest',
  2642. 'Metalink',
  2643. 'XML-RPC'],
  2644. 'version': '1.11.0'}
  2645. .. function:: aria2.getSessionInfo([secret])
  2646. This method returns session information.
  2647. The response is a struct and contains following key.
  2648. ``sessionId``
  2649. Session ID, which is generated each time when aria2 is invoked.
  2650. **JSON-RPC Example**
  2651. ::
  2652. >>> import urllib2, json
  2653. >>> from pprint import pprint
  2654. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2655. ... 'method':'aria2.getSessionInfo'})
  2656. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2657. >>> pprint(json.loads(c.read()))
  2658. {u'id': u'qwer',
  2659. u'jsonrpc': u'2.0',
  2660. u'result': {u'sessionId': u'cd6a3bc6a1de28eb5bfa181e5f6b916d44af31a9'}}
  2661. **XML-RPC Example**
  2662. ::
  2663. >>> import xmlrpclib
  2664. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2665. >>> s.aria2.getSessionInfo()
  2666. {'sessionId': 'cd6a3bc6a1de28eb5bfa181e5f6b916d44af31a9'}
  2667. .. function:: aria2.shutdown([secret])
  2668. This method shuts down aria2. This method returns ``OK``.
  2669. .. function:: aria2.forceShutdown([secret])
  2670. This method shuts down :func:`aria2`. This method behaves like
  2671. :func:'aria2.shutdown` without performing any actions which take time,
  2672. such as contacting BitTorrent trackers to unregister downloads first.
  2673. This method returns ``OK``.
  2674. .. function:: aria2.saveSession([secret])
  2675. This method saves the current session to a file specified by the
  2676. :option:`--save-session` option. This method returns ``OK`` if it
  2677. succeeds.
  2678. .. function:: system.multicall(methods)
  2679. This methods encapsulates multiple method calls in a single request.
  2680. *methods* is an array of structs. The structs contain two keys:
  2681. ``methodName`` and ``params``. ``methodName`` is the
  2682. method name to call and ``params`` is array containing parameters to the
  2683. method call. This method returns an array of responses. The elements
  2684. will be either a one-item array containing the return value of the
  2685. method call or a struct of fault element if an encapsulated method call
  2686. fails.
  2687. In the following examples, we add 2 downloads. The first one is
  2688. ``http://example.org/file`` and the second one is ``file.torrent``.
  2689. **JSON-RPC Example**
  2690. ::
  2691. >>> import urllib2, json, base64
  2692. >>> from pprint import pprint
  2693. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2694. ... 'method':'system.multicall',
  2695. ... 'params':[[{'methodName':'aria2.addUri',
  2696. ... 'params':[['http://example.org']]},
  2697. ... {'methodName':'aria2.addTorrent',
  2698. ... 'params':[base64.b64encode(open('file.torrent').read())]}]]})
  2699. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2700. >>> pprint(json.loads(c.read()))
  2701. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': [[u'2089b05ecca3d829'], [u'd2703803b52216d1']]}
  2702. JSON-RPC additionally supports Batch requests as described in the
  2703. JSON-RPC 2.0 Specification::
  2704. >>> jsonreq = json.dumps([{'jsonrpc':'2.0', 'id':'qwer',
  2705. ... 'method':'aria2.addUri',
  2706. ... 'params':[['http://example.org']]},
  2707. ... {'jsonrpc':'2.0', 'id':'asdf',
  2708. ... 'method':'aria2.addTorrent',
  2709. ... 'params':[base64.b64encode(open('file.torrent').read())]}])
  2710. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2711. >>> pprint(json.loads(c.read()))
  2712. [{u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'2089b05ecca3d829'},
  2713. {u'id': u'asdf', u'jsonrpc': u'2.0', u'result': u'd2703803b52216d1'}]
  2714. **XML-RPC Example**
  2715. ::
  2716. >>> import xmlrpclib
  2717. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2718. >>> mc = xmlrpclib.MultiCall(s)
  2719. >>> mc.aria2.addUri(['http://example.org/file'])
  2720. >>> mc.aria2.addTorrent(xmlrpclib.Binary(open('file.torrent', mode='rb').read()))
  2721. >>> r = mc()
  2722. >>> tuple(r)
  2723. ('2089b05ecca3d829', 'd2703803b52216d1')
  2724. .. function:: system.listMethods()
  2725. This method returns all the available RPC methods in an array of
  2726. string. Unlike other methods, this method does not require secret
  2727. token. This is safe because this method just returns the available
  2728. method names.
  2729. **JSON-RPC Example**
  2730. ::
  2731. >>> import urllib2, json
  2732. >>> from pprint import pprint
  2733. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2734. ... 'method':'system.listMethods'})
  2735. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2736. >>> pprint(json.loads(c.read()))
  2737. {u'id': u'qwer',
  2738. u'jsonrpc': u'2.0',
  2739. u'result': [u'aria2.addUri',
  2740. u'aria2.addTorrent',
  2741. ...
  2742. **XML-RPC Example**
  2743. ::
  2744. >>> import xmlrpclib
  2745. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2746. >>> s.system.listMethods()
  2747. ['aria2.addUri', 'aria2.addTorrent', ...
  2748. .. function:: system.listNotifications()
  2749. This method returns all the available RPC notifications in an array of
  2750. string. Unlike other methods, this method does not require secret
  2751. token. This is safe because this method just returns the available
  2752. notifications names.
  2753. **JSON-RPC Example**
  2754. ::
  2755. >>> import urllib2, json
  2756. >>> from pprint import pprint
  2757. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2758. ... 'method':'system.listNotifications'})
  2759. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2760. >>> pprint(json.loads(c.read()))
  2761. {u'id': u'qwer',
  2762. u'jsonrpc': u'2.0',
  2763. u'result': [u'aria2.onDownloadStart',
  2764. u'aria2.onDownloadPause',
  2765. ...
  2766. **XML-RPC Example**
  2767. ::
  2768. >>> import xmlrpclib
  2769. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2770. >>> s.system.listNotifications()
  2771. ['aria2.onDownloadStart', 'aria2.onDownloadPause', ...
  2772. Error Handling
  2773. ~~~~~~~~~~~~~~
  2774. Over JSON-RPC, aria2 returns a JSON object which contains an error code in
  2775. ``code`` and the error message in ``message``.
  2776. Over XML-RPC, aria2 returns ``faultCode=1`` and the error message in
  2777. ``faultString``.
  2778. .. _rpc_options:
  2779. Options
  2780. ~~~~~~~
  2781. The same options as for :option:`--input-file <-i>` are available. See the
  2782. `Input File`_ subsection for a complete list of options.
  2783. In the option struct, the name element is the option name (without the preceding
  2784. ``--``) and the value element is the argument as a string.
  2785. JSON-RPC Example
  2786. ^^^^^^^^^^^^^^^^
  2787. ::
  2788. {'split':'1', 'http-proxy':'http://proxy/'}
  2789. XML-RPC Example
  2790. ^^^^^^^^^^^^^^^
  2791. .. code-block:: xml
  2792. <struct>
  2793. <member>
  2794. <name>split</name>
  2795. <value><string>1</string></value>
  2796. </member>
  2797. <member>
  2798. <name>http-proxy</name>
  2799. <value><string>http://proxy/</string></value>
  2800. </member>
  2801. </struct>
  2802. The :option:`header <--header>` and :option:`index-out <-O>`
  2803. options are allowed multiple times on the command-line. Since the name should be
  2804. unique in a struct (many XML-RPC library implementations use a hash or dict for
  2805. struct), a single string is not enough. To overcome this limitation, you may use
  2806. an array as the value as well as a string.
  2807. JSON-RPC Example
  2808. ^^^^^^^^^^^^^^^^
  2809. ::
  2810. {'header':['Accept-Language: ja', 'Accept-Charset: utf-8']}
  2811. XML-RPC Example
  2812. ^^^^^^^^^^^^^^^
  2813. .. code-block:: xml
  2814. <struct>
  2815. <member>
  2816. <name>header</name>
  2817. <value>
  2818. <array>
  2819. <data>
  2820. <value><string>Accept-Language: ja</string></value>
  2821. <value><string>Accept-Charset: utf-8</string></value>
  2822. </data>
  2823. </array>
  2824. </value>
  2825. </member>
  2826. </struct>
  2827. The following example adds a download with two options: ``dir`` and ``header``.
  2828. The ``header`` option requires two values, so it uses a list::
  2829. >>> import xmlrpclib
  2830. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2831. >>> opts = dict(dir='/tmp',
  2832. ... header=['Accept-Language: ja',
  2833. ... 'Accept-Charset: utf-8'])
  2834. >>> s.aria2.addUri(['http://example.org/file'], opts)
  2835. '1'
  2836. JSON-RPC using HTTP GET
  2837. ~~~~~~~~~~~~~~~~~~~~~~~
  2838. The JSON-RPC interface also supports requests via HTTP GET.
  2839. The encoding scheme in GET parameters is based on JSON-RPC over HTTP Specification [2008-1-15(RC1)].
  2840. The encoding of GET parameters are follows::
  2841. /jsonrpc?method=METHOD_NAME&id=ID&params=BASE64_ENCODED_PARAMS
  2842. The ``method`` and ``id`` are always treated as JSON string and their
  2843. encoding must be UTF-8.
  2844. For example, The encoded string of
  2845. ``aria2.tellStatus('2089b05ecca3d829')`` with ``id='foo'`` looks like
  2846. this::
  2847. /jsonrpc?method=aria2.tellStatus&id=foo&params=WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D
  2848. The ``params`` parameter is Base64-encoded JSON array which usually
  2849. appears in ``params`` attribute in JSON-RPC request object. In the
  2850. above example, the params is ``["2089b05ecca3d829"]``, therefore::
  2851. ["2089b05ecca3d829"] --(Base64)--> WyIyMDg5YjA1ZWNjYTNkODI5Il0=
  2852. --(Percent Encode)--> WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D
  2853. The JSON-RPC interface also supports JSONP. You can specify the callback
  2854. function in the ``jsoncallback`` parameter::
  2855. /jsonrpc?method=aria2.tellStatus&id=foo&params=WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D&jsoncallback=cb
  2856. For Batch requests, the ``method`` and ``id`` parameters must not be specified.
  2857. The whole request must be specified in the ``params`` parameter. For example,
  2858. a Batch request::
  2859. [{'jsonrpc':'2.0', 'id':'qwer', 'method':'aria2.getVersion'},
  2860. {'jsonrpc':'2.0', 'id':'asdf', 'method':'aria2.tellActive'}]
  2861. must be encoded like this::
  2862. /jsonrpc?params=W3sianNvbnJwYyI6ICIyLjAiLCAiaWQiOiAicXdlciIsICJtZXRob2QiOiAiYXJpYTIuZ2V0VmVyc2lvbiJ9LCB7Impzb25ycGMiOiAiMi4wIiwgImlkIjogImFzZGYiLCAibWV0aG9kIjogImFyaWEyLnRlbGxBY3RpdmUifV0%3D
  2863. JSON-RPC over WebSocket
  2864. ~~~~~~~~~~~~~~~~~~~~~~~
  2865. JSON-RPC over WebSocket uses same method signatures and response
  2866. format as JSON-RPC over HTTP. The supported WebSocket version is 13
  2867. which is detailed in :rfc:`6455`.
  2868. To send a RPC request to the RPC server, send a serialized JSON string
  2869. in a Text frame. The response from the RPC server is delivered also in
  2870. a Text frame.
  2871. Notifications
  2872. ^^^^^^^^^^^^^
  2873. The RPC server might send notifications to the client. Notifications is
  2874. unidirectional, therefore the client which receives the notification must not
  2875. respond to it. The method signature of a notification is much like a normal
  2876. method request but lacks the id key. The value of the params key is the data
  2877. which this notification carries. The format of the value varies depending on the
  2878. notification method. Following notification methods are defined.
  2879. .. function:: aria2.onDownloadStart(event)
  2880. This notification will be sent when a download is started.
  2881. The *event* is of type struct and it contains following keys.
  2882. The value type is string.
  2883. ``gid``
  2884. GID of the download.
  2885. .. function:: aria2.onDownloadPause(event)
  2886. This notification will be sent when a download is paused. The *event*
  2887. is the same struct as the *event* argument of
  2888. :func:`aria2.onDownloadStart` method.
  2889. .. function:: aria2.onDownloadStop(event)
  2890. This notification will be sent when a download is stopped by the user.
  2891. The *event* is the same struct as the *event* argument of
  2892. :func:`aria2.onDownloadStart` method.
  2893. .. function:: aria2.onDownloadComplete(event)
  2894. This notification will be sent when a download is complete. For
  2895. BitTorrent downloads, this notification is sent when the download is
  2896. complete and seeding is over. The *event* is the same struct of the
  2897. *event* argument of
  2898. :func:`aria2.onDownloadStart` method.
  2899. .. function:: aria2.onDownloadError(event)
  2900. This notification will be sent when a download is stopped due to an error.
  2901. The *event* is the same struct as the *event* argument of
  2902. :func:`aria2.onDownloadStart` method.
  2903. .. function:: aria2.onBtDownloadComplete(event)
  2904. This notification will be sent when a torrent download is complete but seeding
  2905. is still going on. The *event* is the same struct as the *event* argument of
  2906. :func:`aria2.onDownloadStart` method.
  2907. Sample XML-RPC Client Code
  2908. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  2909. The following Ruby script adds ``http://localhost/aria2.tar.bz2`` to
  2910. aria2c (running on localhost) with option :option:`--dir=/downloads <-d>` and
  2911. prints the RPC response:
  2912. .. code-block:: ruby
  2913. #!/usr/bin/env ruby
  2914. require 'xmlrpc/client'
  2915. require 'pp'
  2916. client=XMLRPC::Client.new2("http://localhost:6800/rpc")
  2917. options={ "dir" => "/downloads" }
  2918. result=client.call("aria2.addUri", [ "http://localhost/aria2.tar.bz2" ], options)
  2919. pp result
  2920. If you are a Python lover, you can use xmlrpclib (Python3 uses
  2921. xmlrpc.client instead) to interact with aria2::
  2922. import xmlrpclib
  2923. from pprint import pprint
  2924. s = xmlrpclib.ServerProxy("http://localhost:6800/rpc")
  2925. r = s.aria2.addUri(["http://localhost/aria2.tar.bz2"], {"dir":"/downloads"})
  2926. pprint(r)
  2927. MISC
  2928. ----
  2929. Console Readout
  2930. ~~~~~~~~~~~~~~~
  2931. While downloading files, aria2 prints a readout to the console to show the
  2932. progress of the downloads. The console readout looks like this::
  2933. [#2089b0 400.0KiB/33.2MiB(1%) CN:1 DL:115.7KiB ETA:4m51s]
  2934. This section describes what these numbers and strings mean.
  2935. ``#NNNNNN``
  2936. The first 6 characters of the GID as a hex string. The GID is an unique ID for
  2937. each download, internal to aria2. The GID is particularly useful when
  2938. interacting with aria2 using the RPC interface.
  2939. ``X/Y(Z%)``
  2940. Completed length, the total file length and its progress. If
  2941. :option:`--select-file` is used, this is the sum of selected files.
  2942. ``SEED``
  2943. Share ratio when the aria2 is seeding a finished torrent.
  2944. ``CN``
  2945. The number of connections aria2 has established.
  2946. ``SD``
  2947. The number of seeders aria2 is connected to.
  2948. ``DL``
  2949. Download speed (bytes per second).
  2950. ``UL``
  2951. Upload speed (bytes per second) and the number of uploaded bytes.
  2952. ``ETA``
  2953. Expected time to finish the download.
  2954. When more than one download is in progress, some of the information
  2955. described above will be omitted in order to show information for several
  2956. downloads. And the overall download and upload speeds are shown at
  2957. the beginning of the line.
  2958. When aria2 is allocating file space or validating checksums, it
  2959. additionally prints the progress of these operations:
  2960. FileAlloc
  2961. GID, already allocated length and total length in bytes.
  2962. Checksum
  2963. GID, already validated length and total length in bytes.
  2964. EXAMPLE
  2965. -------
  2966. HTTP/FTP Segmented Downloads
  2967. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2968. Download a file
  2969. ^^^^^^^^^^^^^^^
  2970. .. code-block:: console
  2971. $ aria2c "http://host/file.zip"
  2972. .. note::
  2973. To stop a download, press :kbd:`Ctrl-C`. You can resume the transfer by
  2974. running aria2c with the same argument in the same directory. You can change
  2975. URIs as long as they are pointing to the same file.
  2976. Download a file from two different HTTP servers
  2977. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2978. .. code-block:: console
  2979. $ aria2c "http://host/file.zip" "http://mirror/file.zip"
  2980. Download a file from one host using multiple connections
  2981. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2982. .. code-block:: console
  2983. $ aria2c -x2 -k1M "http://host/file.zip"
  2984. .. note::
  2985. The -x option specified the number of allowed connections, while the -k option
  2986. specified the size of chunks.
  2987. Download a file from HTTP and FTP servers at the same time
  2988. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2989. .. code-block:: console
  2990. $ aria2c "http://host1/file.zip" "ftp://host2/file.zip"
  2991. Download files listed in a text file concurrently
  2992. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2993. .. code-block:: console
  2994. $ aria2c -ifiles.txt -j2
  2995. .. note::
  2996. -j option specifies the number of parallel downloads.
  2997. Using a proxy
  2998. ^^^^^^^^^^^^^
  2999. For HTTP:
  3000. .. code-block:: console
  3001. $ aria2c --http-proxy="http://proxy:8080" "http://host/file"
  3002. .. code-block:: console
  3003. $ aria2c --http-proxy="http://proxy:8080" --no-proxy="localhost,127.0.0.1,192.168.0.0/16" "http://host/file"
  3004. For FTP:
  3005. .. code-block:: console
  3006. $ aria2c --ftp-proxy="http://proxy:8080" "ftp://host/file"
  3007. .. note::
  3008. See :option:`--http-proxy`, :option:`--https-proxy`, :option:`--ftp-proxy`,
  3009. :option:`--all-proxy` and :option:`--no-proxy` for details. You can specify
  3010. proxy in the environment variables. See `ENVIRONMENT`_ section.
  3011. Using a Proxy with authorization
  3012. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3013. .. code-block:: console
  3014. $ aria2c --http-proxy="http://username:password@proxy:8080" "http://host/file"
  3015. .. code-block:: console
  3016. $ aria2c --http-proxy="http://proxy:8080" --http-proxy-user="username" --http-proxy-passwd="password" "http://host/file"
  3017. Metalink Download
  3018. ~~~~~~~~~~~~~~~~~
  3019. Download files with remote Metalink
  3020. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3021. .. code-block:: console
  3022. $ aria2c --follow-metalink=mem "http://host/file.metalink"
  3023. Download using a local metalink file
  3024. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3025. .. code-block:: console
  3026. $ aria2c -p --lowest-speed-limit=4000 file.metalink
  3027. .. note::
  3028. To stop a download, press :kbd:`Ctrl-C`.
  3029. You can resume the transfer by running aria2c with the same argument in the same
  3030. directory.
  3031. Download several local metalink files
  3032. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3033. .. code-block:: console
  3034. $ aria2c -j2 file1.metalink file2.metalink
  3035. Download only selected files
  3036. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3037. .. code-block:: console
  3038. $ aria2c --select-file=1-4,8 file.metalink
  3039. .. note::
  3040. The index is printed to the console using -S option.
  3041. Download a file using a local metalink file with user preference
  3042. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3043. .. code-block:: console
  3044. $ aria2c --metalink-location=jp,us --metalink-version=1.1 --metalink-language=en-US file.metalink
  3045. BitTorrent Download
  3046. ~~~~~~~~~~~~~~~~~~~
  3047. Download files using a remote BitTorrent file
  3048. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3049. .. code-block:: console
  3050. $ aria2c --follow-torrent=mem "http://host/file.torrent"
  3051. Download using a local torrent file
  3052. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3053. .. code-block:: console
  3054. $ aria2c --max-upload-limit=40K file.torrent
  3055. .. note::
  3056. --max-upload-limit specifies the max of upload rate.
  3057. .. note::
  3058. To stop a download, press :kbd:`Ctrl-C`. You can resume the transfer later by
  3059. running aria2c with the same argument in the same directory.
  3060. Download using BitTorrent Magnet URI
  3061. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3062. .. code-block:: console
  3063. $ aria2c "magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C&dn=aria2"
  3064. .. note::
  3065. Don't forget to quote BitTorrent Magnet URIs which include ``&``
  3066. characters with single(``'``) or double(``"``) quotes when specifying URIs on
  3067. the command-line.
  3068. Download 2 torrents
  3069. ^^^^^^^^^^^^^^^^^^^
  3070. .. code-block:: console
  3071. $ aria2c -j2 file1.torrent file2.torrent
  3072. Download a file via torrent and HTTP/FTP server in parallel
  3073. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3074. .. code-block:: console
  3075. $ aria2c -Ttest.torrent "http://host1/file" "ftp://host2/file"
  3076. Only download specific files (usually called "selected download")
  3077. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3078. .. code-block:: console
  3079. $ aria2c --select-file=1-4,8 file.torrent
  3080. .. note::
  3081. The index is printed to the console using -S option.
  3082. Download a .torrent file, but do not download the torrent
  3083. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3084. .. code-block:: console
  3085. $ aria2c --follow-torrent=false "http://host/file.torrent"
  3086. Specify the output file name
  3087. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3088. To specify the output file name for BitTorrent downloads, you need to know
  3089. the index of file in the torrent (see :option:`--show-files <-S>`). For
  3090. example, the output looks like this:
  3091. .. code-block:: text
  3092. idx|path/length
  3093. ===+======================
  3094. 1|dist/base-2.6.18.iso
  3095. |99.9MiB
  3096. ---+----------------------
  3097. 2|dist/driver-2.6.18.iso
  3098. |169.0MiB
  3099. ---+----------------------
  3100. To save 'dist/base-2.6.18.iso' in '/tmp/mydir/base.iso' and
  3101. 'dist/driver-2.6.18.iso' in '/tmp/dir/driver.iso', use the following
  3102. command:
  3103. .. code-block:: console
  3104. $ aria2c --dir=/tmp --index-out=1=mydir/base.iso --index-out=2=dir/driver.iso file.torrent
  3105. Change the listening ports for incoming peer connections
  3106. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3107. .. code-block:: console
  3108. $ aria2c --listen-port=7000-7001,8000 file.torrent
  3109. .. note::
  3110. Since aria2 doesn't configure firewalls or routers for port forwarding, it's
  3111. up to you to do so manually.
  3112. Specify conditions to stop seeding after torrent downloads finish
  3113. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3114. .. code-block:: console
  3115. $ aria2c --seed-time=120 --seed-ratio=1.0 file.torrent
  3116. .. note::
  3117. In the above example, the program stops seeding after 120 minutes since
  3118. download completed or seed ratio reaches 1.0.
  3119. Throttle upload speed
  3120. ^^^^^^^^^^^^^^^^^^^^^
  3121. .. code-block:: console
  3122. $ aria2c --max-upload-limit=100K file.torrent
  3123. Enable IPv4 DHT
  3124. ^^^^^^^^^^^^^^^
  3125. .. code-block:: console
  3126. $ aria2c --enable-dht --dht-listen-port=6881 file.torrent
  3127. .. note::
  3128. DHT uses UDP. Since aria2 doesn't configure firewalls or routers for port
  3129. forwarding, it's up to you to do it manually.
  3130. Enable IPv6 DHT
  3131. ^^^^^^^^^^^^^^^
  3132. .. code-block:: console
  3133. $ aria2c --enable-dht6 --dht-listen-port=6881 --dht-listen-addr6=YOUR_GLOBAL_UNICAST_IPV6_ADDR
  3134. .. note::
  3135. aria2 uses the same ports as IPv4 for IPv6.
  3136. Add and remove tracker URIs
  3137. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3138. Ignore all tracker announce URIs defined in file.torrent and use
  3139. ``http://tracker1/announce`` and ``http://tracker2/announce`` instead:
  3140. .. code-block:: console
  3141. $ aria2c --bt-exclude-tracker="*" --bt-tracker="http://tracker1/announce,http://tracker2/announce" file.torrent
  3142. More advanced HTTP features
  3143. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3144. Load cookies
  3145. ^^^^^^^^^^^^
  3146. .. code-block:: console
  3147. $ aria2c --load-cookies=cookies.txt "http://host/file.zip"
  3148. .. note::
  3149. You can use Firefox/Mozilla/Chromium's cookie files without modification.
  3150. Resume download started by web browsers or other programs
  3151. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3152. .. code-block:: console
  3153. $ aria2c -c -s2 "http://host/partiallydownloadedfile.zip"
  3154. .. note::
  3155. This will only work when the initial download was not multi-segmented.
  3156. Client certificate authorization for SSL/TLS
  3157. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3158. Specify a PKCS12 file as follows:
  3159. .. code-block:: console
  3160. $ aria2c --certificate=/path/to/mycert.p12
  3161. .. note::
  3162. The file specified in :option:`--certificate` must be contain one PKCS12 encoded
  3163. certificate and key. The password must be blank.
  3164. Alternatively, if PEM files are supported, use a command like the following:
  3165. .. code-block:: console
  3166. $ aria2c --certificate=/path/to/mycert.pem --private-key=/path/to/mykey.pem https://host/file
  3167. .. note::
  3168. The file specified in :option:`--private-key` must be decrypted; an encrypted
  3169. key may cause undefined behavior.
  3170. Verify SSL/TLS servers using given CA certificates
  3171. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3172. .. code-block:: console
  3173. $ aria2c --ca-certificate=/path/to/ca-certificates.crt --check-certificate https://host/file
  3174. .. note::
  3175. This option is only available when aria2 was compiled against GnuTLS or
  3176. OpenSSL.
  3177. WinTLS and AppleTLS will always use the system certificate store. Instead of
  3178. ```--ca-certificate`` install the certificate in that store.
  3179. RPC
  3180. ~~~
  3181. Encrypt RPC traffic with SSL/TLS
  3182. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3183. Specify a server PKC12 file:
  3184. .. code-block:: console
  3185. $ aria2c --enable-rpc --rpc-certificate=/path/to/server.p12 --rpc-secure
  3186. .. note::
  3187. The file specified in :option:`--rpc-certificate` must be contain one PKCS12
  3188. encoded certificate and key. The password must be blank.
  3189. Alternatively, when PEM files are supported (GnuTLS and OpenSSL), specify the
  3190. server certificate file and private key file as follows:
  3191. .. code-block:: console
  3192. $ aria2c --enable-rpc --rpc-certificate=/path/to/server.crt --rpc-private-key=/path/to/server.key --rpc-secure
  3193. And more advanced features
  3194. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  3195. Throttle the download speed
  3196. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3197. Per-download:
  3198. .. code-block:: console
  3199. $ aria2c --max-download-limit=100K file.metalink
  3200. Overall:
  3201. .. code-block:: console
  3202. $ aria2c --max-overall-download-limit=100K file.metalink
  3203. Repair a damaged download
  3204. ^^^^^^^^^^^^^^^^^^^^^^^^^
  3205. .. code-block:: console
  3206. $ aria2c -V file.metalink
  3207. .. note::
  3208. Repairing damaged downloads can be done efficiently when used with
  3209. BitTorrent or Metalink with chunk checksums.
  3210. Drop connections if download speed is lower than a specified limit
  3211. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3212. .. code-block:: console
  3213. $ aria2c --lowest-speed-limit=10K file.metalink
  3214. Parameterized URI support
  3215. ^^^^^^^^^^^^^^^^^^^^^^^^^
  3216. You can specify set of parts:
  3217. .. code-block:: console
  3218. $ aria2c -P "http://{host1,host2,host3}/file.iso"
  3219. You can specify numeric sequence:
  3220. .. code-block:: console
  3221. $ aria2c -Z -P "http://host/image[000-100].png"
  3222. .. note::
  3223. The -Z option is required if the URIs don't point to the same file, such as in
  3224. the above example.
  3225. You can specify step counter:
  3226. .. code-block:: console
  3227. $ aria2c -Z -P "http://host/image[A-Z:2].png"
  3228. Verifying checksums
  3229. ^^^^^^^^^^^^^^^^^^^
  3230. .. code-block:: console
  3231. $ aria2c --checksum=sha-1=0192ba11326fe2298c8cb4de616f4d4140213837 http://example.org/file
  3232. Parallel downloads of an arbitrary number of URIs, metalink, torrent
  3233. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3234. .. code-block:: console
  3235. $ aria2c -j3 -Z "http://host/file1" file2.torrent file3.metalink
  3236. BitTorrent Encryption
  3237. ^^^^^^^^^^^^^^^^^^^^^
  3238. Encrypt the whole payload using ARC4 (obfuscation):
  3239. .. code-block:: console
  3240. $ aria2c --bt-min-crypto-level=arc4 --bt-require-crypto=true file.torrent
  3241. SEE ALSO
  3242. --------
  3243. Project Web Site: https://aria2.github.io/
  3244. Metalink Homepage: http://www.metalinker.org/
  3245. The Metalink Download Description Format: :rfc:`5854`
  3246. COPYRIGHT
  3247. ---------
  3248. Copyright (C) 2006, 2015 Tatsuhiro Tsujikawa
  3249. This program is free software; you can redistribute it and/or modify
  3250. it under the terms of the GNU General Public License as published by
  3251. the Free Software Foundation; either version 2 of the License, or
  3252. (at your option) any later version.
  3253. This program is distributed in the hope that it will be useful,
  3254. but WITHOUT ANY WARRANTY; without even the implied warranty of
  3255. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  3256. GNU General Public License for more details.
  3257. You should have received a copy of the GNU General Public License
  3258. along with this program; if not, write to the Free Software
  3259. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  3260. In addition, as a special exception, the copyright holders give
  3261. permission to link the code of portions of this program with the
  3262. OpenSSL library under certain conditions as described in each
  3263. individual source file, and distribute linked combinations
  3264. including the two.
  3265. You must obey the GNU General Public License in all respects
  3266. for all of the code used other than OpenSSL. If you modify
  3267. file(s) with this exception, you may extend this exception to your
  3268. version of the file(s), but you are not obligated to do so. If you
  3269. do not wish to do so, delete this exception statement from your
  3270. version. If you delete this exception statement from all source
  3271. files in the program, then also delete it here.