pylogiless 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 LOGILESS API Python Client Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,4 @@
1
+ include LICENSE
2
+ include requirements.txt
3
+ recursive-include docs *
4
+ recursive-include tests *
@@ -0,0 +1,311 @@
1
+ Metadata-Version: 2.1
2
+ Name: pylogiless
3
+ Version: 0.1.0
4
+ Summary: Python client for the LOGILESS API
5
+ Home-page: https://github.com/logiless/pylogiless
6
+ Author: LOGILESS API Python Client Contributors
7
+ Author-email: contact@logiless.jp
8
+ Project-URL: Bug Tracker, https://github.com/logiless/pylogiless/issues
9
+ Project-URL: Documentation, https://github.com/logiless/pylogiless/blob/main/docs
10
+ Project-URL: Source Code, https://github.com/logiless/pylogiless
11
+ Keywords: logiless,api,logistics,inventory,warehouse
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.7
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: License :: OSI Approved :: MIT License
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Development Status :: 3 - Alpha
20
+ Classifier: Intended Audience :: Developers
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.7
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+
26
+ # Documentation for Logiless API
27
+
28
+ このリポジトリにはLogiless APIに関するドキュメントとPython用クライアントライブラリ「pylogiless」が含まれています。
29
+
30
+ ## pylogiless - Python クライアントライブラリ
31
+
32
+ ロジレスAPIにPythonからアクセスするためのクライアントライブラリです。このライブラリを使用することで、Pythonアプリケーションから簡単にLOGILESS APIにアクセスすることができます。
33
+
34
+ ### インストール
35
+
36
+ ```bash
37
+ pip install pylogiless
38
+ ```
39
+
40
+ ### 使用方法
41
+
42
+ #### 初期化と認証
43
+
44
+ ```python
45
+ from pylogiless import LogilessClient
46
+
47
+ # クライアントの初期化
48
+ client = LogilessClient(
49
+ client_id="YOUR_CLIENT_ID",
50
+ client_secret="YOUR_CLIENT_SECRET",
51
+ redirect_uri="YOUR_REDIRECT_URI"
52
+ )
53
+
54
+ # 認証URLの取得
55
+ auth_url = client.get_authorization_url()
56
+ print(f"次のURLにアクセスして認証してください: {auth_url}")
57
+
58
+ # コールバックで取得した認可コードを使用してトークンを取得
59
+ code = "AUTHORIZATION_CODE" # ユーザーが認証後に取得した認可コード
60
+ client.fetch_token(code)
61
+
62
+ # または、既存のアクセストークンとリフレッシュトークンを設定
63
+ client.set_token(access_token="ACCESS_TOKEN", refresh_token="REFRESH_TOKEN")
64
+ ```
65
+
66
+ #### APIの呼び出し例
67
+
68
+ ```python
69
+ # 在庫情報の取得
70
+ inventory = client.actual_inventory_summary.list()
71
+
72
+ # 出荷配送の情報取得
73
+ outbound_deliveries = client.outbound_delivery.list()
74
+
75
+ # 商品情報の取得
76
+ article = client.article.get("ARTICLE_ID") # resource_idとして渡す
77
+
78
+ # 商品情報の作成
79
+ new_article = client.article.create({
80
+ "article_code": "ARTICLE_CODE",
81
+ "article_name": "商品名",
82
+ # その他の必要なパラメータ
83
+ })
84
+ ```
85
+
86
+ ### 機能
87
+
88
+ - OAuth2認証フロー(認可コードフロー)のサポート
89
+ - アクセストークンの自動更新
90
+ - APIエンドポイントへの簡単なアクセス
91
+ - エラーハンドリング
92
+
93
+ ### パッケージ構造
94
+
95
+ このライブラリは `pylogiless` という名前でインストールされます。標準的なPythonパッケージ構造に従い、以下のようにインポートできます:
96
+
97
+ ```python
98
+ # メインのクライアントと認証クラスは直接インポート可能
99
+ from pylogiless import LogilessClient, LogilessAuth
100
+
101
+ # 特定のエラークラスが必要な場合
102
+ from pylogiless import LogilessError, LogilessAuthError
103
+
104
+ # 内部モジュールに直接アクセスする場合(通常は不要)
105
+ from pylogiless.api import client, auth, errors
106
+ ```
107
+
108
+ ### ドキュメント
109
+
110
+ 詳細なドキュメントは以下のリンクをご覧ください:
111
+
112
+ - [API リファレンス](docs/api_reference.md) - 各APIエンドポイントの詳細な使い方
113
+ - [認証ガイド](docs/authentication.md) - OAuth2認証フローの詳細
114
+ - [エラーハンドリングガイド](docs/error_handling.md) - エラー処理の方法
115
+ - [サンプルコード](docs/example.py) - 基本的な使用例
116
+
117
+ より詳しいドキュメントは[GitHubリポジトリ](https://github.com/logiless/pylogiless)でご確認いただけます。
118
+
119
+ ### 依存関係
120
+
121
+ このパッケージは以下の依存関係があります:
122
+
123
+ ```
124
+ requests>=2.25.0
125
+ ```
126
+
127
+ ### ライセンスと免責事項
128
+
129
+ - MITライセンスの下で公開されています。詳細は[LICENSE](LICENSE)ファイルをご覧ください。
130
+ - このパッケージは、株式会社ロジレスの公式APIクライアントではありません。ロジレスおよびLOGILESSは株式会社ロジレスの登録商標です。
131
+
132
+ ## APIドキュメント
133
+
134
+ 以下は各Markdownファイルの説明と役割です。
135
+
136
+ ### ファイル一覧
137
+
138
+ #### docsフォルダ
139
+
140
+ 1. [**authentication.md**](docs/authentication.md)
141
+
142
+ - 認証と認可に関する情報が記載されています。
143
+ - アプリケーションの登録方法や認可コードの取得、アクセストークンの交換手順が詳述されています。
144
+
145
+ 2. [**specifications.md**](docs/specifications.md)
146
+
147
+ - APIの仕様に関する情報が記載されています。
148
+ - エンドポイントやデータフォーマットの詳細を含みます。
149
+
150
+ 3. [**errors.md**](docs/errors.md)
151
+
152
+ - エラーメッセージおよびエラーコードに関する情報が記載されています。
153
+ - 各エラーコードの説明やレスポンス形式が詳述されています。
154
+
155
+ #### interfaceフォルダ
156
+
157
+ - [**actual_inventory_summary.md**](interface/actual_inventory_summary.md)
158
+
159
+ - 実際の在庫サマリに関する情報を提供します。
160
+
161
+ - [**location.md**](interface/location.md)
162
+
163
+ - ロケーション情報の管理について記載されています。
164
+
165
+ - [**outbound_delivery.md**](interface/outbound_delivery.md)
166
+
167
+ - 出荷配送に関する情報を提供します。
168
+
169
+ - [**inbound_delivery.md**](interface/inbound_delivery.md)
170
+
171
+ - 入荷配送に関する情報を提供します。
172
+
173
+ - [**reorder_point.md**](interface/reorder_point.md)
174
+
175
+ - 再注文点の設定や管理に関する情報を提供します。
176
+
177
+ - [**article.md**](interface/article.md)
178
+
179
+ - 商品情報の管理に関する情報を提供します。
180
+
181
+ - [**inter_warehouse_transfer.md**](interface/inter_warehouse_transfer.md)
182
+
183
+ - 倉庫間移動に関する情報を提供します。
184
+
185
+ - [**transaction_log.md**](interface/transaction_log.md)
186
+
187
+ - 取引ログの記録に関する情報を提供します。
188
+
189
+ - [**supplier.md**](interface/supplier.md)
190
+
191
+ - サプライヤー情報の管理に関する情報を提供します。
192
+
193
+ - [**article_map.md**](interface/article_map.md)
194
+
195
+ - 商品マッピングに関する情報を提供します。
196
+
197
+ - [**logical_inventory_summary.md**](interface/logical_inventory_summary.md)
198
+
199
+ - 論理的な在庫サマリについて記載されています。
200
+
201
+ - [**store.md**](interface/store.md)
202
+
203
+ - 店舗情報の管理について記載されています。
204
+
205
+ - [**sales_order.md**](interface/sales_order.md)
206
+
207
+ - 受注情報の管理について記載されています。
208
+
209
+ - [**warehouse.md**](interface/warehouse.md)
210
+
211
+ - 倉庫情報の管理について記載されています。
212
+
213
+ - [**daily_inventory_summary.md**](interface/daily_inventory_summary.md)
214
+
215
+ - 日次在庫サマリに関する情報を提供します。
216
+
217
+ #### document_statusフォルダ
218
+
219
+ - [**delivery_status.md**](type/delivery_status.md)
220
+
221
+ - 配送ステータスに関する情報を提供します。
222
+
223
+ - [**authorization_status.md**](type/authorization_status.md)
224
+
225
+ - 認証ステータスに関する情報を提供します。
226
+
227
+ - [**document_status.md**](type/document_status.md)
228
+
229
+ - ドキュメントのステータス管理について記載されています。
230
+
231
+ - [**article_type.md**](type/article_type.md)
232
+
233
+ - 商品タイプに関する情報を提供します。
234
+
235
+ - [**inbound_delivery_status.md**](type/inbound_delivery_status.md)
236
+
237
+ - 入荷配送ステータスについて記載されています。
238
+
239
+ - [**incoming_payment_status.md**](type/incoming_payment_status.md)
240
+
241
+ - 受領済み支払いのステータスに関する情報を提供します。
242
+
243
+ - [**tax_rounding_method.md**](type/tax_rounding_method.md)
244
+
245
+ - 税金の丸め方法について記載されています。
246
+
247
+ - [**delivery_method.md**](type/delivery_method.md)
248
+
249
+ - 配送方法に関する情報を提供します。
250
+
251
+ - [**document_line_status.md**](type/document_line_status.md)
252
+
253
+ - ドキュメント行のステータスについて記載されています。
254
+
255
+ - [**tax_processing_method.md**](type/tax_processing_method.md)
256
+
257
+ - 税金処理の方法について記載されています。
258
+
259
+ - [**temperature_control.md**](type/temperature_control.md)
260
+
261
+ - 温度管理に関する情報を提供します。
262
+
263
+ - [**payment_method.md**](type/payment_method.md)
264
+
265
+ - 支払い方法に関する情報を提供します。
266
+
267
+ - [**inbound_delivery_category.md**](type/inbound_delivery_category.md)
268
+
269
+ - 入荷配送カテゴリに関する情報を提供します。
270
+
271
+ - [**tax_indicator.md**](type/tax_indicator.md)
272
+
273
+ - 税金インジケーターについて記載されています。
274
+
275
+ - [**express_type.md**](type/express_type.md)
276
+
277
+ - エクスプレス配送のタイプについて記載されています。
278
+
279
+ - [**transaction_type.md**](type/transaction_type.md)
280
+
281
+ - 取引タイプに関する情報を提供します。
282
+
283
+ - [**inventory_summary_layer.md**](type/inventory_summary_layer.md)
284
+
285
+ - 在庫サマリレイヤーについて記載されています。
286
+
287
+ ## リンクについて
288
+
289
+ ファイル間リンクや外部リンクは以下の通り修正されています:
290
+
291
+ - `/developer/documents/*` へのリンクは該当するMarkdownファイルへの相対リンクに変更。
292
+ - その他のリンクはLogilessの公式URLに変更。
293
+
294
+ ## 使用方法
295
+
296
+ 1. このリポジトリをクローンします。
297
+
298
+ ```bash
299
+ git clone https://github.com/solahsoyalp/LOGILESS_API_Docs_Unofficial.git
300
+ ```
301
+
302
+ 2. 各Markdownファイルを開き、必要な情報を確認してください。
303
+
304
+ ## 貢献
305
+
306
+ - APIドキュメントに関する修正や改善案がある場合、Pull Requestを歓迎します。
307
+ - バグ報告や機能リクエストは[GitHub Issues](https://github.com/logiless/pylogiless/issues)にてお願いします。
308
+
309
+ ## 著作権および免責
310
+
311
+ このファイルは公式APIドキュメント(<https://app2.logiless.com/developer/>)をMarkdown形式にまとめたものです。著作権は全て株式会社ロジレスに帰属します。
@@ -0,0 +1,286 @@
1
+ # Documentation for Logiless API
2
+
3
+ このリポジトリにはLogiless APIに関するドキュメントとPython用クライアントライブラリ「pylogiless」が含まれています。
4
+
5
+ ## pylogiless - Python クライアントライブラリ
6
+
7
+ ロジレスAPIにPythonからアクセスするためのクライアントライブラリです。このライブラリを使用することで、Pythonアプリケーションから簡単にLOGILESS APIにアクセスすることができます。
8
+
9
+ ### インストール
10
+
11
+ ```bash
12
+ pip install pylogiless
13
+ ```
14
+
15
+ ### 使用方法
16
+
17
+ #### 初期化と認証
18
+
19
+ ```python
20
+ from pylogiless import LogilessClient
21
+
22
+ # クライアントの初期化
23
+ client = LogilessClient(
24
+ client_id="YOUR_CLIENT_ID",
25
+ client_secret="YOUR_CLIENT_SECRET",
26
+ redirect_uri="YOUR_REDIRECT_URI"
27
+ )
28
+
29
+ # 認証URLの取得
30
+ auth_url = client.get_authorization_url()
31
+ print(f"次のURLにアクセスして認証してください: {auth_url}")
32
+
33
+ # コールバックで取得した認可コードを使用してトークンを取得
34
+ code = "AUTHORIZATION_CODE" # ユーザーが認証後に取得した認可コード
35
+ client.fetch_token(code)
36
+
37
+ # または、既存のアクセストークンとリフレッシュトークンを設定
38
+ client.set_token(access_token="ACCESS_TOKEN", refresh_token="REFRESH_TOKEN")
39
+ ```
40
+
41
+ #### APIの呼び出し例
42
+
43
+ ```python
44
+ # 在庫情報の取得
45
+ inventory = client.actual_inventory_summary.list()
46
+
47
+ # 出荷配送の情報取得
48
+ outbound_deliveries = client.outbound_delivery.list()
49
+
50
+ # 商品情報の取得
51
+ article = client.article.get("ARTICLE_ID") # resource_idとして渡す
52
+
53
+ # 商品情報の作成
54
+ new_article = client.article.create({
55
+ "article_code": "ARTICLE_CODE",
56
+ "article_name": "商品名",
57
+ # その他の必要なパラメータ
58
+ })
59
+ ```
60
+
61
+ ### 機能
62
+
63
+ - OAuth2認証フロー(認可コードフロー)のサポート
64
+ - アクセストークンの自動更新
65
+ - APIエンドポイントへの簡単なアクセス
66
+ - エラーハンドリング
67
+
68
+ ### パッケージ構造
69
+
70
+ このライブラリは `pylogiless` という名前でインストールされます。標準的なPythonパッケージ構造に従い、以下のようにインポートできます:
71
+
72
+ ```python
73
+ # メインのクライアントと認証クラスは直接インポート可能
74
+ from pylogiless import LogilessClient, LogilessAuth
75
+
76
+ # 特定のエラークラスが必要な場合
77
+ from pylogiless import LogilessError, LogilessAuthError
78
+
79
+ # 内部モジュールに直接アクセスする場合(通常は不要)
80
+ from pylogiless.api import client, auth, errors
81
+ ```
82
+
83
+ ### ドキュメント
84
+
85
+ 詳細なドキュメントは以下のリンクをご覧ください:
86
+
87
+ - [API リファレンス](docs/api_reference.md) - 各APIエンドポイントの詳細な使い方
88
+ - [認証ガイド](docs/authentication.md) - OAuth2認証フローの詳細
89
+ - [エラーハンドリングガイド](docs/error_handling.md) - エラー処理の方法
90
+ - [サンプルコード](docs/example.py) - 基本的な使用例
91
+
92
+ より詳しいドキュメントは[GitHubリポジトリ](https://github.com/logiless/pylogiless)でご確認いただけます。
93
+
94
+ ### 依存関係
95
+
96
+ このパッケージは以下の依存関係があります:
97
+
98
+ ```
99
+ requests>=2.25.0
100
+ ```
101
+
102
+ ### ライセンスと免責事項
103
+
104
+ - MITライセンスの下で公開されています。詳細は[LICENSE](LICENSE)ファイルをご覧ください。
105
+ - このパッケージは、株式会社ロジレスの公式APIクライアントではありません。ロジレスおよびLOGILESSは株式会社ロジレスの登録商標です。
106
+
107
+ ## APIドキュメント
108
+
109
+ 以下は各Markdownファイルの説明と役割です。
110
+
111
+ ### ファイル一覧
112
+
113
+ #### docsフォルダ
114
+
115
+ 1. [**authentication.md**](docs/authentication.md)
116
+
117
+ - 認証と認可に関する情報が記載されています。
118
+ - アプリケーションの登録方法や認可コードの取得、アクセストークンの交換手順が詳述されています。
119
+
120
+ 2. [**specifications.md**](docs/specifications.md)
121
+
122
+ - APIの仕様に関する情報が記載されています。
123
+ - エンドポイントやデータフォーマットの詳細を含みます。
124
+
125
+ 3. [**errors.md**](docs/errors.md)
126
+
127
+ - エラーメッセージおよびエラーコードに関する情報が記載されています。
128
+ - 各エラーコードの説明やレスポンス形式が詳述されています。
129
+
130
+ #### interfaceフォルダ
131
+
132
+ - [**actual_inventory_summary.md**](interface/actual_inventory_summary.md)
133
+
134
+ - 実際の在庫サマリに関する情報を提供します。
135
+
136
+ - [**location.md**](interface/location.md)
137
+
138
+ - ロケーション情報の管理について記載されています。
139
+
140
+ - [**outbound_delivery.md**](interface/outbound_delivery.md)
141
+
142
+ - 出荷配送に関する情報を提供します。
143
+
144
+ - [**inbound_delivery.md**](interface/inbound_delivery.md)
145
+
146
+ - 入荷配送に関する情報を提供します。
147
+
148
+ - [**reorder_point.md**](interface/reorder_point.md)
149
+
150
+ - 再注文点の設定や管理に関する情報を提供します。
151
+
152
+ - [**article.md**](interface/article.md)
153
+
154
+ - 商品情報の管理に関する情報を提供します。
155
+
156
+ - [**inter_warehouse_transfer.md**](interface/inter_warehouse_transfer.md)
157
+
158
+ - 倉庫間移動に関する情報を提供します。
159
+
160
+ - [**transaction_log.md**](interface/transaction_log.md)
161
+
162
+ - 取引ログの記録に関する情報を提供します。
163
+
164
+ - [**supplier.md**](interface/supplier.md)
165
+
166
+ - サプライヤー情報の管理に関する情報を提供します。
167
+
168
+ - [**article_map.md**](interface/article_map.md)
169
+
170
+ - 商品マッピングに関する情報を提供します。
171
+
172
+ - [**logical_inventory_summary.md**](interface/logical_inventory_summary.md)
173
+
174
+ - 論理的な在庫サマリについて記載されています。
175
+
176
+ - [**store.md**](interface/store.md)
177
+
178
+ - 店舗情報の管理について記載されています。
179
+
180
+ - [**sales_order.md**](interface/sales_order.md)
181
+
182
+ - 受注情報の管理について記載されています。
183
+
184
+ - [**warehouse.md**](interface/warehouse.md)
185
+
186
+ - 倉庫情報の管理について記載されています。
187
+
188
+ - [**daily_inventory_summary.md**](interface/daily_inventory_summary.md)
189
+
190
+ - 日次在庫サマリに関する情報を提供します。
191
+
192
+ #### document_statusフォルダ
193
+
194
+ - [**delivery_status.md**](type/delivery_status.md)
195
+
196
+ - 配送ステータスに関する情報を提供します。
197
+
198
+ - [**authorization_status.md**](type/authorization_status.md)
199
+
200
+ - 認証ステータスに関する情報を提供します。
201
+
202
+ - [**document_status.md**](type/document_status.md)
203
+
204
+ - ドキュメントのステータス管理について記載されています。
205
+
206
+ - [**article_type.md**](type/article_type.md)
207
+
208
+ - 商品タイプに関する情報を提供します。
209
+
210
+ - [**inbound_delivery_status.md**](type/inbound_delivery_status.md)
211
+
212
+ - 入荷配送ステータスについて記載されています。
213
+
214
+ - [**incoming_payment_status.md**](type/incoming_payment_status.md)
215
+
216
+ - 受領済み支払いのステータスに関する情報を提供します。
217
+
218
+ - [**tax_rounding_method.md**](type/tax_rounding_method.md)
219
+
220
+ - 税金の丸め方法について記載されています。
221
+
222
+ - [**delivery_method.md**](type/delivery_method.md)
223
+
224
+ - 配送方法に関する情報を提供します。
225
+
226
+ - [**document_line_status.md**](type/document_line_status.md)
227
+
228
+ - ドキュメント行のステータスについて記載されています。
229
+
230
+ - [**tax_processing_method.md**](type/tax_processing_method.md)
231
+
232
+ - 税金処理の方法について記載されています。
233
+
234
+ - [**temperature_control.md**](type/temperature_control.md)
235
+
236
+ - 温度管理に関する情報を提供します。
237
+
238
+ - [**payment_method.md**](type/payment_method.md)
239
+
240
+ - 支払い方法に関する情報を提供します。
241
+
242
+ - [**inbound_delivery_category.md**](type/inbound_delivery_category.md)
243
+
244
+ - 入荷配送カテゴリに関する情報を提供します。
245
+
246
+ - [**tax_indicator.md**](type/tax_indicator.md)
247
+
248
+ - 税金インジケーターについて記載されています。
249
+
250
+ - [**express_type.md**](type/express_type.md)
251
+
252
+ - エクスプレス配送のタイプについて記載されています。
253
+
254
+ - [**transaction_type.md**](type/transaction_type.md)
255
+
256
+ - 取引タイプに関する情報を提供します。
257
+
258
+ - [**inventory_summary_layer.md**](type/inventory_summary_layer.md)
259
+
260
+ - 在庫サマリレイヤーについて記載されています。
261
+
262
+ ## リンクについて
263
+
264
+ ファイル間リンクや外部リンクは以下の通り修正されています:
265
+
266
+ - `/developer/documents/*` へのリンクは該当するMarkdownファイルへの相対リンクに変更。
267
+ - その他のリンクはLogilessの公式URLに変更。
268
+
269
+ ## 使用方法
270
+
271
+ 1. このリポジトリをクローンします。
272
+
273
+ ```bash
274
+ git clone https://github.com/solahsoyalp/LOGILESS_API_Docs_Unofficial.git
275
+ ```
276
+
277
+ 2. 各Markdownファイルを開き、必要な情報を確認してください。
278
+
279
+ ## 貢献
280
+
281
+ - APIドキュメントに関する修正や改善案がある場合、Pull Requestを歓迎します。
282
+ - バグ報告や機能リクエストは[GitHub Issues](https://github.com/logiless/pylogiless/issues)にてお願いします。
283
+
284
+ ## 著作権および免責
285
+
286
+ このファイルは公式APIドキュメント(<https://app2.logiless.com/developer/>)をMarkdown形式にまとめたものです。著作権は全て株式会社ロジレスに帰属します。