Scripting way to upload videos to peertube and youtube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

577 lines
23 KiB

  1. [[package]]
  2. name = "args"
  3. version = "0.1.0"
  4. description = "Command Arguments for Humans."
  5. category = "main"
  6. optional = false
  7. python-versions = "*"
  8. [[package]]
  9. name = "cachetools"
  10. version = "4.2.0"
  11. description = "Extensible memoizing collections and decorators"
  12. category = "main"
  13. optional = false
  14. python-versions = "~=3.5"
  15. [[package]]
  16. name = "certifi"
  17. version = "2020.12.5"
  18. description = "Python package for providing Mozilla's CA Bundle."
  19. category = "main"
  20. optional = false
  21. python-versions = "*"
  22. [[package]]
  23. name = "chardet"
  24. version = "4.0.0"
  25. description = "Universal encoding detector for Python 2 and 3"
  26. category = "main"
  27. optional = false
  28. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  29. [[package]]
  30. name = "clint"
  31. version = "0.5.1"
  32. description = "Python Command Line Interface Tools"
  33. category = "main"
  34. optional = false
  35. python-versions = "*"
  36. [package.dependencies]
  37. args = "*"
  38. [[package]]
  39. name = "configparser"
  40. version = "3.8.1"
  41. description = "Updated configparser from Python 3.7 for Python 2.6+."
  42. category = "main"
  43. optional = false
  44. python-versions = ">=2.6"
  45. [package.extras]
  46. docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
  47. testing = ["pytest (>=3.5,!=3.7.3)", "pytest-checkdocs (>=1.2)", "pytest-flake8"]
  48. [[package]]
  49. name = "contextlib2"
  50. version = "0.6.0.post1"
  51. description = "Backports and enhancements for the contextlib module"
  52. category = "main"
  53. optional = false
  54. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  55. [[package]]
  56. name = "docopt"
  57. version = "0.6.2"
  58. description = "Pythonic argument parser, that will make you smile"
  59. category = "main"
  60. optional = false
  61. python-versions = "*"
  62. [[package]]
  63. name = "future"
  64. version = "0.17.1"
  65. description = "Clean single-source support for Python 3 and 2"
  66. category = "main"
  67. optional = false
  68. python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
  69. [[package]]
  70. name = "google-api-core"
  71. version = "1.25.0"
  72. description = "Google API client core library"
  73. category = "main"
  74. optional = false
  75. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
  76. [package.dependencies]
  77. google-auth = ">=1.21.1,<2.0dev"
  78. googleapis-common-protos = ">=1.6.0,<2.0dev"
  79. protobuf = ">=3.12.0"
  80. pytz = "*"
  81. requests = ">=2.18.0,<3.0.0dev"
  82. six = ">=1.13.0"
  83. [package.extras]
  84. grpc = ["grpcio (>=1.29.0,<2.0dev)"]
  85. grpcgcp = ["grpcio-gcp (>=0.2.2)"]
  86. grpcio-gcp = ["grpcio-gcp (>=0.2.2)"]
  87. [[package]]
  88. name = "google-api-python-client"
  89. version = "1.12.2"
  90. description = "Google API Client Library for Python"
  91. category = "main"
  92. optional = false
  93. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
  94. [package.dependencies]
  95. google-api-core = ">=1.21.0,<2dev"
  96. google-auth = ">=1.16.0"
  97. google-auth-httplib2 = ">=0.0.3"
  98. httplib2 = ">=0.9.2,<1dev"
  99. six = ">=1.13.0,<2dev"
  100. uritemplate = ">=3.0.0,<4dev"
  101. [[package]]
  102. name = "google-auth"
  103. version = "1.24.0"
  104. description = "Google Authentication Library"
  105. category = "main"
  106. optional = false
  107. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
  108. [package.dependencies]
  109. cachetools = ">=2.0.0,<5.0"
  110. pyasn1-modules = ">=0.2.1"
  111. rsa = [
  112. {version = "<4.6", markers = "python_version < \"3.6\""},
  113. {version = ">=3.1.4,<5", markers = "python_version >= \"3.6\""},
  114. ]
  115. six = ">=1.9.0"
  116. [package.extras]
  117. aiohttp = ["aiohttp (>=3.6.2,<4.0.0dev)"]
  118. [[package]]
  119. name = "google-auth-httplib2"
  120. version = "0.0.4"
  121. description = "Google Authentication Library: httplib2 transport"
  122. category = "main"
  123. optional = false
  124. python-versions = "*"
  125. [package.dependencies]
  126. google-auth = "*"
  127. httplib2 = ">=0.9.1"
  128. six = "*"
  129. [[package]]
  130. name = "google-auth-oauthlib"
  131. version = "0.4.2"
  132. description = "Google Authentication Library"
  133. category = "main"
  134. optional = false
  135. python-versions = ">=3.6"
  136. [package.dependencies]
  137. google-auth = "*"
  138. requests-oauthlib = ">=0.7.0"
  139. [package.extras]
  140. tool = ["click"]
  141. [[package]]
  142. name = "googleapis-common-protos"
  143. version = "1.52.0"
  144. description = "Common protobufs used in Google APIs"
  145. category = "main"
  146. optional = false
  147. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
  148. [package.dependencies]
  149. protobuf = ">=3.6.0"
  150. [package.extras]
  151. grpc = ["grpcio (>=1.0.0)"]
  152. [[package]]
  153. name = "httplib2"
  154. version = "0.12.3"
  155. description = "A comprehensive HTTP client library."
  156. category = "main"
  157. optional = false
  158. python-versions = "*"
  159. [[package]]
  160. name = "idna"
  161. version = "2.10"
  162. description = "Internationalized Domain Names in Applications (IDNA)"
  163. category = "main"
  164. optional = false
  165. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  166. [[package]]
  167. name = "oauthlib"
  168. version = "2.1.0"
  169. description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
  170. category = "main"
  171. optional = false
  172. python-versions = "*"
  173. [package.extras]
  174. rsa = ["cryptography"]
  175. signals = ["blinker"]
  176. signedtoken = ["cryptography", "pyjwt (>=1.0.0)"]
  177. test = ["nose", "unittest2", "cryptography", "mock", "pyjwt (>=1.0.0)", "blinker"]
  178. [[package]]
  179. name = "protobuf"
  180. version = "3.14.0"
  181. description = "Protocol Buffers"
  182. category = "main"
  183. optional = false
  184. python-versions = "*"
  185. [package.dependencies]
  186. six = ">=1.9"
  187. [[package]]
  188. name = "pyasn1"
  189. version = "0.4.8"
  190. description = "ASN.1 types and codecs"
  191. category = "main"
  192. optional = false
  193. python-versions = "*"
  194. [[package]]
  195. name = "pyasn1-modules"
  196. version = "0.2.8"
  197. description = "A collection of ASN.1-based protocols modules."
  198. category = "main"
  199. optional = false
  200. python-versions = "*"
  201. [package.dependencies]
  202. pyasn1 = ">=0.4.6,<0.5.0"
  203. [[package]]
  204. name = "python-magic"
  205. version = "0.4.20"
  206. description = "File type identification using libmagic"
  207. category = "main"
  208. optional = false
  209. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  210. [[package]]
  211. name = "python-magic-bin"
  212. version = "0.4.14"
  213. description = "File type identification using libmagic binary package"
  214. category = "main"
  215. optional = false
  216. python-versions = "*"
  217. [[package]]
  218. name = "pytz"
  219. version = "2020.5"
  220. description = "World timezone definitions, modern and historical"
  221. category = "main"
  222. optional = false
  223. python-versions = "*"
  224. [[package]]
  225. name = "requests"
  226. version = "2.25.1"
  227. description = "Python HTTP for Humans."
  228. category = "main"
  229. optional = false
  230. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  231. [package.dependencies]
  232. certifi = ">=2017.4.17"
  233. chardet = ">=3.0.2,<5"
  234. idna = ">=2.5,<3"
  235. urllib3 = ">=1.21.1,<1.27"
  236. [package.extras]
  237. security = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"]
  238. socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"]
  239. [[package]]
  240. name = "requests-oauthlib"
  241. version = "0.8.0"
  242. description = "OAuthlib authentication support for Requests."
  243. category = "main"
  244. optional = false
  245. python-versions = "*"
  246. [package.dependencies]
  247. oauthlib = ">=0.6.2"
  248. requests = ">=2.0.0"
  249. [package.extras]
  250. rsa = ["oauthlib[rsa] (>=0.6.2)", "requests (>=2.0.0)"]
  251. [[package]]
  252. name = "requests-toolbelt"
  253. version = "0.9.1"
  254. description = "A utility belt for advanced users of python-requests"
  255. category = "main"
  256. optional = false
  257. python-versions = "*"
  258. [package.dependencies]
  259. requests = ">=2.0.1,<3.0.0"
  260. [[package]]
  261. name = "rsa"
  262. version = "4.5"
  263. description = "Pure-Python RSA implementation"
  264. category = "main"
  265. optional = false
  266. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
  267. [package.dependencies]
  268. pyasn1 = ">=0.1.3"
  269. [[package]]
  270. name = "rsa"
  271. version = "4.7"
  272. description = "Pure-Python RSA implementation"
  273. category = "main"
  274. optional = false
  275. python-versions = ">=3.5, <4"
  276. [package.dependencies]
  277. pyasn1 = ">=0.1.3"
  278. [[package]]
  279. name = "schema"
  280. version = "0.7.3"
  281. description = "Simple data validation library"
  282. category = "main"
  283. optional = false
  284. python-versions = "*"
  285. [package.dependencies]
  286. contextlib2 = ">=0.5.5"
  287. [[package]]
  288. name = "six"
  289. version = "1.15.0"
  290. description = "Python 2 and 3 compatibility utilities"
  291. category = "main"
  292. optional = false
  293. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
  294. [[package]]
  295. name = "tzlocal"
  296. version = "1.5.1"
  297. description = "tzinfo object for the local timezone"
  298. category = "main"
  299. optional = false
  300. python-versions = "*"
  301. [package.dependencies]
  302. pytz = "*"
  303. [[package]]
  304. name = "unidecode"
  305. version = "1.1.2"
  306. description = "ASCII transliterations of Unicode text"
  307. category = "main"
  308. optional = false
  309. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  310. [[package]]
  311. name = "uritemplate"
  312. version = "3.0.1"
  313. description = "URI templates"
  314. category = "main"
  315. optional = false
  316. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  317. [[package]]
  318. name = "urllib3"
  319. version = "1.26.2"
  320. description = "HTTP library with thread-safe connection pooling, file post, and more."
  321. category = "main"
  322. optional = false
  323. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
  324. [package.extras]
  325. brotli = ["brotlipy (>=0.6.0)"]
  326. secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
  327. socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
  328. [[package]]
  329. name = "yapsy"
  330. version = "1.12.2"
  331. description = "Yet another plugin system"
  332. category = "main"
  333. optional = false
  334. python-versions = "*"
  335. [metadata]
  336. lock-version = "1.1"
  337. python-versions = ">=3.5"
  338. content-hash = "111e189319a1806c4ccf078c97a6a58738985f31a70a64a9bfc153db7b132008"
  339. [metadata.files]
  340. args = [
  341. {file = "args-0.1.0.tar.gz", hash = "sha256:a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"},
  342. ]
  343. cachetools = [
  344. {file = "cachetools-4.2.0-py3-none-any.whl", hash = "sha256:c6b07a6ded8c78bf36730b3dc452dfff7d95f2a12a2fed856b1a0cb13ca78c61"},
  345. {file = "cachetools-4.2.0.tar.gz", hash = "sha256:3796e1de094f0eaca982441c92ce96c68c89cced4cd97721ab297ea4b16db90e"},
  346. ]
  347. certifi = [
  348. {file = "certifi-2020.12.5-py2.py3-none-any.whl", hash = "sha256:719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830"},
  349. {file = "certifi-2020.12.5.tar.gz", hash = "sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c"},
  350. ]
  351. chardet = [
  352. {file = "chardet-4.0.0-py2.py3-none-any.whl", hash = "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5"},
  353. {file = "chardet-4.0.0.tar.gz", hash = "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa"},
  354. ]
  355. clint = [
  356. {file = "clint-0.5.1.tar.gz", hash = "sha256:05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa"},
  357. ]
  358. configparser = [
  359. {file = "configparser-3.8.1-py2.py3-none-any.whl", hash = "sha256:45d1272aad6cfd7a8a06cf5c73f2ceb6a190f6acc1fa707e7f82a4c053b28b18"},
  360. {file = "configparser-3.8.1.tar.gz", hash = "sha256:bc37850f0cc42a1725a796ef7d92690651bf1af37d744cc63161dac62cabee17"},
  361. ]
  362. contextlib2 = [
  363. {file = "contextlib2-0.6.0.post1-py2.py3-none-any.whl", hash = "sha256:3355078a159fbb44ee60ea80abd0d87b80b78c248643b49aa6d94673b413609b"},
  364. {file = "contextlib2-0.6.0.post1.tar.gz", hash = "sha256:01f490098c18b19d2bd5bb5dc445b2054d2fa97f09a4280ba2c5f3c394c8162e"},
  365. ]
  366. docopt = [
  367. {file = "docopt-0.6.2.tar.gz", hash = "sha256:49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"},
  368. ]
  369. future = [
  370. {file = "future-0.17.1.tar.gz", hash = "sha256:67045236dcfd6816dc439556d009594abf643e5eb48992e36beac09c2ca659b8"},
  371. ]
  372. google-api-core = [
  373. {file = "google-api-core-1.25.0.tar.gz", hash = "sha256:d967beae8d8acdb88fb2f6f769e2ee0ee813042576a08891bded3b8e234150ae"},
  374. {file = "google_api_core-1.25.0-py2.py3-none-any.whl", hash = "sha256:4656345cba9627ab1290eab51300a6397cc50370d99366133df1ae64b744e1eb"},
  375. ]
  376. google-api-python-client = [
  377. {file = "google-api-python-client-1.12.2.tar.gz", hash = "sha256:54a7d330833a2e7b0587446d7e4ae6d0244925a9a8e1dfe878f3f7e06cdedb62"},
  378. {file = "google_api_python_client-1.12.2-py2.py3-none-any.whl", hash = "sha256:05cb331ed1aa15746f606c7e36ea51dbe7c29b1a5df9bbf58140901fe23d7142"},
  379. ]
  380. google-auth = [
  381. {file = "google-auth-1.24.0.tar.gz", hash = "sha256:0b0e026b412a0ad096e753907559e4bdb180d9ba9f68dd9036164db4fdc4ad2e"},
  382. {file = "google_auth-1.24.0-py2.py3-none-any.whl", hash = "sha256:ce752cc51c31f479dbf9928435ef4b07514b20261b021c7383bee4bda646acb8"},
  383. ]
  384. google-auth-httplib2 = [
  385. {file = "google-auth-httplib2-0.0.4.tar.gz", hash = "sha256:8d092cc60fb16517b12057ec0bba9185a96e3b7169d86ae12eae98e645b7bc39"},
  386. {file = "google_auth_httplib2-0.0.4-py2.py3-none-any.whl", hash = "sha256:aeaff501738b289717fac1980db9711d77908a6c227f60e4aa1923410b43e2ee"},
  387. ]
  388. google-auth-oauthlib = [
  389. {file = "google-auth-oauthlib-0.4.2.tar.gz", hash = "sha256:65b65bc39ad8cab15039b35e5898455d3d66296d0584d96fe0e79d67d04c51d9"},
  390. {file = "google_auth_oauthlib-0.4.2-py2.py3-none-any.whl", hash = "sha256:d4d98c831ea21d574699978827490a41b94f05d565c617fe1b420e88f1fc8d8d"},
  391. ]
  392. googleapis-common-protos = [
  393. {file = "googleapis-common-protos-1.52.0.tar.gz", hash = "sha256:560716c807117394da12cecb0a54da5a451b5cf9866f1d37e9a5e2329a665351"},
  394. {file = "googleapis_common_protos-1.52.0-py2.py3-none-any.whl", hash = "sha256:c8961760f5aad9a711d37b675be103e0cc4e9a39327e0d6d857872f698403e24"},
  395. ]
  396. httplib2 = [
  397. {file = "httplib2-0.12.3-py3-none-any.whl", hash = "sha256:23914b5487dfe8ef09db6656d6d63afb0cf3054ad9ebc50868ddc8e166b5f8e8"},
  398. {file = "httplib2-0.12.3.tar.gz", hash = "sha256:a18121c7c72a56689efbf1aef990139ad940fee1e64c6f2458831736cd593600"},
  399. ]
  400. idna = [
  401. {file = "idna-2.10-py2.py3-none-any.whl", hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"},
  402. {file = "idna-2.10.tar.gz", hash = "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6"},
  403. ]
  404. oauthlib = [
  405. {file = "oauthlib-2.1.0-py2.py3-none-any.whl", hash = "sha256:d883b36b21a6ad813953803edfa563b1b579d79ca758fe950d1bc9e8b326025b"},
  406. {file = "oauthlib-2.1.0.tar.gz", hash = "sha256:ac35665a61c1685c56336bda97d5eefa246f1202618a1d6f34fccb1bdd404162"},
  407. ]
  408. protobuf = [
  409. {file = "protobuf-3.14.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:629b03fd3caae7f815b0c66b41273f6b1900a579e2ccb41ef4493a4f5fb84f3a"},
  410. {file = "protobuf-3.14.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:5b7a637212cc9b2bcf85dd828b1178d19efdf74dbfe1ddf8cd1b8e01fdaaa7f5"},
  411. {file = "protobuf-3.14.0-cp35-cp35m-macosx_10_9_intel.whl", hash = "sha256:43b554b9e73a07ba84ed6cf25db0ff88b1e06be610b37656e292e3cbb5437472"},
  412. {file = "protobuf-3.14.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:5e9806a43232a1fa0c9cf5da8dc06f6910d53e4390be1fa06f06454d888a9142"},
  413. {file = "protobuf-3.14.0-cp35-cp35m-win32.whl", hash = "sha256:1c51fda1bbc9634246e7be6016d860be01747354ed7015ebe38acf4452f470d2"},
  414. {file = "protobuf-3.14.0-cp35-cp35m-win_amd64.whl", hash = "sha256:4b74301b30513b1a7494d3055d95c714b560fbb630d8fb9956b6f27992c9f980"},
  415. {file = "protobuf-3.14.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:86a75477addde4918e9a1904e5c6af8d7b691f2a3f65587d73b16100fbe4c3b2"},
  416. {file = "protobuf-3.14.0-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:ecc33531a213eee22ad60e0e2aaea6c8ba0021f0cce35dbf0ab03dee6e2a23a1"},
  417. {file = "protobuf-3.14.0-cp36-cp36m-win32.whl", hash = "sha256:72230ed56f026dd664c21d73c5db73ebba50d924d7ba6b7c0d81a121e390406e"},
  418. {file = "protobuf-3.14.0-cp36-cp36m-win_amd64.whl", hash = "sha256:0fc96785262042e4863b3f3b5c429d4636f10d90061e1840fce1baaf59b1a836"},
  419. {file = "protobuf-3.14.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4e75105c9dfe13719b7293f75bd53033108f4ba03d44e71db0ec2a0e8401eafd"},
  420. {file = "protobuf-3.14.0-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:2a7e2fe101a7ace75e9327b9c946d247749e564a267b0515cf41dfe450b69bac"},
  421. {file = "protobuf-3.14.0-cp37-cp37m-win32.whl", hash = "sha256:b0d5d35faeb07e22a1ddf8dce620860c8fe145426c02d1a0ae2688c6e8ede36d"},
  422. {file = "protobuf-3.14.0-cp37-cp37m-win_amd64.whl", hash = "sha256:8971c421dbd7aad930c9bd2694122f332350b6ccb5202a8b7b06f3f1a5c41ed5"},
  423. {file = "protobuf-3.14.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9616f0b65a30851e62f1713336c931fcd32c057202b7ff2cfbfca0fc7d5e3043"},
  424. {file = "protobuf-3.14.0-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:22bcd2e284b3b1d969c12e84dc9b9a71701ec82d8ce975fdda19712e1cfd4e00"},
  425. {file = "protobuf-3.14.0-py2.py3-none-any.whl", hash = "sha256:0e247612fadda953047f53301a7b0407cb0c3cb4ae25a6fde661597a04039b3c"},
  426. {file = "protobuf-3.14.0.tar.gz", hash = "sha256:1d63eb389347293d8915fb47bee0951c7b5dab522a4a60118b9a18f33e21f8ce"},
  427. ]
  428. pyasn1 = [
  429. {file = "pyasn1-0.4.8-py2.4.egg", hash = "sha256:fec3e9d8e36808a28efb59b489e4528c10ad0f480e57dcc32b4de5c9d8c9fdf3"},
  430. {file = "pyasn1-0.4.8-py2.5.egg", hash = "sha256:0458773cfe65b153891ac249bcf1b5f8f320b7c2ce462151f8fa74de8934becf"},
  431. {file = "pyasn1-0.4.8-py2.6.egg", hash = "sha256:5c9414dcfede6e441f7e8f81b43b34e834731003427e5b09e4e00e3172a10f00"},
  432. {file = "pyasn1-0.4.8-py2.7.egg", hash = "sha256:6e7545f1a61025a4e58bb336952c5061697da694db1cae97b116e9c46abcf7c8"},
  433. {file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"},
  434. {file = "pyasn1-0.4.8-py3.1.egg", hash = "sha256:78fa6da68ed2727915c4767bb386ab32cdba863caa7dbe473eaae45f9959da86"},
  435. {file = "pyasn1-0.4.8-py3.2.egg", hash = "sha256:08c3c53b75eaa48d71cf8c710312316392ed40899cb34710d092e96745a358b7"},
  436. {file = "pyasn1-0.4.8-py3.3.egg", hash = "sha256:03840c999ba71680a131cfaee6fab142e1ed9bbd9c693e285cc6aca0d555e576"},
  437. {file = "pyasn1-0.4.8-py3.4.egg", hash = "sha256:7ab8a544af125fb704feadb008c99a88805126fb525280b2270bb25cc1d78a12"},
  438. {file = "pyasn1-0.4.8-py3.5.egg", hash = "sha256:e89bf84b5437b532b0803ba5c9a5e054d21fec423a89952a74f87fa2c9b7bce2"},
  439. {file = "pyasn1-0.4.8-py3.6.egg", hash = "sha256:014c0e9976956a08139dc0712ae195324a75e142284d5f87f1a87ee1b068a359"},
  440. {file = "pyasn1-0.4.8-py3.7.egg", hash = "sha256:99fcc3c8d804d1bc6d9a099921e39d827026409a58f2a720dcdb89374ea0c776"},
  441. {file = "pyasn1-0.4.8.tar.gz", hash = "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"},
  442. ]
  443. pyasn1-modules = [
  444. {file = "pyasn1-modules-0.2.8.tar.gz", hash = "sha256:905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e"},
  445. {file = "pyasn1_modules-0.2.8-py2.4.egg", hash = "sha256:0fe1b68d1e486a1ed5473f1302bd991c1611d319bba158e98b106ff86e1d7199"},
  446. {file = "pyasn1_modules-0.2.8-py2.5.egg", hash = "sha256:fe0644d9ab041506b62782e92b06b8c68cca799e1a9636ec398675459e031405"},
  447. {file = "pyasn1_modules-0.2.8-py2.6.egg", hash = "sha256:a99324196732f53093a84c4369c996713eb8c89d360a496b599fb1a9c47fc3eb"},
  448. {file = "pyasn1_modules-0.2.8-py2.7.egg", hash = "sha256:0845a5582f6a02bb3e1bde9ecfc4bfcae6ec3210dd270522fee602365430c3f8"},
  449. {file = "pyasn1_modules-0.2.8-py2.py3-none-any.whl", hash = "sha256:a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74"},
  450. {file = "pyasn1_modules-0.2.8-py3.1.egg", hash = "sha256:f39edd8c4ecaa4556e989147ebf219227e2cd2e8a43c7e7fcb1f1c18c5fd6a3d"},
  451. {file = "pyasn1_modules-0.2.8-py3.2.egg", hash = "sha256:b80486a6c77252ea3a3e9b1e360bc9cf28eaac41263d173c032581ad2f20fe45"},
  452. {file = "pyasn1_modules-0.2.8-py3.3.egg", hash = "sha256:65cebbaffc913f4fe9e4808735c95ea22d7a7775646ab690518c056784bc21b4"},
  453. {file = "pyasn1_modules-0.2.8-py3.4.egg", hash = "sha256:15b7c67fabc7fc240d87fb9aabf999cf82311a6d6fb2c70d00d3d0604878c811"},
  454. {file = "pyasn1_modules-0.2.8-py3.5.egg", hash = "sha256:426edb7a5e8879f1ec54a1864f16b882c2837bfd06eee62f2c982315ee2473ed"},
  455. {file = "pyasn1_modules-0.2.8-py3.6.egg", hash = "sha256:cbac4bc38d117f2a49aeedec4407d23e8866ea4ac27ff2cf7fb3e5b570df19e0"},
  456. {file = "pyasn1_modules-0.2.8-py3.7.egg", hash = "sha256:c29a5e5cc7a3f05926aff34e097e84f8589cd790ce0ed41b67aed6857b26aafd"},
  457. ]
  458. python-magic = [
  459. {file = "python-magic-0.4.20.tar.gz", hash = "sha256:0cc52ccad086c377b9194014e3dbf98d94b194344630172510a6a3e716b47801"},
  460. {file = "python_magic-0.4.20-py2.py3-none-any.whl", hash = "sha256:33ce94d9395aa269a9c5fac10ae124a5fb328ebe248f36efc5a43922edee662e"},
  461. ]
  462. python-magic-bin = [
  463. {file = "python_magic_bin-0.4.14-py2.py3-none-macosx_10_6_intel.whl", hash = "sha256:7b1743b3dbf16601d6eedf4e7c2c9a637901b0faaf24ad4df4d4527e7d8f66a4"},
  464. {file = "python_magic_bin-0.4.14-py2.py3-none-win32.whl", hash = "sha256:34a788c03adde7608028203e2dbb208f1f62225ad91518787ae26d603ae68892"},
  465. {file = "python_magic_bin-0.4.14-py2.py3-none-win_amd64.whl", hash = "sha256:90be6206ad31071a36065a2fc169c5afb5e0355cbe6030e87641c6c62edc2b69"},
  466. ]
  467. pytz = [
  468. {file = "pytz-2020.5-py2.py3-none-any.whl", hash = "sha256:16962c5fb8db4a8f63a26646d8886e9d769b6c511543557bc84e9569fb9a9cb4"},
  469. {file = "pytz-2020.5.tar.gz", hash = "sha256:180befebb1927b16f6b57101720075a984c019ac16b1b7575673bea42c6c3da5"},
  470. ]
  471. requests = [
  472. {file = "requests-2.25.1-py2.py3-none-any.whl", hash = "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e"},
  473. {file = "requests-2.25.1.tar.gz", hash = "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804"},
  474. ]
  475. requests-oauthlib = [
  476. {file = "requests-oauthlib-0.8.0.tar.gz", hash = "sha256:883ac416757eada6d3d07054ec7092ac21c7f35cb1d2cf82faf205637081f468"},
  477. {file = "requests_oauthlib-0.8.0-py2.py3-none-any.whl", hash = "sha256:50a8ae2ce8273e384895972b56193c7409601a66d4975774c60c2aed869639ca"},
  478. ]
  479. requests-toolbelt = [
  480. {file = "requests-toolbelt-0.9.1.tar.gz", hash = "sha256:968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0"},
  481. {file = "requests_toolbelt-0.9.1-py2.py3-none-any.whl", hash = "sha256:380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f"},
  482. ]
  483. rsa = [
  484. {file = "rsa-4.5-py2.py3-none-any.whl", hash = "sha256:35c5b5f6675ac02120036d97cf96f1fde4d49670543db2822ba5015e21a18032"},
  485. {file = "rsa-4.5.tar.gz", hash = "sha256:4d409f5a7d78530a4a2062574c7bd80311bc3af29b364e293aa9b03eea77714f"},
  486. {file = "rsa-4.7-py3-none-any.whl", hash = "sha256:a8774e55b59fd9fc893b0d05e9bfc6f47081f46ff5b46f39ccf24631b7be356b"},
  487. {file = "rsa-4.7.tar.gz", hash = "sha256:69805d6b69f56eb05b62daea3a7dbd7aa44324ad1306445e05da8060232d00f4"},
  488. ]
  489. schema = [
  490. {file = "schema-0.7.3-py2.py3-none-any.whl", hash = "sha256:c331438b60f634cab5664ab720d3083cc444f924d55269530c36b33e3354276f"},
  491. {file = "schema-0.7.3.tar.gz", hash = "sha256:4cf529318cfd1e844ecbe02f41f7e5aa027463e7403666a52746f31f04f47a5e"},
  492. ]
  493. six = [
  494. {file = "six-1.15.0-py2.py3-none-any.whl", hash = "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced"},
  495. {file = "six-1.15.0.tar.gz", hash = "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259"},
  496. ]
  497. tzlocal = [
  498. {file = "tzlocal-1.5.1.tar.gz", hash = "sha256:4ebeb848845ac898da6519b9b31879cf13b6626f7184c496037b818e238f2c4e"},
  499. ]
  500. unidecode = [
  501. {file = "Unidecode-1.1.2-py2.py3-none-any.whl", hash = "sha256:4c9d15d2f73eb0d2649a151c566901f80a030da1ccb0a2043352e1dbf647586b"},
  502. {file = "Unidecode-1.1.2.tar.gz", hash = "sha256:a039f89014245e0cad8858976293e23501accc9ff5a7bdbc739a14a2b7b85cdc"},
  503. ]
  504. uritemplate = [
  505. {file = "uritemplate-3.0.1-py2.py3-none-any.whl", hash = "sha256:07620c3f3f8eed1f12600845892b0e036a2420acf513c53f7de0abd911a5894f"},
  506. {file = "uritemplate-3.0.1.tar.gz", hash = "sha256:5af8ad10cec94f215e3f48112de2022e1d5a37ed427fbd88652fa908f2ab7cae"},
  507. ]
  508. urllib3 = [
  509. {file = "urllib3-1.26.2-py2.py3-none-any.whl", hash = "sha256:d8ff90d979214d7b4f8ce956e80f4028fc6860e4431f731ea4a8c08f23f99473"},
  510. {file = "urllib3-1.26.2.tar.gz", hash = "sha256:19188f96923873c92ccb987120ec4acaa12f0461fa9ce5d3d0772bc965a39e08"},
  511. ]
  512. yapsy = [
  513. {file = "Yapsy-1.12.2-py3.6.egg", hash = "sha256:83891e22db0a74445726981df0ef7818dae595454de9cf10b7ba603d45ccd157"},
  514. {file = "Yapsy-1.12.2.tar.gz", hash = "sha256:d8113d9f9c74eacf65b4663c9c037d278c9cb273b5eee5f0e1803baeedb23f8b"},
  515. ]