All Projects → karlb → sqlite-spellfix

karlb / sqlite-spellfix

Licence: MIT license
Loadable spellfix1 extension for sqlite as python package

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to sqlite-spellfix

sqlite-gui
Lightweight SQLite editor for Windows
Stars: ✭ 151 (+1061.54%)
Mutual labels:  extension, sqlite3
Online-News-Portal-with-Django
Daily News For You is an online news portal developed by Django and SQLite
Stars: ✭ 45 (+246.15%)
Mutual labels:  sqlite3
spacy hunspell
✏️ Hunspell extension for spaCy 2.0.
Stars: ✭ 94 (+623.08%)
Mutual labels:  spelling-correction
VscOdooSnippets
Odoo Snippets for Visual Studio Code
Stars: ✭ 29 (+123.08%)
Mutual labels:  extension
grammarify
Grammarify is a npm package that safely cleans up text that has mispellings, improper capitalization, lexical illusions, among other things.
Stars: ✭ 43 (+230.77%)
Mutual labels:  spelling-correction
choria
Finally, an MMORPG that's all about grinding and doing chores.
Stars: ✭ 19 (+46.15%)
Mutual labels:  sqlite3
sc-translator-crx
Focus on providing a great inline web translation experience. A translate extension for chrome.
Stars: ✭ 79 (+507.69%)
Mutual labels:  extension
SwiftMan
Swift extensions and utils classes
Stars: ✭ 31 (+138.46%)
Mutual labels:  extension
Mathurat
A text-based Mathurat library
Stars: ✭ 14 (+7.69%)
Mutual labels:  sqlite3
exqlite
An SQLite3 driver for Elixir
Stars: ✭ 128 (+884.62%)
Mutual labels:  sqlite3
qzone helper
QQ空间助手,批量删除,导出说说/留言/日志/相册 浏览器插件和脚本
Stars: ✭ 36 (+176.92%)
Mutual labels:  extension
yii2-highlight
Yii2 Highlight.js extension
Stars: ✭ 14 (+7.69%)
Mutual labels:  extension
thesaurus
TT Hackathon 2018 - Autocomplete for Visual Programming Nodes
Stars: ✭ 23 (+76.92%)
Mutual labels:  extension
webplayer-hotkeys
A Chrome extension that assigns hotkeys to play/pause, and switch musics (next and previous). Works with Spotify, Deezer, SoundCloud and Youtube
Stars: ✭ 16 (+23.08%)
Mutual labels:  extension
plant erd
ERD exporter with PlantUML and mermaid format
Stars: ✭ 126 (+869.23%)
Mutual labels:  sqlite3
azure-boards-decompose
Azure Boards extension to quickly decompose work items into a valid hierarchy
Stars: ✭ 35 (+169.23%)
Mutual labels:  extension
httpz
Fat-free hardenable opportunistic encryption for Firefox
Stars: ✭ 60 (+361.54%)
Mutual labels:  extension
FOF3-Basic
A hello world type example for Akeeba F0F3 as a walkthrough for building a Joomla! component from the ground up.
Stars: ✭ 14 (+7.69%)
Mutual labels:  extension
Line-Clipper
💻Efficient navigation between browser and IDE while working on GitHub.
Stars: ✭ 64 (+392.31%)
Mutual labels:  extension
Netlify
A VS Code extension that displays your Netlify build statuses and more!
Stars: ✭ 23 (+76.92%)
Mutual labels:  extension

sqlite-spellfix

This python package includes a loadable spellfix1 extension module for sqlite. This allows other python packages to use this extension without requiring dependencies outside of the python ecosystem. For more details on the extension itself, see the official documentation.

Installation

Latest Release

Install the sqlite-spellfix package from pypi.

Current Development Version

Install via pip

pip install git+git://github.com/karlb/sqlite-spellfix

or add this to you requirements.txt:

git+git://github.com/karlb/sqlite-spellfix

Usage

import sqlite3
import sqlite_spellfix

conn = sqlite3.connect(":memory:")
conn.enable_load_extension(True)
conn.load_extension(sqlite_spellfix.extension_path())
# now use as described in https://www.sqlite.org/spellfix1.html

See Also

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].