├── .gitignore ├── LICENSE ├── README.md ├── client.py ├── composite_api ├── base │ └── create_app_and_tables.py ├── contact │ └── list_user_by_department.py ├── im │ ├── send_file.py │ └── send_image.py └── sheets │ ├── copy_and_paste_by_range.py │ └── download_media_by_range.py ├── config.py ├── quick_start └── robot │ ├── alert.png │ ├── im.py │ ├── im_test.py │ └── main.py ├── requirements.txt └── tests ├── base └── create_app_and_tables_test.py ├── contact └── list_user_by_department_test.py ├── im ├── send_file_test.py └── send_image_test.py └── sheets ├── copy_and_paste_by_range_test.py └── download_media_by_range_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/client.py -------------------------------------------------------------------------------- /composite_api/base/create_app_and_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/composite_api/base/create_app_and_tables.py -------------------------------------------------------------------------------- /composite_api/contact/list_user_by_department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/composite_api/contact/list_user_by_department.py -------------------------------------------------------------------------------- /composite_api/im/send_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/composite_api/im/send_file.py -------------------------------------------------------------------------------- /composite_api/im/send_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/composite_api/im/send_image.py -------------------------------------------------------------------------------- /composite_api/sheets/copy_and_paste_by_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/composite_api/sheets/copy_and_paste_by_range.py -------------------------------------------------------------------------------- /composite_api/sheets/download_media_by_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/composite_api/sheets/download_media_by_range.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/config.py -------------------------------------------------------------------------------- /quick_start/robot/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/quick_start/robot/alert.png -------------------------------------------------------------------------------- /quick_start/robot/im.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/quick_start/robot/im.py -------------------------------------------------------------------------------- /quick_start/robot/im_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/quick_start/robot/im_test.py -------------------------------------------------------------------------------- /quick_start/robot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/quick_start/robot/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/base/create_app_and_tables_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/tests/base/create_app_and_tables_test.py -------------------------------------------------------------------------------- /tests/contact/list_user_by_department_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/tests/contact/list_user_by_department_test.py -------------------------------------------------------------------------------- /tests/im/send_file_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/tests/im/send_file_test.py -------------------------------------------------------------------------------- /tests/im/send_image_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/tests/im/send_image_test.py -------------------------------------------------------------------------------- /tests/sheets/copy_and_paste_by_range_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/tests/sheets/copy_and_paste_by_range_test.py -------------------------------------------------------------------------------- /tests/sheets/download_media_by_range_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larksuite/oapi-sdk-python-demo/HEAD/tests/sheets/download_media_by_range_test.py --------------------------------------------------------------------------------