Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created September 15, 2021 08:48
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 r-ryantm/71bdd7e417903c37bb2ca3ea1b6ab7ce to your computer and use it in GitHub Desktop.
Save r-ryantm/71bdd7e417903c37bb2ca3ea1b6ab7ce to your computer and use it in GitHub Desktop.
/nix/store/4khspzx5fd1f08rxzrp2xy7qgrsm3wlj-python3.8-python-sql-1.3.0
├── lib
│   └── python3.8
│   └── site-packages
│   ├── python_sql-1.3.0.dist-info
│   │   ├── direct_url.json
│   │   ├── INSTALLER
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── REQUESTED
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── sql
│   ├── aggregate.py
│   ├── conditionals.py
│   ├── functions.py
│   ├── __init__.py
│   ├── operators.py
│   ├── __pycache__
│   │   ├── aggregate.cpython-38.pyc
│   │   ├── conditionals.cpython-38.pyc
│   │   ├── functions.cpython-38.pyc
│   │   ├── __init__.cpython-38.pyc
│   │   └── operators.cpython-38.pyc
│   └── tests
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-38.pyc
│   │   ├── test_aggregate.cpython-38.pyc
│   │   ├── test_alias.cpython-38.pyc
│   │   ├── test_as.cpython-38.pyc
│   │   ├── test_cast.cpython-38.pyc
│   │   ├── test_collate.cpython-38.pyc
│   │   ├── test_column.cpython-38.pyc
│   │   ├── test_combining_query.cpython-38.pyc
│   │   ├── test_conditionals.cpython-38.pyc
│   │   ├── test_delete.cpython-38.pyc
│   │   ├── test_for.cpython-38.pyc
│   │   ├── test_functions.cpython-38.pyc
│   │   ├── test_insert.cpython-38.pyc
│   │   ├── test_join.cpython-38.pyc
│   │   ├── test_lateral.cpython-38.pyc
│   │   ├── test_literal.cpython-38.pyc
│   │   ├── test_operators.cpython-38.pyc
│   │   ├── test_order.cpython-38.pyc
│   │   ├── test_select.cpython-38.pyc
│   │   ├── test_table.cpython-38.pyc
│   │   ├── test_update.cpython-38.pyc
│   │   ├── test_values.cpython-38.pyc
│   │   ├── test_window.cpython-38.pyc
│   │   └── test_with.cpython-38.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, 66 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment