Metadata-Version: 2.1
Name: touchfish
Version: 1.0.1
Summary: data service and python sdk for touchfish #b7ddf862598f2eaffc0c3b6755180abae489944d
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

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
```
