Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.12 KB | None | 0 0
  1. /nix/store/vb0z07y4847y7km4kyw9fw0zyrfmp4jd-python3.7-clikit-0.3.2
  2. ├── lib
  3. │   └── python3.7
  4. │   └── site-packages
  5. │   ├── clikit
  6. │   │   ├── adapter
  7. │   │   │   ├── __init__.py
  8. │   │   │   ├── __pycache__
  9. │   │   │   │   ├── __init__.cpython-37.pyc
  10. │   │   │   │   └── style_converter.cpython-37.pyc
  11. │   │   │   └── style_converter.py
  12. │   │   ├── api
  13. │   │   │   ├── application
  14. │   │   │   │   ├── application.py
  15. │   │   │   │   ├── __init__.py
  16. │   │   │   │   └── __pycache__
  17. │   │   │   │   ├── application.cpython-37.pyc
  18. │   │   │   │   └── __init__.cpython-37.pyc
  19. │   │   │   ├── args
  20. │   │   │   │   ├── args_parser.py
  21. │   │   │   │   ├── args.py
  22. │   │   │   │   ├── exceptions.py
  23. │   │   │   │   ├── format
  24. │   │   │   │   │   ├── abstract_option.py
  25. │   │   │   │   │   ├── args_format_builder.py
  26. │   │   │   │   │   ├── args_format.py
  27. │   │   │   │   │   ├── argument.py
  28. │   │   │   │   │   ├── command_name.py
  29. │   │   │   │   │   ├── command_option.py
  30. │   │   │   │   │   ├── __init__.py
  31. │   │   │   │   │   ├── option.py
  32. │   │   │   │   │   └── __pycache__
  33. │   │   │   │   │   ├── abstract_option.cpython-37.pyc
  34. │   │   │   │   │   ├── args_format_builder.cpython-37.pyc
  35. │   │   │   │   │   ├── args_format.cpython-37.pyc
  36. │   │   │   │   │   ├── argument.cpython-37.pyc
  37. │   │   │   │   │   ├── command_name.cpython-37.pyc
  38. │   │   │   │   │   ├── command_option.cpython-37.pyc
  39. │   │   │   │   │   ├── __init__.cpython-37.pyc
  40. │   │   │   │   │   └── option.cpython-37.pyc
  41. │   │   │   │   ├── __init__.py
  42. │   │   │   │   ├── __pycache__
  43. │   │   │   │   │   ├── args.cpython-37.pyc
  44. │   │   │   │   │   ├── args_parser.cpython-37.pyc
  45. │   │   │   │   │   ├── exceptions.cpython-37.pyc
  46. │   │   │   │   │   ├── __init__.cpython-37.pyc
  47. │   │   │   │   │   └── raw_args.cpython-37.pyc
  48. │   │   │   │   └── raw_args.py
  49. │   │   │   ├── command
  50. │   │   │   │   ├── command_collection.py
  51. │   │   │   │   ├── command.py
  52. │   │   │   │   ├── exceptions.py
  53. │   │   │   │   ├── __init__.py
  54. │   │   │   │   └── __pycache__
  55. │   │   │   │   ├── command_collection.cpython-37.pyc
  56. │   │   │   │   ├── command.cpython-37.pyc
  57. │   │   │   │   ├── exceptions.cpython-37.pyc
  58. │   │   │   │   └── __init__.cpython-37.pyc
  59. │   │   │   ├── config
  60. │   │   │   │   ├── application_config.py
  61. │   │   │   │   ├── command_config.py
  62. │   │   │   │   ├── config.py
  63. │   │   │   │   ├── __init__.py
  64. │   │   │   │   └── __pycache__
  65. │   │   │   │   ├── application_config.cpython-37.pyc
  66. │   │   │   │   ├── command_config.cpython-37.pyc
  67. │   │   │   │   ├── config.cpython-37.pyc
  68. │   │   │   │   └── __init__.cpython-37.pyc
  69. │   │   │   ├── event
  70. │   │   │   │   ├── config_event.py
  71. │   │   │   │   ├── console_events.py
  72. │   │   │   │   ├── event_dispatcher.py
  73. │   │   │   │   ├── event.py
  74. │   │   │   │   ├── __init__.py
  75. │   │   │   │   ├── pre_handle_event.py
  76. │   │   │   │   ├── pre_resolve_event.py
  77. │   │   │   │   └── __pycache__
  78. │   │   │   │   ├── config_event.cpython-37.pyc
  79. │   │   │   │   ├── console_events.cpython-37.pyc
  80. │   │   │   │   ├── event.cpython-37.pyc
  81. │   │   │   │   ├── event_dispatcher.cpython-37.pyc
  82. │   │   │   │   ├── __init__.cpython-37.pyc
  83. │   │   │   │   ├── pre_handle_event.cpython-37.pyc
  84. │   │   │   │   └── pre_resolve_event.cpython-37.pyc
  85. │   │   │   ├── exceptions.py
  86. │   │   │   ├── formatter
  87. │   │   │   │   ├── formatter.py
  88. │   │   │   │   ├── __init__.py
  89. │   │   │   │   ├── __pycache__
  90. │   │   │   │   │   ├── formatter.cpython-37.pyc
  91. │   │   │   │   │   ├── __init__.cpython-37.pyc
  92. │   │   │   │   │   ├── style.cpython-37.pyc
  93. │   │   │   │   │   └── style_set.cpython-37.pyc
  94. │   │   │   │   ├── style.py
  95. │   │   │   │   └── style_set.py
  96. │   │   │   ├── __init__.py
  97. │   │   │   ├── io
  98. │   │   │   │   ├── flags.py
  99. │   │   │   │   ├── __init__.py
  100. │   │   │   │   ├── input.py
  101. │   │   │   │   ├── input_stream.py
  102. │   │   │   │   ├── io_exception.py
  103. │   │   │   │   ├── io.py
  104. │   │   │   │   ├── output.py
  105. │   │   │   │   ├── output_stream.py
  106. │   │   │   │   ├── __pycache__
  107. │   │   │   │   │   ├── flags.cpython-37.pyc
  108. │   │   │   │   │   ├── __init__.cpython-37.pyc
  109. │   │   │   │   │   ├── input.cpython-37.pyc
  110. │   │   │   │   │   ├── input_stream.cpython-37.pyc
  111. │   │   │   │   │   ├── io.cpython-37.pyc
  112. │   │   │   │   │   ├── io_exception.cpython-37.pyc
  113. │   │   │   │   │   ├── output.cpython-37.pyc
  114. │   │   │   │   │   ├── output_stream.cpython-37.pyc
  115. │   │   │   │   │   └── section_output.cpython-37.pyc
  116. │   │   │   │   └── section_output.py
  117. │   │   │   ├── __pycache__
  118. │   │   │   │   ├── exceptions.cpython-37.pyc
  119. │   │   │   │   └── __init__.cpython-37.pyc
  120. │   │   │   └── resolver
  121. │   │   │   ├── command_resolver.py
  122. │   │   │   ├── exceptions.py
  123. │   │   │   ├── __init__.py
  124. │   │   │   ├── __pycache__
  125. │   │   │   │   ├── command_resolver.cpython-37.pyc
  126. │   │   │   │   ├── exceptions.cpython-37.pyc
  127. │   │   │   │   ├── __init__.cpython-37.pyc
  128. │   │   │   │   └── resolved_command.cpython-37.pyc
  129. │   │   │   └── resolved_command.py
  130. │   │   ├── args
  131. │   │   │   ├── argv_args.py
  132. │   │   │   ├── default_args_parser.py
  133. │   │   │   ├── __init__.py
  134. │   │   │   ├── inputs
  135. │   │   │   │   ├── __init__.py
  136. │   │   │   │   └── __pycache__
  137. │   │   │   │   └── __init__.cpython-37.pyc
  138. │   │   │   ├── __pycache__
  139. │   │   │   │   ├── argv_args.cpython-37.pyc
  140. │   │   │   │   ├── default_args_parser.cpython-37.pyc
  141. │   │   │   │   ├── __init__.cpython-37.pyc
  142. │   │   │   │   ├── string_args.cpython-37.pyc
  143. │   │   │   │   └── token_parser.cpython-37.pyc
  144. │   │   │   ├── string_args.py
  145. │   │   │   └── token_parser.py
  146. │   │   ├── config
  147. │   │   │   ├── default_application_config.py
  148. │   │   │   ├── __init__.py
  149. │   │   │   └── __pycache__
  150. │   │   │   ├── default_application_config.cpython-37.pyc
  151. │   │   │   └── __init__.cpython-37.pyc
  152. │   │   ├── console_application.py
  153. │   │   ├── formatter
  154. │   │   │   ├── ansi_formatter.py
  155. │   │   │   ├── default_style_set.py
  156. │   │   │   ├── __init__.py
  157. │   │   │   ├── null_formatter.py
  158. │   │   │   ├── plain_formatter.py
  159. │   │   │   └── __pycache__
  160. │   │   │   ├── ansi_formatter.cpython-37.pyc
  161. │   │   │   ├── default_style_set.cpython-37.pyc
  162. │   │   │   ├── __init__.cpython-37.pyc
  163. │   │   │   ├── null_formatter.cpython-37.pyc
  164. │   │   │   └── plain_formatter.cpython-37.pyc
  165. │   │   ├── handler
  166. │   │   │   ├── callback_handler.py
  167. │   │   │   ├── help
  168. │   │   │   │   ├── help_handler.py
  169. │   │   │   │   ├── help_text_handler.py
  170. │   │   │   │   ├── __init__.py
  171. │   │   │   │   └── __pycache__
  172. │   │   │   │   ├── help_handler.cpython-37.pyc
  173. │   │   │   │   ├── help_text_handler.cpython-37.pyc
  174. │   │   │   │   └── __init__.cpython-37.pyc
  175. │   │   │   ├── __init__.py
  176. │   │   │   └── __pycache__
  177. │   │   │   ├── callback_handler.cpython-37.pyc
  178. │   │   │   └── __init__.cpython-37.pyc
  179. │   │   ├── __init__.py
  180. │   │   ├── io
  181. │   │   │   ├── buffered_io.py
  182. │   │   │   ├── console_io.py
  183. │   │   │   ├── __init__.py
  184. │   │   │   ├── input_stream
  185. │   │   │   │   ├── __init__.py
  186. │   │   │   │   ├── null_input_stream.py
  187. │   │   │   │   ├── __pycache__
  188. │   │   │   │   │   ├── __init__.cpython-37.pyc
  189. │   │   │   │   │   ├── null_input_stream.cpython-37.pyc
  190. │   │   │   │   │   ├── standard_input_stream.cpython-37.pyc
  191. │   │   │   │   │   ├── stream_input_stream.cpython-37.pyc
  192. │   │   │   │   │   └── string_input_stream.cpython-37.pyc
  193. │   │   │   │   ├── standard_input_stream.py
  194. │   │   │   │   ├── stream_input_stream.py
  195. │   │   │   │   └── string_input_stream.py
  196. │   │   │   ├── null_io.py
  197. │   │   │   ├── output_stream
  198. │   │   │   │   ├── buffered_output_stream.py
  199. │   │   │   │   ├── error_output_stream.py
  200. │   │   │   │   ├── __init__.py
  201. │   │   │   │   ├── null_output_stream.py
  202. │   │   │   │   ├── __pycache__
  203. │   │   │   │   │   ├── buffered_output_stream.cpython-37.pyc
  204. │   │   │   │   │   ├── error_output_stream.cpython-37.pyc
  205. │   │   │   │   │   ├── __init__.cpython-37.pyc
  206. │   │   │   │   │   ├── null_output_stream.cpython-37.pyc
  207. │   │   │   │   │   ├── standard_output_stream.cpython-37.pyc
  208. │   │   │   │   │   └── stream_output_stream.cpython-37.pyc
  209. │   │   │   │   ├── standard_output_stream.py
  210. │   │   │   │   └── stream_output_stream.py
  211. │   │   │   └── __pycache__
  212. │   │   │   ├── buffered_io.cpython-37.pyc
  213. │   │   │   ├── console_io.cpython-37.pyc
  214. │   │   │   ├── __init__.cpython-37.pyc
  215. │   │   │   └── null_io.cpython-37.pyc
  216. │   │   ├── __pycache__
  217. │   │   │   ├── console_application.cpython-37.pyc
  218. │   │   │   └── __init__.cpython-37.pyc
  219. │   │   ├── resolver
  220. │   │   │   ├── default_resolver.py
  221. │   │   │   ├── help_resolver.py
  222. │   │   │   ├── __init__.py
  223. │   │   │   ├── __pycache__
  224. │   │   │   │   ├── default_resolver.cpython-37.pyc
  225. │   │   │   │   ├── help_resolver.cpython-37.pyc
  226. │   │   │   │   ├── __init__.cpython-37.pyc
  227. │   │   │   │   └── resolve_result.cpython-37.pyc
  228. │   │   │   └── resolve_result.py
  229. │   │   ├── ui
  230. │   │   │   ├── alignment
  231. │   │   │   │   ├── __init__.py
  232. │   │   │   │   ├── label_alignment.py
  233. │   │   │   │   └── __pycache__
  234. │   │   │   │   ├── __init__.cpython-37.pyc
  235. │   │   │   │   └── label_alignment.cpython-37.pyc
  236. │   │   │   ├── component.py
  237. │   │   │   ├── components
  238. │   │   │   │   ├── border_util.py
  239. │   │   │   │   ├── cell_wrapper.py
  240. │   │   │   │   ├── choice_question.py
  241. │   │   │   │   ├── confirmation_question.py
  242. │   │   │   │   ├── empty_line.py
  243. │   │   │   │   ├── exception_trace.py
  244. │   │   │   │   ├── __init__.py
  245. │   │   │   │   ├── labeled_paragraph.py
  246. │   │   │   │   ├── name_version.py
  247. │   │   │   │   ├── paragraph.py
  248. │   │   │   │   ├── progress_bar.py
  249. │   │   │   │   ├── progress_indicator.py
  250. │   │   │   │   ├── __pycache__
  251. │   │   │   │   │   ├── border_util.cpython-37.pyc
  252. │   │   │   │   │   ├── cell_wrapper.cpython-37.pyc
  253. │   │   │   │   │   ├── choice_question.cpython-37.pyc
  254. │   │   │   │   │   ├── confirmation_question.cpython-37.pyc
  255. │   │   │   │   │   ├── empty_line.cpython-37.pyc
  256. │   │   │   │   │   ├── exception_trace.cpython-37.pyc
  257. │   │   │   │   │   ├── __init__.cpython-37.pyc
  258. │   │   │   │   │   ├── labeled_paragraph.cpython-37.pyc
  259. │   │   │   │   │   ├── name_version.cpython-37.pyc
  260. │   │   │   │   │   ├── paragraph.cpython-37.pyc
  261. │   │   │   │   │   ├── progress_bar.cpython-37.pyc
  262. │   │   │   │   │   ├── progress_indicator.cpython-37.pyc
  263. │   │   │   │   │   ├── question.cpython-37.pyc
  264. │   │   │   │   │   └── table.cpython-37.pyc
  265. │   │   │   │   ├── question.py
  266. │   │   │   │   └── table.py
  267. │   │   │   ├── help
  268. │   │   │   │   ├── abstract_help.py
  269. │   │   │   │   ├── application_help.py
  270. │   │   │   │   ├── command_help.py
  271. │   │   │   │   ├── __init__.py
  272. │   │   │   │   └── __pycache__
  273. │   │   │   │   ├── abstract_help.cpython-37.pyc
  274. │   │   │   │   ├── application_help.cpython-37.pyc
  275. │   │   │   │   ├── command_help.cpython-37.pyc
  276. │   │   │   │   └── __init__.cpython-37.pyc
  277. │   │   │   ├── __init__.py
  278. │   │   │   ├── layout
  279. │   │   │   │   ├── block_layout.py
  280. │   │   │   │   ├── __init__.py
  281. │   │   │   │   └── __pycache__
  282. │   │   │   │   ├── block_layout.cpython-37.pyc
  283. │   │   │   │   └── __init__.cpython-37.pyc
  284. │   │   │   ├── __pycache__
  285. │   │   │   │   ├── component.cpython-37.pyc
  286. │   │   │   │   ├── __init__.cpython-37.pyc
  287. │   │   │   │   └── rectangle.cpython-37.pyc
  288. │   │   │   ├── rectangle.py
  289. │   │   │   └── style
  290. │   │   │   ├── alignment.py
  291. │   │   │   ├── border_style.py
  292. │   │   │   ├── __init__.py
  293. │   │   │   ├── __pycache__
  294. │   │   │   │   ├── alignment.cpython-37.pyc
  295. │   │   │   │   ├── border_style.cpython-37.pyc
  296. │   │   │   │   ├── __init__.cpython-37.pyc
  297. │   │   │   │   └── table_style.cpython-37.pyc
  298. │   │   │   └── table_style.py
  299. │   │   └── utils
  300. │   │   ├── command.py
  301. │   │   ├── _compat.py
  302. │   │   ├── __init__.py
  303. │   │   ├── __pycache__
  304. │   │   │   ├── command.cpython-37.pyc
  305. │   │   │   ├── _compat.cpython-37.pyc
  306. │   │   │   ├── __init__.cpython-37.pyc
  307. │   │   │   ├── string.cpython-37.pyc
  308. │   │   │   ├── terminal.cpython-37.pyc
  309. │   │   │   └── time.cpython-37.pyc
  310. │   │   ├── string.py
  311. │   │   ├── terminal.py
  312. │   │   └── time.py
  313. │   └── clikit-0.3.2.dist-info
  314. │   ├── INSTALLER
  315. │   ├── LICENSE
  316. │   ├── METADATA
  317. │   ├── RECORD
  318. │   ├── top_level.txt
  319. │   └── WHEEL
  320. └── nix-support
  321. └── propagated-build-inputs
  322.  
  323. 63 directories, 257 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement