Skip to content

wulfmann/vercel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vercel Python SDK

Most resources are supported, but some are missing. You can check the support table for an up-to-date list. This library is in active development. If something you need is missing, open an issue.

Install

Requires >= python 3.7

pip install vercel

Quickstart

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.

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.

Resource Support

See the support table 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.

Contributing

Want to contribute or found a bug to fix?

Checkout the contributing doc and submit a PR!