Library and CLI tool for creating and managing PyPI project tokens.
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.
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 🤷
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
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.
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)
For more detailed usage information and the API reference, refer to the documentation.
MIT License, see LICENSE
file.