CLI for creating a Python Package Repository in a GCS bucket
Project description
gcs_pypi is a CLI for creating a Python Package Repository in an GCS bucket.
Getting started
Installation
Install gcs_pypi using pip:
pip install gcs_pypi
Usage
GCS Bucket
Create a new bucket
IAM (Role & Service Account)
Setup service account with the following permissions
storage.buckets.get
storage.buckets.getIamPolicy
storage.buckets.update
storage.objects.create
storage.objects.delete
storage.objects.get
storage.objects.getIamPolicy
storage.objects.list
storage.objects.setIamPolicy
Recommended that you create a custom Role which can be inherited by the service account
Example
Create Role “PYPI”
Assign Permissions
storage.buckets.get
storage.buckets.getIamPolicy
storage.buckets.update
storage.objects.create
storage.objects.delete
storage.objects.get
storage.objects.getIamPolicy
storage.objects.list
storage.objects.setIamPolicy
Create a Service Account e.g pypi
Select the “PYPI” Role created above
Add a condition to limit access to only that GCS bucket
resource.name == "mybucket"
Visit Cloud IAM Conditions for more information
Distributing packages
You can now use gcspypi to create Python packages and upload them to your GCS bucket. To hide packages from the public, you can use the --private option to prevent the packages from being accessible directly via the GCS bucket (they will only be accessible via your Domain or alternatively you can specify a secret subdirectory using the --secret option:
cd /path/to/your-project/
gcspypi --bucket mybucket [--private] [--secret SECRET]
Cache Header
Set cache-control header for index.html
$ gsutil setmeta -h "cache-control:public, must-revalidate, proxy-revalidate, max-age=0" gs://[BUCKET]/index.html
Installing packages
Install your packages using pip by pointing the --extra-index-url to your Custom domain (optionally followed by a secret subdirectory):
pip install your-project --extra-index-url https://pypi.example.com/SECRET/
Alternatively, you can configure the index URL in ~/.pip/pip.conf:
[global]
extra-index-url = https://pypi.example.com/SECRET/
Credits
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
Built Distribution
File details
Details for the file gcs_pypi-0.1.63.tar.gz
.
File metadata
- Download URL: gcs_pypi-0.1.63.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- 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.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e760394230f758188f73f18d453fbc7dd8b318fd4ab915fc255e4f0c0ffd7f7 |
|
MD5 | 4f6a231f7dd70faab0022ba703aa8aad |
|
BLAKE2b-256 | af84b0d183f8a4145fcc31d86b80c1f51e3cb8fbb1e8f8cb014e7640c20de8f0 |
File details
Details for the file gcs_pypi-0.1.63-py3-none-any.whl
.
File metadata
- Download URL: gcs_pypi-0.1.63-py3-none-any.whl
- Upload date:
- Size: 8.0 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.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fccff04c6c3fa4f5d19839314afc11b569867900dcdf51bb726971691ac9540f |
|
MD5 | 4ac887b5943160e4c70f8d73db626e70 |
|
BLAKE2b-256 | 78cff3d2077ccbd8e312c9713dea8fe2df389635cfeb075e33b6fa7f2cd08d7d |