Metadata-Version: 2.1
Name: touchfish
Version: 1.0.2
Summary: data service and python sdk for touchfish #7009d00b03b81b08a9828409d84db6eeff102614
Author: yzjsswk
Author-email: yzjsswk@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: yfunc
Requires-Dist: PyYAML
Requires-Dist: whoosh
Requires-Dist: flask
Requires-Dist: requests
Requires-Dist: PyMuPDF

the data service for the touchfish app, which contains two part:
- tfdataservice: running data service (a web server)
```python
from touchfish import tfdataservice

tfdataservice.run(workpath='', port=2233)
```
- tfoperator: the python sdk for data service
```python
from touchfish import tfoperator

# init the operator
tfop = tfoperator(host='', port=2233)

# add a fish
tfop.add_fish('testtest', type='txt', description='', tags=[['test']])

# search fish
res = tfop.search_fish(tags=[['test']])
res.data
```
