Metadata-Version: 2.1
Name: line-works-sdk
Version: 1.0.dev202412131725
Summary: LINE Works SDK for Python
Home-page: https://github.com/nanato12/line-works-sdk
Author: nanato12
Author-email: admin@okj.info
Maintainer: nanato12
Maintainer-email: admin@okj.info
License: MIT License
Keywords: line line-works works
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.9.2
Requires-Dist: pydantic_core>=2.23.4
Requires-Dist: requests>=2.32.3

# line-works-sdk

LINE Works SDK for Python

## Requirements

Python 3.10+

## Installation

```sh
$ pip install line-works-sdk
```

## Usage

```python
from line_works import LineWorks


WORKS_ID = "YOUR WORKS ID"
PASSWORD = "YOUR WORKS PASSWORD"

works = LineWorks(works_id=WORKS_ID, password=PASSWORD)
# [INFO] line_works/client:66 login success: LineWorks(works_id='xxxxx', tenant_id=xxxxxxxx, domain_id=xxxxxxxx, contact_no=xxxxxxxxxxxxx)

my_info = works.get_my_info()
print(f"{my_info=}")
```

## Contributors

- [nezumi0627](https://github.com/nezumi0627)

## GitHub Actions

The following linter results are detected by GitHub Actions.

- ruff
- mypy
