> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peopledatalabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Python SDK

# The People Data Labs Python Helper Library

The People Data Labs Python Helper Library makes it easy to interact with our APIs from your Python application. You can find the [most recent version of the library on PyPi](https://pypi.org/project/peopledatalabs/). The People Data Labs Python Helper Library supports Python applications written in Python 3.7 and above.

## How To Install the Library

This library is available as a Python package, and you can install it like this:

```shell
pip install peopledatalabs
```

## Using the Library

Make sure that you sign up for a [free PDL API key](https://www.peopledatalabs.com/signup) if you don't already have one.

```python
import json

# See https://github.com/peopledatalabs/peopledatalabs-python
from peopledatalabs import PDLPY

# Create a client, specifying your API key
CLIENT = PDLPY(
    api_key="YOUR API KEY",
)

# Create a parameters JSON object
PARAMS = {
    "profile": ["linkedin.com/in/seanthorne"]
}

# Pass the parameters object to the Person Enrichment API
json_response = CLIENT.person.enrichment(**PARAMS).json()

# Print the API response in JSON format
print(json_response)
```

## More Information, Pull Requests, Feature Suggestions and Bug Reports

We've open-sourced the library, which is available on GitHub. Go there to view more information. You can also submit pull requests, feature suggestions and bug reports.

<Embed url="https://github.com/peopledatalabs/peopledatalabs-python" title="GitHub - peopledatalabs/peopledatalabs-python: A Python client for the People Data Labs API" favicon="https://github.com/favicon.ico" image="https://camo.githubusercontent.com/0210ab30d2f1e8abac25a0e9bb824dc036f38d6453e3722f7a7cfbbeb7873dca/68747470733a2f2f692e696d6775722e636f6d2f5337446b5a74722e706e67" provider="github.com" href="https://github.com/peopledatalabs/peopledatalabs-python" typeOfEmbed="default" />