Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.30 KB | None | 0 0
  1. /nix/store/7i2clzzv86w6zbsfpyansn0i5179dn15-python3.7-qtconsole-4.5.5
  2. ├── bin
  3. │   └── jupyter-qtconsole
  4. ├── lib
  5. │   └── python3.7
  6. │   └── site-packages
  7. │   ├── qtconsole
  8. │   │   ├── ansi_code_processor.py
  9. │   │   ├── base_frontend_mixin.py
  10. │   │   ├── bracket_matcher.py
  11. │   │   ├── call_tip_widget.py
  12. │   │   ├── client.py
  13. │   │   ├── comms.py
  14. │   │   ├── completion_html.py
  15. │   │   ├── completion_plain.py
  16. │   │   ├── completion_widget.py
  17. │   │   ├── console_widget.py
  18. │   │   ├── frontend_widget.py
  19. │   │   ├── history_console_widget.py
  20. │   │   ├── __init__.py
  21. │   │   ├── inprocess.py
  22. │   │   ├── ipython_widget.py
  23. │   │   ├── jupyter_widget.py
  24. │   │   ├── kernel_mixins.py
  25. │   │   ├── kill_ring.py
  26. │   │   ├── __main__.py
  27. │   │   ├── mainwindow.py
  28. │   │   ├── manager.py
  29. │   │   ├── __pycache__
  30. │   │   │   ├── ansi_code_processor.cpython-37.pyc
  31. │   │   │   ├── base_frontend_mixin.cpython-37.pyc
  32. │   │   │   ├── bracket_matcher.cpython-37.pyc
  33. │   │   │   ├── call_tip_widget.cpython-37.pyc
  34. │   │   │   ├── client.cpython-37.pyc
  35. │   │   │   ├── comms.cpython-37.pyc
  36. │   │   │   ├── completion_html.cpython-37.pyc
  37. │   │   │   ├── completion_plain.cpython-37.pyc
  38. │   │   │   ├── completion_widget.cpython-37.pyc
  39. │   │   │   ├── console_widget.cpython-37.pyc
  40. │   │   │   ├── frontend_widget.cpython-37.pyc
  41. │   │   │   ├── history_console_widget.cpython-37.pyc
  42. │   │   │   ├── __init__.cpython-37.pyc
  43. │   │   │   ├── inprocess.cpython-37.pyc
  44. │   │   │   ├── ipython_widget.cpython-37.pyc
  45. │   │   │   ├── jupyter_widget.cpython-37.pyc
  46. │   │   │   ├── kernel_mixins.cpython-37.pyc
  47. │   │   │   ├── kill_ring.cpython-37.pyc
  48. │   │   │   ├── __main__.cpython-37.pyc
  49. │   │   │   ├── mainwindow.cpython-37.pyc
  50. │   │   │   ├── manager.cpython-37.pyc
  51. │   │   │   ├── pygments_highlighter.cpython-37.pyc
  52. │   │   │   ├── qstringhelpers.cpython-37.pyc
  53. │   │   │   ├── qtconsoleapp.cpython-37.pyc
  54. │   │   │   ├── qt.cpython-37.pyc
  55. │   │   │   ├── qt_loaders.cpython-37.pyc
  56. │   │   │   ├── rich_ipython_widget.cpython-37.pyc
  57. │   │   │   ├── rich_jupyter_widget.cpython-37.pyc
  58. │   │   │   ├── rich_text.cpython-37.pyc
  59. │   │   │   ├── styles.cpython-37.pyc
  60. │   │   │   ├── svg.cpython-37.pyc
  61. │   │   │   ├── usage.cpython-37.pyc
  62. │   │   │   ├── util.cpython-37.pyc
  63. │   │   │   └── _version.cpython-37.pyc
  64. │   │   ├── pygments_highlighter.py
  65. │   │   ├── qstringhelpers.py
  66. │   │   ├── qtconsoleapp.py
  67. │   │   ├── qt_loaders.py
  68. │   │   ├── qt.py
  69. │   │   ├── resources
  70. │   │   │   └── icon
  71. │   │   │   └── JupyterConsole.svg
  72. │   │   ├── rich_ipython_widget.py
  73. │   │   ├── rich_jupyter_widget.py
  74. │   │   ├── rich_text.py
  75. │   │   ├── styles.py
  76. │   │   ├── svg.py
  77. │   │   ├── tests
  78. │   │   │   ├── __init__.py
  79. │   │   │   ├── __pycache__
  80. │   │   │   │   ├── __init__.cpython-37.pyc
  81. │   │   │   │   ├── test_00_console_widget.cpython-37.pyc
  82. │   │   │   │   ├── test_ansi_code_processor.cpython-37.pyc
  83. │   │   │   │   ├── test_app.cpython-37.pyc
  84. │   │   │   │   ├── test_comms.cpython-37.pyc
  85. │   │   │   │   ├── test_completion_widget.cpython-37.pyc
  86. │   │   │   │   ├── test_frontend_widget.cpython-37.pyc
  87. │   │   │   │   ├── test_jupyter_widget.cpython-37.pyc
  88. │   │   │   │   ├── test_kill_ring.cpython-37.pyc
  89. │   │   │   │   └── test_styles.cpython-37.pyc
  90. │   │   │   ├── test_00_console_widget.py
  91. │   │   │   ├── test_ansi_code_processor.py
  92. │   │   │   ├── test_app.py
  93. │   │   │   ├── test_comms.py
  94. │   │   │   ├── test_completion_widget.py
  95. │   │   │   ├── test_frontend_widget.py
  96. │   │   │   ├── test_jupyter_widget.py
  97. │   │   │   ├── test_kill_ring.py
  98. │   │   │   └── test_styles.py
  99. │   │   ├── usage.py
  100. │   │   ├── util.py
  101. │   │   └── _version.py
  102. │   └── qtconsole-4.5.5.dist-info
  103. │   ├── entry_points.txt
  104. │   ├── INSTALLER
  105. │   ├── LICENSE
  106. │   ├── METADATA
  107. │   ├── RECORD
  108. │   ├── top_level.txt
  109. │   └── WHEEL
  110. └── nix-support
  111. └── propagated-build-inputs
  112.  
  113. 12 directories, 98 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement