Metadata-Version: 2.1
Name: python-sdk-bitable
Version: 0.0.6
Summary: Python sdk for 飞书多维表格
Home-page: https://github.com/me/myproject
Author: liushengyi
Author-email: liuwenxuan123@qq.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.5
Description-Content-Type: text/markdown
License-File: LICENSE


飞书多维表格 API Client Wrapper for Python
=======================
Installing
-----

```bash
pip install python-sdk-bitable
```

Documentation
-----
Full documentation here:待完善


Usage Example
-----
Below are some of the methods available in the wrapper.
```bash
bitable = Bitable('base_id', 'table_id', 'app_id', 'app_secret')

bitable.list_tables()

bitable.list_views()

bitable.list_records()

# CRUD  (insert update update delete)
bitable.insert({'Name': 'John'})

# batch insert
bitable.batch_insert([{'Name': 'Tom', 'Sex': 'male'}, {'Name': 'Bob','Sex': 'female'}])

# return first matched record
bitable.match('Name', 'Tom')

# return all matched records
bitable.search('Name', 'Tom')

bitable.update_by_field('Name', 'Tom', {"Sex": "male"})

```
For the full list and documentation visit the docs

License
-------
[MIT](https://choosealicense.com/licenses/mit/)




