Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 24, 2018 03:59
Show Gist options
  • Save ryantm/8c3c1535cddc99a1fae23e2fe0d52ace to your computer and use it in GitHub Desktop.
Save ryantm/8c3c1535cddc99a1fae23e2fe0d52ace to your computer and use it in GitHub Desktop.
/nix/store/kw0yafpxw5svh4qd73lrxsfsk5lnqiia-python3.6-python-sql-1.0.0
├── lib
│   └── python3.6
│   └── site-packages
│   ├── python_sql-1.0.0.dist-info
│   │   ├── INSTALLER
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── sql
│   ├── aggregate.py
│   ├── conditionals.py
│   ├── functions.py
│   ├── __init__.py
│   ├── operators.py
│   ├── __pycache__
│   │   ├── aggregate.cpython-36.pyc
│   │   ├── conditionals.cpython-36.pyc
│   │   ├── functions.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   └── operators.cpython-36.pyc
│   └── tests
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-36.pyc
│   │   ├── test_aggregate.cpython-36.pyc
│   │   ├── test_alias.cpython-36.pyc
│   │   ├── test_as.cpython-36.pyc
│   │   ├── test_cast.cpython-36.pyc
│   │   ├── test_collate.cpython-36.pyc
│   │   ├── test_column.cpython-36.pyc
│   │   ├── test_combining_query.cpython-36.pyc
│   │   ├── test_conditionals.cpython-36.pyc
│   │   ├── test_delete.cpython-36.pyc
│   │   ├── test_for.cpython-36.pyc
│   │   ├── test_functions.cpython-36.pyc
│   │   ├── test_insert.cpython-36.pyc
│   │   ├── test_join.cpython-36.pyc
│   │   ├── test_lateral.cpython-36.pyc
│   │   ├── test_literal.cpython-36.pyc
│   │   ├── test_operators.cpython-36.pyc
│   │   ├── test_order.cpython-36.pyc
│   │   ├── test_select.cpython-36.pyc
│   │   ├── test_table.cpython-36.pyc
│   │   ├── test_update.cpython-36.pyc
│   │   ├── test_values.cpython-36.pyc
│   │   ├── test_window.cpython-36.pyc
│   │   └── test_with.cpython-36.pyc
│   ├── test_aggregate.py
│   ├── test_alias.py
│   ├── test_as.py
│   ├── test_cast.py
│   ├── test_collate.py
│   ├── test_column.py
│   ├── test_combining_query.py
│   ├── test_conditionals.py
│   ├── test_delete.py
│   ├── test_for.py
│   ├── test_functions.py
│   ├── test_insert.py
│   ├── test_join.py
│   ├── test_lateral.py
│   ├── test_literal.py
│   ├── test_operators.py
│   ├── test_order.py
│   ├── test_select.py
│   ├── test_table.py
│   ├── test_update.py
│   ├── test_values.py
│   ├── test_window.py
│   └── test_with.py
└── nix-support
└── propagated-build-inputs
9 directories, 64 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment