Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.85 KB | None | 0 0
  1. /nix/store/jvyndgnflg6mnarz7ikpps6xcc5znckn-python3.7-srsly-0.1.0
  2. ├── lib
  3. │   └── python3.7
  4. │   └── site-packages
  5. │   ├── srsly
  6. │   │   ├── about.py
  7. │   │   ├── cloudpickle
  8. │   │   │   ├── cloudpickle.py
  9. │   │   │   ├── __init__.py
  10. │   │   │   └── __pycache__
  11. │   │   │   ├── cloudpickle.cpython-37.pyc
  12. │   │   │   └── __init__.cpython-37.pyc
  13. │   │   ├── __init__.py
  14. │   │   ├── _json_api.py
  15. │   │   ├── msgpack
  16. │   │   │   ├── buff_converter.h
  17. │   │   │   ├── exceptions.py
  18. │   │   │   ├── _ext_type.py
  19. │   │   │   ├── __init__.py
  20. │   │   │   ├── _msgpack_numpy.py
  21. │   │   │   ├── _packer.cpython-37m-x86_64-linux-gnu.so
  22. │   │   │   ├── _packer.pyx
  23. │   │   │   ├── pack.h
  24. │   │   │   ├── pack_template.h
  25. │   │   │   ├── __pycache__
  26. │   │   │   │   ├── exceptions.cpython-37.pyc
  27. │   │   │   │   ├── _ext_type.cpython-37.pyc
  28. │   │   │   │   ├── __init__.cpython-37.pyc
  29. │   │   │   │   ├── _msgpack_numpy.cpython-37.pyc
  30. │   │   │   │   ├── util.cpython-37.pyc
  31. │   │   │   │   └── _version.cpython-37.pyc
  32. │   │   │   ├── sysdep.h
  33. │   │   │   ├── unpack_define.h
  34. │   │   │   ├── _unpacker.cpython-37m-x86_64-linux-gnu.so
  35. │   │   │   ├── _unpacker.pyx
  36. │   │   │   ├── unpack.h
  37. │   │   │   ├── unpack_template.h
  38. │   │   │   ├── util.py
  39. │   │   │   └── _version.py
  40. │   │   ├── _msgpack_api.py
  41. │   │   ├── _pickle_api.py
  42. │   │   ├── __pycache__
  43. │   │   │   ├── about.cpython-37.pyc
  44. │   │   │   ├── __init__.cpython-37.pyc
  45. │   │   │   ├── _json_api.cpython-37.pyc
  46. │   │   │   ├── _msgpack_api.cpython-37.pyc
  47. │   │   │   ├── _pickle_api.cpython-37.pyc
  48. │   │   │   └── util.cpython-37.pyc
  49. │   │   ├── tests
  50. │   │   │   ├── cloudpickle
  51. │   │   │   │   ├── cloudpickle_file_test.py
  52. │   │   │   │   ├── __init__.py
  53. │   │   │   │   ├── __pycache__
  54. │   │   │   │   │   ├── cloudpickle_file_test.cpython-37.pyc
  55. │   │   │   │   │   ├── __init__.cpython-37.pyc
  56. │   │   │   │   │   └── testutils.cpython-37.pyc
  57. │   │   │   │   └── testutils.py
  58. │   │   │   ├── __init__.py
  59. │   │   │   ├── msgpack
  60. │   │   │   │   ├── __init__.py
  61. │   │   │   │   ├── __pycache__
  62. │   │   │   │   │   ├── __init__.cpython-37.pyc
  63. │   │   │   │   │   ├── test_buffer.cpython-37.pyc
  64. │   │   │   │   │   ├── test_case.cpython-37.pyc
  65. │   │   │   │   │   ├── test_except.cpython-37.pyc
  66. │   │   │   │   │   ├── test_extension.cpython-37.pyc
  67. │   │   │   │   │   ├── test_format.cpython-37.pyc
  68. │   │   │   │   │   ├── test_limits.cpython-37.pyc
  69. │   │   │   │   │   ├── test_memoryview.cpython-37.pyc
  70. │   │   │   │   │   ├── test_newspec.cpython-37.pyc
  71. │   │   │   │   │   ├── test_numpy.cpython-37.pyc
  72. │   │   │   │   │   ├── test_pack.cpython-37.pyc
  73. │   │   │   │   │   ├── test_read_size.cpython-37.pyc
  74. │   │   │   │   │   ├── test_seq.cpython-37.pyc
  75. │   │   │   │   │   ├── test_sequnpack.cpython-37.pyc
  76. │   │   │   │   │   ├── test_stricttype.cpython-37.pyc
  77. │   │   │   │   │   ├── test_subtype.cpython-37.pyc
  78. │   │   │   │   │   └── test_unpack.cpython-37.pyc
  79. │   │   │   │   ├── test_buffer.py
  80. │   │   │   │   ├── test_case.py
  81. │   │   │   │   ├── test_except.py
  82. │   │   │   │   ├── test_extension.py
  83. │   │   │   │   ├── test_format.py
  84. │   │   │   │   ├── test_limits.py
  85. │   │   │   │   ├── test_memoryview.py
  86. │   │   │   │   ├── test_newspec.py
  87. │   │   │   │   ├── test_numpy.py
  88. │   │   │   │   ├── test_pack.py
  89. │   │   │   │   ├── test_read_size.py
  90. │   │   │   │   ├── test_seq.py
  91. │   │   │   │   ├── test_sequnpack.py
  92. │   │   │   │   ├── test_stricttype.py
  93. │   │   │   │   ├── test_subtype.py
  94. │   │   │   │   └── test_unpack.py
  95. │   │   │   ├── __pycache__
  96. │   │   │   │   ├── __init__.cpython-37.pyc
  97. │   │   │   │   ├── test_json_api.cpython-37.pyc
  98. │   │   │   │   ├── test_msgpack_api.cpython-37.pyc
  99. │   │   │   │   └── test_pickle_api.cpython-37.pyc
  100. │   │   │   ├── test_json_api.py
  101. │   │   │   ├── test_msgpack_api.py
  102. │   │   │   ├── test_pickle_api.py
  103. │   │   │   └── ujson
  104. │   │   │   ├── __init__.py
  105. │   │   │   ├── __pycache__
  106. │   │   │   │   ├── __init__.cpython-37.pyc
  107. │   │   │   │   └── test_ujson.cpython-37.pyc
  108. │   │   │   └── test_ujson.py
  109. │   │   ├── ujson
  110. │   │   │   ├── __init__.py
  111. │   │   │   ├── JSONtoObj.c
  112. │   │   │   ├── objToJSON.c
  113. │   │   │   ├── __pycache__
  114. │   │   │   │   └── __init__.cpython-37.pyc
  115. │   │   │   ├── py_defines.h
  116. │   │   │   ├── ujson.c
  117. │   │   │   ├── ujson.cpython-37m-x86_64-linux-gnu.so
  118. │   │   │   └── version.h
  119. │   │   └── util.py
  120. │   └── srsly-0.1.0.dist-info
  121. │   ├── INSTALLER
  122. │   ├── LICENSE
  123. │   ├── METADATA
  124. │   ├── RECORD
  125. │   ├── top_level.txt
  126. │   ├── WHEEL
  127. │   └── zip-safe
  128. └── nix-support
  129. └── propagated-build-inputs
  130.  
  131. 21 directories, 107 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement