Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 15, 2020 19:01
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/fb7fc0c6fa2464790bc38eeef461b844 to your computer and use it in GitHub Desktop.
Save r-ryantm/fb7fc0c6fa2464790bc38eeef461b844 to your computer and use it in GitHub Desktop.
/nix/store/wv3afkfn81zpvc76na0sqbj96c38xldg-python3.7-vertica-python-1.0.0
├── lib
│   └── python3.7
│   └── site-packages
│   ├── vertica_python
│   │   ├── compat.py
│   │   ├── datatypes.py
│   │   ├── errors.py
│   │   ├── __init__.py
│   │   ├── os_utils.py
│   │   ├── __pycache__
│   │   │   ├── compat.cpython-37.pyc
│   │   │   ├── datatypes.cpython-37.pyc
│   │   │   ├── errors.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── os_utils.cpython-37.pyc
│   │   ├── tests
│   │   │   ├── common
│   │   │   │   ├── base.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── conftest.py
│   │   │   ├── __init__.py
│   │   │   ├── integration_tests
│   │   │   │   ├── base.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_authentication.cpython-37.pyc
│   │   │   │   │   ├── test_cancel.cpython-37.pyc
│   │   │   │   │   ├── test_column.cpython-37.pyc
│   │   │   │   │   ├── test_connection.cpython-37.pyc
│   │   │   │   │   ├── test_cursor.cpython-37.pyc
│   │   │   │   │   ├── test_datatypes.cpython-37.pyc
│   │   │   │   │   ├── test_dates.cpython-37.pyc
│   │   │   │   │   ├── test_errors.cpython-37.pyc
│   │   │   │   │   ├── test_loadbalance.cpython-37.pyc
│   │   │   │   │   ├── test_timezones.cpython-37.pyc
│   │   │   │   │   └── test_unicode.cpython-37.pyc
│   │   │   │   ├── test_authentication.py
│   │   │   │   ├── test_cancel.py
│   │   │   │   ├── test_column.py
│   │   │   │   ├── test_connection.py
│   │   │   │   ├── test_cursor.py
│   │   │   │   ├── test_datatypes.py
│   │   │   │   ├── test_dates.py
│   │   │   │   ├── test_errors.py
│   │   │   │   ├── test_loadbalance.py
│   │   │   │   ├── test_timezones.py
│   │   │   │   └── test_unicode.py
│   │   │   ├── __pycache__
│   │   │   │   ├── conftest.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── unit_tests
│   │   │   ├── base.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_errors.cpython-37.pyc
│   │   │   │   ├── test_logging.cpython-37.pyc
│   │   │   │   ├── test_notice.cpython-37.pyc
│   │   │   │   ├── test_parsedsn.cpython-37.pyc
│   │   │   │   ├── test_sql_literal.cpython-37.pyc
│   │   │   │   └── test_timestamps.cpython-37.pyc
│   │   │   ├── test_errors.py
│   │   │   ├── test_logging.py
│   │   │   ├── test_notice.py
│   │   │   ├── test_parsedsn.py
│   │   │   ├── test_sql_literal.py
│   │   │   └── test_timestamps.py
│   │   └── vertica
│   │   ├── column.py
│   │   ├── connection.py
│   │   ├── cursor.py
│   │   ├── __init__.py
│   │   ├── log.py
│   │   ├── messages
│   │   │   ├── backend_messages
│   │   │   │   ├── authentication.py
│   │   │   │   ├── backend_key_data.py
│   │   │   │   ├── bind_complete.py
│   │   │   │   ├── close_complete.py
│   │   │   │   ├── command_complete.py
│   │   │   │   ├── command_description.py
│   │   │   │   ├── copy_done_response.py
│   │   │   │   ├── copy_in_response.py
│   │   │   │   ├── data_row.py
│   │   │   │   ├── empty_query_response.py
│   │   │   │   ├── end_of_batch_response.py
│   │   │   │   ├── error_response.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── load_balance_response.py
│   │   │   │   ├── load_file.py
│   │   │   │   ├── no_data.py
│   │   │   │   ├── notice_response.py
│   │   │   │   ├── parameter_description.py
│   │   │   │   ├── parameter_status.py
│   │   │   │   ├── parse_complete.py
│   │   │   │   ├── portal_suspended.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── authentication.cpython-37.pyc
│   │   │   │   │   ├── backend_key_data.cpython-37.pyc
│   │   │   │   │   ├── bind_complete.cpython-37.pyc
│   │   │   │   │   ├── close_complete.cpython-37.pyc
│   │   │   │   │   ├── command_complete.cpython-37.pyc
│   │   │   │   │   ├── command_description.cpython-37.pyc
│   │   │   │   │   ├── copy_done_response.cpython-37.pyc
│   │   │   │   │   ├── copy_in_response.cpython-37.pyc
│   │   │   │   │   ├── data_row.cpython-37.pyc
│   │   │   │   │   ├── empty_query_response.cpython-37.pyc
│   │   │   │   │   ├── end_of_batch_response.cpython-37.pyc
│   │   │   │   │   ├── error_response.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── load_balance_response.cpython-37.pyc
│   │   │   │   │   ├── load_file.cpython-37.pyc
│   │   │   │   │   ├── no_data.cpython-37.pyc
│   │   │   │   │   ├── notice_response.cpython-37.pyc
│   │   │   │   │   ├── parameter_description.cpython-37.pyc
│   │   │   │   │   ├── parameter_status.cpython-37.pyc
│   │   │   │   │   ├── parse_complete.cpython-37.pyc
│   │   │   │   │   ├── portal_suspended.cpython-37.pyc
│   │   │   │   │   ├── ready_for_query.cpython-37.pyc
│   │   │   │   │   ├── row_description.cpython-37.pyc
│   │   │   │   │   ├── unknown.cpython-37.pyc
│   │   │   │   │   ├── verify_files.cpython-37.pyc
│   │   │   │   │   └── write_file.cpython-37.pyc
│   │   │   │   ├── ready_for_query.py
│   │   │   │   ├── row_description.py
│   │   │   │   ├── unknown.py
│   │   │   │   ├── verify_files.py
│   │   │   │   └── write_file.py
│   │   │   ├── frontend_messages
│   │   │   │   ├── bind.py
│   │   │   │   ├── cancel_request.py
│   │   │   │   ├── close.py
│   │   │   │   ├── copy_data.py
│   │   │   │   ├── copy_done.py
│   │   │   │   ├── copy_error.py
│   │   │   │   ├── copy_fail.py
│   │   │   │   ├── crypt_windows.py
│   │   │   │   ├── describe.py
│   │   │   │   ├── end_of_batch_request.py
│   │   │   │   ├── execute.py
│   │   │   │   ├── flush.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── load_balance_request.py
│   │   │   │   ├── parse.py
│   │   │   │   ├── password.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── bind.cpython-37.pyc
│   │   │   │   │   ├── cancel_request.cpython-37.pyc
│   │   │   │   │   ├── close.cpython-37.pyc
│   │   │   │   │   ├── copy_data.cpython-37.pyc
│   │   │   │   │   ├── copy_done.cpython-37.pyc
│   │   │   │   │   ├── copy_error.cpython-37.pyc
│   │   │   │   │   ├── copy_fail.cpython-37.pyc
│   │   │   │   │   ├── crypt_windows.cpython-37.pyc
│   │   │   │   │   ├── describe.cpython-37.pyc
│   │   │   │   │   ├── end_of_batch_request.cpython-37.pyc
│   │   │   │   │   ├── execute.cpython-37.pyc
│   │   │   │   │   ├── flush.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── load_balance_request.cpython-37.pyc
│   │   │   │   │   ├── parse.cpython-37.pyc
│   │   │   │   │   ├── password.cpython-37.pyc
│   │   │   │   │   ├── query.cpython-37.pyc
│   │   │   │   │   ├── ssl_request.cpython-37.pyc
│   │   │   │   │   ├── startup.cpython-37.pyc
│   │   │   │   │   ├── sync.cpython-37.pyc
│   │   │   │   │   ├── terminate.cpython-37.pyc
│   │   │   │   │   └── verified_files.cpython-37.pyc
│   │   │   │   ├── query.py
│   │   │   │   ├── ssl_request.py
│   │   │   │   ├── startup.py
│   │   │   │   ├── sync.py
│   │   │   │   ├── terminate.py
│   │   │   │   └── verified_files.py
│   │   │   ├── __init__.py
│   │   │   ├── message.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── message.cpython-37.pyc
│   │   ├── mixins
│   │   │   ├── __init__.py
│   │   │   ├── notice_response_attr.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── notice_response_attr.cpython-37.pyc
│   │   └── __pycache__
│   │   ├── column.cpython-37.pyc
│   │   ├── connection.cpython-37.pyc
│   │   ├── cursor.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   └── log.cpython-37.pyc
│   └── vertica_python-1.0.0.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
25 directories, 182 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment