├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── hatch_build.py ├── images ├── console.png └── notebook.png ├── postgres_kernel ├── __init__.py ├── __main__.py ├── _version.py └── kernel.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/README.md -------------------------------------------------------------------------------- /hatch_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/hatch_build.py -------------------------------------------------------------------------------- /images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/images/console.png -------------------------------------------------------------------------------- /images/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/images/notebook.png -------------------------------------------------------------------------------- /postgres_kernel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/postgres_kernel/__init__.py -------------------------------------------------------------------------------- /postgres_kernel/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/postgres_kernel/__main__.py -------------------------------------------------------------------------------- /postgres_kernel/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.2.3' 2 | -------------------------------------------------------------------------------- /postgres_kernel/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/postgres_kernel/kernel.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgschiller/postgres_kernel/HEAD/pyproject.toml --------------------------------------------------------------------------------