Library and CLI tool for creating PyPI project tokens
Project description
pypi-token-client
Library and CLI tool for creating and managing PyPI project tokens.
Purpose
PyPI allows the creation of per-project tokens but doesn't currently have an API to do so. While integration with CI providers is planned, apparently there is no plan for an API that would allow one to create tokens from a local development machine.
This tool seeks to provide a client exposing this functionality anyway by whatever means necessary.
Operating principle
Because there is no API and I'm also too lazy to try and figure out the exact sequence of HTTP requests one would have to make to simulate what happens when requesting tokens on the PyPI website, for now this tool just uses Playwright to automate performing the necessary steps in an actual browser.
This might be overkill and brittle but it works for now 🤷
Installation
To install from PyPI:
pip3 install pypi-token-client
You'll also have to install the required Playwright browsers (currently just Chromium):
playwright install chromium
Command-line tool usage
To create a token yourtokenname
for your PyPI project yourproject
:
pypi-token-client create --project yourproject yourtokenname
There are more commands - please refer to the docs.
Usage as a library
Basic example script:
import asyncio
from os import getenv
from pypi_token_client import (
async_pypi_token_client, SingleProject, PypiCredentials
)
credentials = PypiCredentials(getenv("PYPI_USER"), getenv("PYPI_PASS"))
assert credentials.username and credentials.password
async def main() -> str:
async with async_pypi_token_client(credentials) as session:
token = await session.create_token(
"my token",
SingleProject("my-project"),
)
return token
token = asyncio.run(main())
print(token)
More information
For more detailed usage information and the API reference, refer to the documentation.
License
MIT License, see LICENSE
file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pypi_token_client-1.0.9.tar.gz
.
File metadata
- Download URL: pypi_token_client-1.0.9.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e7368df0bfbc90ef9a0ac68f47acb0de06955b66c2777245f67410fb6c2ceeb |
|
MD5 | 8055d9ee64fd26baf659c9562952c2d0 |
|
BLAKE2b-256 | fc78b54db77024ca197eec8e24cfae8b8765a0f35a2503eec08fe54ff08f9173 |