otamapy is Python Interface for otama.
Project description
About
otamapy is Python Interface for otama .
Installation
from pip:
$ pip install --upgrade otamapy
from easy_install:
$ easy_install -ZU otamapy
Requirements
Python2.7+
Usage
config file (example.conf)
{
'namespace': 'testnamespace',
'driver': {'name': 'color', 'data_dir': './data', 'color_weight': 0.2},
'database': {'driver': 'sqlite3', 'name': './data/store.sqlite3'}
}
store to database, and search from database.
# store_and_search.py
from otama import Otama
db = Otama.open('example.conf')
kvs = {}
db.create_table()
for filename in ('foo.jpg', 'bar.jpg'):
kvs[db.insert(filename)] = filename
for result in db.search(10, 'foo.jpg')
key = result['id']
print("sim=%.3f, file=%s" % (result['similarity'], kvs[key]))
$ python store_and_search.py
sim=1.000, file=foo.jpg
sim=0.969, file=bar.jpg
see examples .
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
otamapy-0.1.tar.gz
(5.3 kB
view details)
File details
Details for the file otamapy-0.1.tar.gz
.
File metadata
- Download URL: otamapy-0.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05ad680cfabcb59c9780e217092741633806178c71e9f15e94ea9109297d0c31 |
|
MD5 | 300c902f8890f53d3369bdfdf16ea687 |
|
BLAKE2b-256 | eae7f11c1369a1d292537bd58ca6188e8d2531527d3c5d838d70a97c64de7749 |