A private PyPI server powered by flexible backends.
Project description
What is it?
private-pypi
allows you to deploy a PyPI server privately and keep your artifacts safe by leveraging the power (confidentiality, integrity and availability) of your storage backend. The backend mechanism is designed to be flexible so that the developer could support a new storage backend at a low cost.
Supported backends:
- GitHub. (Yes, you can now host your Python package in GitHub by using
private-pypi
. ) - File system.
- ... (Upcoming)
Design
The private-pypi
server serves as an abstraction layer between Python package management tools (pip/poetry/twine) and the storage backends:
- Package management tools communicate with
private-pypi
server, following PEP 503 -- Simple Repository API for searching/downloading package, and Legacy API for uploading package. private-pypi
server then performs file search/download/upload operations with some specific storage backend.
Usage
Install from PyPI
pip install private-pypi==0.2.0
This should bring the execuable private_pypi
to your environment.
$ private_pypi --help
SYNOPSIS
private_pypi <command> <command_flags>
SUPPORTED COMMANDS
server
update_index
github.init_pkg_repo
github.gen_gh_pages
Using the docker image (recommended)
Docker image: privatepypi/private-pypi:0.2.0
. The image tag is the same as the package version in PyPI.
$ docker run --rm privatepypi/private-pypi:0.2.0 --help
SYNOPSIS
private_pypi <command> <command_flags>
SUPPORTED COMMANDS
server
update_index
github.init_pkg_repo
github.gen_gh_pages
Run the server
To run the server, use the command private_pypi server
.
SYNOPSIS
private_pypi server ROOT <flags>
POSITIONAL ARGUMENTS
ROOT (str):
Path to the root folder. This folder is for logging,
file-based lock and any other file I/O.
FLAGS
--config (Optional[str]):
Path to the package repository config (TOML),
or the file content if --config_or_admin_secret_can_be_text is set.
Default to None.
--admin_secret (Optional[str]):
Path to the admin secrets config (TOML) with read/write permission.
or the file content if --config_or_admin_secret_can_be_text is set.
This field is required for local index synchronization.
Default to None.
--config_or_admin_secret_can_be_text (Optional[bool]):
Enable passing the file content to --config or --admin_secret.
Default to False.
--auth_read_expires (int):
The expiration time (in seconds) for read authentication.
Default to 3600.
--auth_write_expires (int):
The expiration time (in seconds) for write authentication.
Default to 300.
--extra_index_url (str):
Extra index url for redirection in case package not found.
If set to empty string explicitly redirection will be suppressed.
Default to 'https://pypi.org/simple/'.
--debug (bool):
Enable debug mode.
Default to False.
--host (str):
The interface to bind to.
Default to '0.0.0.0'.
--port (int):
The port to bind to.
Default to 8888.
**waitress_options (Dict[str, Any]):
Optional arguments that `waitress.serve` takes.
Details in https://docs.pylonsproject.org/projects/waitress/en/stable/arguments.html.
Default to {}.
In short, the configuration passed to --config
defines mappings from pkg_repo_name
to backend-specific settings. In other words, a single server instance can be configured to connect to multiple backends.
Exampe of the configuration file passed to --config
:
[private-pypi-pkg-repo]
type = "github"
owner = "private-pypi"
repo = "private-pypi-pkg-repo"
[local-file-system]
type = "file_system"
read_secret = "foo"
write_secret = "bar"
Exampe of the admin secret file passed to --admin_secret
:
[private-pypi-pkg-repo]
type = "github"
raw = "<personal-access-token>"
[local-file-system]
type = "file_system"
raw = "foo"
Example run:
docker run --rm \
-v /path/to/root:/private-pypi-root \
-v /path/to/config.toml:/config.toml \
-v /path/to/admin_secret.toml:/admin_secret.toml \
-p 8888:8888 \
privatepypi/private-pypi:0.2.0 \
server \
/private-pypi-root \
--config=/config.toml \
--admin_secret=/admin_secret.toml
Server API
Authentication in shell
User must provide the pkg_repo_name
and their secret in most of the API calls so that the server can find which backend to operate and determine whether the operation is permitted or not. The pkg_repo_name
and the secret should be provided in basic access authentication.
Some package management tools will handle the authentication behind the screen, for example,
- Twine: to set the environment variables
TWINE_USERNAME
andTWINE_PASSWORD
. ref - Poetry: Configuring credentials.
Some will not, for example,
- Pip: you need to prepend
<pkg_repo_name>:<secret>@
to the hostname in the URL manually like thishttps://[username[:password]@]pypi.company.com/simple
. ref
Authentication in browser
You need to visit /login
page to submit pkg_repo_name
and the secret, since most of the browsers today don't support prepending <username>:<password>@
to the hostname in the URL. The pkg_repo_name
and the secret will be stored in the session cookies. To reset, visit /logout
.
Example: http://localhost:8888/login/
PEP-503, Legacy API
The server follows PEP 503 -- Simple Repository API and Legacy API to define APIs for searching/downloading/uploading package:
GET /simple/
: List all distributions.GET /simple/<distrib>/
: List all packages in a distribution.GET /simple/<distrib>/<filename>
: Download a package file.POST /simple/
: Upload a package file.
In a nutshell, you need to set the "index url / repository url / ..." to http://<host>:<port>/simple/
for the package management tool.
Private PyPI server management
GET /index_mtime
Get the last index index synchronization timestamp.
$ curl http://debug:foo@localhost:8888/index_mtime/
1584379892
POST /initialize
Submit configuration and (re-)initialize the server. User can change the package repository configuration on-the-fly with this API.
# POST the file content.
$ curl \
-d "config=${CONFIG}&admin_secret=${ADMIN_SECRET}" \
-X POST \
http://localhost:8888/initialize/
# Or, POST the file.
$ curl \
-F 'config=@/path/to/config.toml' \
-F 'admin_secret=@/path/to/admin_secret.toml' \
http://localhost:8888/initialize/
Update index
Index file is used to track all published packages in a specific time:
- Remote index file: the index file sotred in the backend. By design, this file is only updated by a standalone
update index
service and will not be updated by theprivate-pypi
server. - Local index file: the index file synchronized from the remote index file by the
private-pypi
server
To update the remote index file, use the command private_pypi update_index
:
SYNOPSIS
private_pypi update_index TYPE NAME <flags>
POSITIONAL ARGUMENTS
TYPE (str):
Backend type.
NAME (str):
Name of config.
FLAGS
--secret (Optional[str]):
The secret with write permission.
--secret_env (Optional[str]):
Instead of passing the secret through --secret,
the secret could be loaded from the environment variable.
**pkg_repo_configs (Dict[str, Any]):
Any other backend-specific configs are allowed.
Backend developer could setup an update index
service by invoking private_pypi update_index
command.
Backend-specific commands
The backend registration mechanism will hook up the backend-specific commands to private_pypi
. As illustrated, commands github.init_pkg_repo
and github.gen_gh_pages
are registered by github
backend.
$ private_pypi --help
SYNOPSIS
private_pypi <command> <command_flags>
SUPPORTED COMMANDS
server
update_index
github.init_pkg_repo
github.gen_gh_pages
Environment mode
If no argument is passed, private_pypi
will try to load the arguments from the environment variables. This mode would be helpful if passing argument in shell is not possible.
The format:
PRIVATE_PYPI_COMMAND
: to set<command>
.PRIVATE_PYPI_COMMAND_<FLAG>
: to set the flag of<command>
.
Backends
GitHub
Introduction
private-pypi
will help you setup a new GitHub repository to host your package. You package will be published as repository release and secured by personal access token. Take https://github.com/private-pypi/private-pypi-pkg-repo and https://private-pypi.github.io/private-pypi-pkg-repo/ as an example.
Configuration and secret
Package repository configuration of GitHub backend:
type
: must set togithub
.owner
: repository owner.repo
: repository name.branch
(optional): the branch to store the remote index file. Default tomaster
.index_filename
(optional): the name of remote index file. Default toindex.toml
.max_file_bytes
(optional): limit the maximum size (in bytes) of package. Default to2147483647
since each file included in a release must be under 2 GB, as restricted by GitHub .sync_index_interval
(optional): the sleep time interval (in seconds) before taking the next local index file synchronization. Default to60
.
Example configuration of https://github.com/private-pypi/private-pypi-pkg-repo:
[private-pypi-pkg-repo]
type = "github"
owner = "private-pypi"
repo = "private-pypi-pkg-repo"
The GitHub backend accepts personal access token as the repository secret. The private-pypi
server calls GitHub API with PAT to operate on packages. You can authorize user with read or write permission based on team role.
Initialize the repository
To initialize a GitHub repository as the storage backend, run the command github.init_pkg_repo
:
docker run --rm privatepypi/private-pypi:0.2.0 \
github.init_pkg_repo \
--name private-pypi-pkg-repo \
--owner private-pypi \
--repo private-pypi-pkg-repo \
--token <personal-access-token>
This will:
- Create a new repository
<owner>/<repo>
. - Setup the GitHub workflow to update the remote index file if new package is published.
- Print the configuration for you.
If you want to host the index in GitHub page, like https://private-pypi.github.io/private-pypi-pkg-repo/, add --enable_gh_pages
to command execution.
GitHub workflow integration
To use private-pypi
with GitHub workflow, take thie main.yml as an example.
Firstly, run the server as job service:
services:
private-pypi:
image: privatepypi/private-pypi:0.2.0
ports:
- 8888:8888
volumes:
- private-pypi-root:/private-pypi-root
env:
PRIVATE_PYPI_COMMAND: server
PRIVATE_PYPI_COMMAND_ROOT: /private-pypi-root
Secondly, initialize the server with configuration and admin secret (Note: remember to add the admin secret to your repository before using it):
steps:
- name: Setup private-pypi
run: |
curl \
-d "config=${CONFIG}&admin_secret=${ADMIN_SECRET}" \
-X POST \
http://localhost:8888/initialize/
env:
CONFIG: |
[private-pypi-pkg-repo]
type = "github"
owner = "private-pypi"
repo = "private-pypi-pkg-repo"
ADMIN_SECRET: |
[private-pypi-pkg-repo]
type = "github"
raw = "${{ secrets.PRIVATE_PYPI_PKG_REPO_TOKEN }}"
Afterward, set http://localhost:8888/simple/
as the repository url, and you are good to go.
File system
Introduction
You can configure this backend to host the packages in the local file system.
Configuration and secret
Package repository configuration of GitHub backend:
type
: must set tofile_system
.read_secret
: defines the secret with read only permission.write_secret
: defines the secret with write permission.max_file_bytes
(optional): limit the maximum size (in bytes) of package. Default to5368709119
(5 GB).sync_index_interval
(optional): the sleep time interval (in seconds) before taking the next local index file synchronization. Default to60
.
Example configuration:
[local-file-system]
type = "file_system"
read_secret = "foo"
write_secret = "bar"
To use the API, user must provide either read_secret
or write_secret
.
Initialize the package repository
A folder will be created automatically to store the packages, with the path <ROOT>/cache/<pkg_repo_name>/storage
.
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 Distributions
Built Distribution
File details
Details for the file private_pypi-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: private_pypi-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.8.0 tqdm/4.43.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bd77104467a6afaadae2d5d7616c8fcf0452085667b674f11b83aa1dc12cdac |
|
MD5 | cb6d5b98d47b301978a9a85bcf036b03 |
|
BLAKE2b-256 | 1ee5909501d13c9d19796dfcc028ac9fcc3e4be4d769ecb120a15f1aca369c75 |