https://github.com/wulfmann/vercel
Python SDK for the Vercel API
https://github.com/wulfmann/vercel
api python sdk vercel
Last synced: about 1 month ago
JSON representation
Python SDK for the Vercel API
- Host: GitHub
- URL: https://github.com/wulfmann/vercel
- Owner: wulfmann
- Created: 2020-07-24T23:44:20.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-28T19:09:39.000Z (almost 6 years ago)
- Last Synced: 2025-10-11T12:47:13.008Z (8 months ago)
- Topics: api, python, sdk, vercel
- Language: Python
- Homepage: https://pypi.org/project/vercel/
- Size: 97.7 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Support: docs/supported-resources.md
Awesome Lists containing this project
README
# Vercel Python SDK
Most resources are supported, but some are missing. You can check the [support table](/docs/supported-resources.md) for an up-to-date list. This library is in active development. If something you need is missing, [open an issue](https://github.com/wulfmann/vercel/issues/new/choose).
## Install
Requires >= python 3.7
```bash
pip install vercel
```
## Quickstart
```python
import vercel
vercel.api_token = 'xxxxxx'
user = vercel.User.get()
```
### Team Resources
To access resources owned by a team, set the `team_id`.
You can learn more about the authentication process [here](/docs/reference/authentication).
```python
import vercel
vercel.api_token = 'xxxxxx'
vercel.team_id = 'my-team
vercel.Domain.get('mydomain.com')
```
## Guide
You can view more information on working with this library in [the guide](/docs/guide).
## Resource Support
See the [support table](/docs/supported-resources) for an up-to-date list of the API resources this library supports.
If you'd like to see a resource support prioritized, [open an issue](https://github.com/wulfmann/vercel/issues/new/choose).
## Contributing
Want to contribute or found a bug to fix?
Checkout the [contributing doc](/CONTRIBUTING.md) and submit a PR!