File tree 5 files changed +43
-2
lines changed
5 files changed +43
-2
lines changed Original file line number Diff line number Diff line change 1
1
include setup.py
2
2
include tox.ini
3
+ include LICENSE
3
4
graft tests
4
5
6
+ global-exclude __pycache__/*
7
+
Original file line number Diff line number Diff line change
1
+ sqlite-fts-python
2
+ =================
3
+
4
+ sqlitefts-python provides binding for tokenizer of `SQLite Full-Text search(FTS3/4) `_.
5
+ It allows you to write tokenizers in Python.
6
+
7
+
8
+ SQLite has Full-Text search feature FTS3/FTS4 along with some `predefined tokenizers `_.
9
+ It is easy to use and has enough functionality. Python has a built-in SQLite module,
10
+ so that it is easy to use and deploy. You don't need anything else to full-text search.
11
+
12
+ But... Predefined tokenizers are not enough for some languages including Japanese. Also it is not easy to write own tokenizers.
13
+ With this modules, you can write tokenizers in Python without any extra modules and C compiler.
14
+
15
+
16
+ Requirements
17
+ ============
18
+
19
+ * FTS3/4 enabled SQLite
20
+
21
+
22
+ Licence
23
+ =======
24
+
25
+ This software is released under the MIT License, see LICENSE.
26
+
27
+
28
+ Thanks
29
+ ======
30
+
31
+ * https://github.com/saaj
32
+
33
+
34
+ .. _SQLite Full-Text search(FTS3/4) : http://www.sqlite.org/fts3.html
35
+ .. _predefined tokenizers : http://www.sqlite.org/fts3.html#tokenizer
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ [wheel]
2
+ universal =1
3
+
Original file line number Diff line number Diff line change 5
5
name = "sqlitefts" ,
6
6
version = "0.2" ,
7
7
packages = ["sqlitefts" ],
8
- description = 'A Python binding of SQLite Full Text Search Tokenizer' ,
8
+ description = 'A Python binding for tokenizers of SQLite Full Text Search' ,
9
+ long_description = open ('README.rst' ).read (),
9
10
url = 'https://github.com/hideaki-t/sqlite-fts-python/' ,
10
11
classifiers = [
11
12
'Development Status :: 2 - Pre-Alpha' ,
You can’t perform that action at this time.
0 commit comments