pycrossword  0.3
Pure-Python implementation of a crossword puzzle generator and editor
Classes | Variables
pycross.dbapi Namespace Reference

Classes

class  Sqlitedb
 SQLite database driver implementation wrapping the standard Python sqlite3 methods. More...
 

Variables

 SQL_CREATE_TABLES = \
 SQL query to create default table structure. More...
 
 SQL_INSERT_POS = \
 SQL query to insert part of speech data. More...
 
 SQL_INSERT_WORD = \
 SQL query to insert words and part of speech data. More...
 

Detailed Description

Low-level SQLite database driver implementation with a bunch of handy methods to create the default DB structure to use as a word source, import words from Hunspell open-source dictionaries, etc.

Variable Documentation

◆ SQL_CREATE_TABLES

pycross.dbapi.SQL_CREATE_TABLES = \

SQL query to create default table structure.

◆ SQL_INSERT_POS

pycross.dbapi.SQL_INSERT_POS = \

SQL query to insert part of speech data.

◆ SQL_INSERT_WORD

pycross.dbapi.SQL_INSERT_WORD = \

SQL query to insert words and part of speech data.