Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created November 3, 2019 00:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/87e3deaf82d7b4b05acb6494fa16d136 to your computer and use it in GitHub Desktop.
Save ryantm/87e3deaf82d7b4b05acb6494fa16d136 to your computer and use it in GitHub Desktop.
/nix/store/fxhmr77jzwryr0nizgjxwdrdz2dpmmrb-python3.8-srsly-0.2.0
├── lib
│   └── python3.8
│   └── site-packages
│   ├── srsly
│   │   ├── about.py
│   │   ├── cloudpickle
│   │   │   ├── cloudpickle.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── cloudpickle.cpython-38.pyc
│   │   │   └── __init__.cpython-38.pyc
│   │   ├── __init__.py
│   │   ├── _json_api.py
│   │   ├── msgpack
│   │   │   ├── buff_converter.h
│   │   │   ├── exceptions.py
│   │   │   ├── _ext_type.py
│   │   │   ├── __init__.py
│   │   │   ├── _msgpack_numpy.py
│   │   │   ├── _packer.cpython-38-x86_64-linux-gnu.so
│   │   │   ├── _packer.pyx
│   │   │   ├── pack.h
│   │   │   ├── pack_template.h
│   │   │   ├── __pycache__
│   │   │   │   ├── exceptions.cpython-38.pyc
│   │   │   │   ├── _ext_type.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── _msgpack_numpy.cpython-38.pyc
│   │   │   │   ├── util.cpython-38.pyc
│   │   │   │   └── _version.cpython-38.pyc
│   │   │   ├── sysdep.h
│   │   │   ├── unpack_define.h
│   │   │   ├── _unpacker.cpython-38-x86_64-linux-gnu.so
│   │   │   ├── _unpacker.pyx
│   │   │   ├── unpack.h
│   │   │   ├── unpack_template.h
│   │   │   ├── util.py
│   │   │   └── _version.py
│   │   ├── _msgpack_api.py
│   │   ├── _pickle_api.py
│   │   ├── __pycache__
│   │   │   ├── about.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── _json_api.cpython-38.pyc
│   │   │   ├── _msgpack_api.cpython-38.pyc
│   │   │   ├── _pickle_api.cpython-38.pyc
│   │   │   └── util.cpython-38.pyc
│   │   ├── tests
│   │   │   ├── cloudpickle
│   │   │   │   ├── cloudpickle_file_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── cloudpickle_file_test.cpython-38.pyc
│   │   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   │   └── testutils.cpython-38.pyc
│   │   │   │   └── testutils.py
│   │   │   ├── __init__.py
│   │   │   ├── msgpack
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   │   ├── test_buffer.cpython-38.pyc
│   │   │   │   │   ├── test_case.cpython-38.pyc
│   │   │   │   │   ├── test_except.cpython-38.pyc
│   │   │   │   │   ├── test_extension.cpython-38.pyc
│   │   │   │   │   ├── test_format.cpython-38.pyc
│   │   │   │   │   ├── test_limits.cpython-38.pyc
│   │   │   │   │   ├── test_memoryview.cpython-38.pyc
│   │   │   │   │   ├── test_newspec.cpython-38.pyc
│   │   │   │   │   ├── test_numpy.cpython-38.pyc
│   │   │   │   │   ├── test_pack.cpython-38.pyc
│   │   │   │   │   ├── test_read_size.cpython-38.pyc
│   │   │   │   │   ├── test_seq.cpython-38.pyc
│   │   │   │   │   ├── test_sequnpack.cpython-38.pyc
│   │   │   │   │   ├── test_stricttype.cpython-38.pyc
│   │   │   │   │   ├── test_subtype.cpython-38.pyc
│   │   │   │   │   └── test_unpack.cpython-38.pyc
│   │   │   │   ├── test_buffer.py
│   │   │   │   ├── test_case.py
│   │   │   │   ├── test_except.py
│   │   │   │   ├── test_extension.py
│   │   │   │   ├── test_format.py
│   │   │   │   ├── test_limits.py
│   │   │   │   ├── test_memoryview.py
│   │   │   │   ├── test_newspec.py
│   │   │   │   ├── test_numpy.py
│   │   │   │   ├── test_pack.py
│   │   │   │   ├── test_read_size.py
│   │   │   │   ├── test_seq.py
│   │   │   │   ├── test_sequnpack.py
│   │   │   │   ├── test_stricttype.py
│   │   │   │   ├── test_subtype.py
│   │   │   │   └── test_unpack.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── test_json_api.cpython-38.pyc
│   │   │   │   ├── test_msgpack_api.cpython-38.pyc
│   │   │   │   └── test_pickle_api.cpython-38.pyc
│   │   │   ├── test_json_api.py
│   │   │   ├── test_msgpack_api.py
│   │   │   ├── test_pickle_api.py
│   │   │   └── ujson
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   └── test_ujson.cpython-38.pyc
│   │   │   └── test_ujson.py
│   │   ├── ujson
│   │   │   ├── __init__.py
│   │   │   ├── JSONtoObj.c
│   │   │   ├── objToJSON.c
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-38.pyc
│   │   │   ├── py_defines.h
│   │   │   ├── ujson.c
│   │   │   ├── ujson.cpython-38-x86_64-linux-gnu.so
│   │   │   └── version.h
│   │   └── util.py
│   └── srsly-0.2.0.dist-info
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   ├── WHEEL
│   └── zip-safe
└── nix-support
└── propagated-build-inputs
21 directories, 107 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment