Bare-bones python library for the official Netlify API
Project description
Netlify Python Client SDK
This is a work in progress package designed to wrap the Netlify APIs for python client users.
Note that this library is in pre-release and the APIs may be changed in later versions.
User Guide
This section is intended for developers who want to use the library to make requests to Netlify.
Installation
⚠ netlify-python
currently supports python 3.10+.
Recommended installation through PIP via pypi.
$ pip install netlify-python
Usage
This client currently only supports Personal Access Tokens. Navigate to User Settings > Applications > Personal Access Tokens and create a new access token. This is the token you'll use in your initialization of the client.
This created a client that can send http requests.
from netlify import NetlifyClient
client = NetlifyClient(access_token="my-access-token")
client.get_current_user() # Get current user information
client.create_site_deploy('site-id', 'path/to/zip/file.zip')
API
⚠ This client is currently expanding its API support, more documentation coming soon here.
For Developers
This section is for developers who want to improve this library. The default development version is on 3.10.4 but we are currently supporting all python versions >= 3.10
Development Dependencies
Make sure that you have pyenv
. You can test this by checking your python version after opening this directory.
$ python --version
Python 3.10.4
Make sure your active python version has virtualenv
setup via:
$ python -m pip install virtualenv
Create and activate your venv
$ python -m venv venv
$ . venv/bin/activate
Starting development
Everything here out should be in the venv.
Install your dependencies:
$ pip install .[dev]
You should be good to go now.
Building the package
Get your build dependencies in place:
$ pip install .[build]
Then build the package:
$ python -m build
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file netlify-python-0.1.1.tar.gz
.
File metadata
- Download URL: netlify-python-0.1.1.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b676228bce1c5e6917e52c0404fe75d2522135f568c25d6149815b10e6148447 |
|
MD5 | 91927d84ba2cc6cdf30b7cf2cd008f20 |
|
BLAKE2b-256 | a0432044f0487b205061304491951249eab0d3c7833b000f48b9d6d89b603599 |
File details
Details for the file netlify_python-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: netlify_python-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 624b32f16da76c572dc38224699700937c5cbccdfc6dce1654f93fd0230eb0c0 |
|
MD5 | c3aa6600b81a9a49dd1c4f65d908f612 |
|
BLAKE2b-256 | e90fe176c52e5c2530487cb72ead41394fd1c0e0cae63389d70985f35049f6be |