Metadata-Version: 2.4
Name: royal-sdk-paylocity
Version: 0.1.0
Summary: Royal Python client for curated Paylocity Web Link APIs
License-Expression: Apache-2.0
Requires-Python: >=3.11
Requires-Dist: attrs>=22.2.0
Requires-Dist: httpx<0.29.0,>=0.27.0
Requires-Dist: royal-sdk-core==0.1.0
Description-Content-Type: text/markdown

# Royal Paylocity SDK for Python

Typed sync and async access to the employee and custom-field operations already
supported by the stable Royal .NET Paylocity SDK.

```python
from royal_sdk_paylocity import PaylocityClient

with PaylocityClient(access_token) as client:
    result = client.list_employees(company_id="company-id", page_size=100)
```

The facade supports listing, reading, creating, and updating employees plus both
custom-field reads. `PaylocityAsyncClient` provides the same surface asynchronously.
