├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── _pysqlite ├── cache.h ├── connection.h └── module.h ├── examples ├── generate_series.py ├── regex_search.py └── web-scraper.py ├── setup.py ├── tests.py └── vtfunc.pyx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/README.md -------------------------------------------------------------------------------- /_pysqlite/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/_pysqlite/cache.h -------------------------------------------------------------------------------- /_pysqlite/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/_pysqlite/connection.h -------------------------------------------------------------------------------- /_pysqlite/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/_pysqlite/module.h -------------------------------------------------------------------------------- /examples/generate_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/examples/generate_series.py -------------------------------------------------------------------------------- /examples/regex_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/examples/regex_search.py -------------------------------------------------------------------------------- /examples/web-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/examples/web-scraper.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/tests.py -------------------------------------------------------------------------------- /vtfunc.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/sqlite-vtfunc/HEAD/vtfunc.pyx --------------------------------------------------------------------------------