Vendor Grab
Download gzipped tar files from URLs and extract only selected files to destination paths in current working directory.
Configuration file is in TOML format. Takes a list of vendors that can have multiple files.
[[vendors]]
archive = "https://github.com/csstools/normalize.css/archive/refs/tags/12.0.0.tar.gz"
# Verify the downloaded tar file with this sha256 hash hexdigest.
checksum = "0820f46861766b7aef99ffd1601e61279d399700e1683e7863f9400af068e3ed"
# The dst_checksum is optional. Delete it to always replace dst files from the downloaded tar file.
#dst_checksum = ""
# The strip_components will default to 1. It is the same as --strip-components flag in tar command.
#strip_components = 1
[[vendors.files]]
# The source (src) of the file in the tar (with the first component stripped off
# since it is usually a directory with the version.
src = "normalize.css"
# The destination (dst) is where it extracts the file to.
dst = "vendor/normalize.css/normalize.css"
# It is common to grab any license files and include them along with source
# files.
[[vendors.files]]
src = "LICENSE.md"
dst = "vendor/normalize.css/LICENSE.md"
The created dst files can be committed to source control (git, fossil, etc.) and if the dst_checksum fields are set; it won't needlessly fetch the tar file each time. This also prevents the vendor dst files from being modified without also updating the dst_checksum value.
Install
pip install vendor_grab
Usage
Create a configuration file in TOML format that has 'vendors' list. See example above or the example-vendors.toml file in this project.
Pass the configuration file as the only arg:
vendor_grab example-vendors.toml
View the downloaded files in the 'vendors' directory (if using the example-vendors.toml configuration file).
Why?
The Simplest Thing That Could Possibly Work.
Why use a tool like npm to download some CSS files? That was the main reason
I created this script. I did not need all the capability (and potential security
holes) that the npm tool provided. I simply wanted to automate getting some
vendor files into my git repository and keep them up to date.
Initially this script started off as a
messy shell script
that used jq, wget, md5sum commands. It also used JSON for the
configuration, which isn't great for adding inline comments. It was rewritten in
Python to be more compatible and easier to follow.
Contributing
Please contact Jake Hickenlooper or create a ticket.
Instructions for preparing a patch are available at git-send-email.io.
Any submitted changes to this project require the commits to be signed off with the git command option '--signoff'. This ensures that the committer has the rights to submit the changes under the project's license and agrees to the Developer Certificate of Origin.
Maintenance
Where possible, an upkeep comment has been added to various parts of the source code. These are known areas that will require updates over time to reduce software rot. The upkeep comment follows this pattern to make it easier for commands like grep to find these comments.
Example UPKEEP comment has at least a 'due:' or 'label:' or 'interval:' value surrounded by double quotes (").
Example-> # UPKEEP due: "2022-12-14" label: "an example upkeep label" interval: "+4 months"
Release files for vendor-grab 0.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| vendor_grab-0.0.2.tar.gz | 7.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vendor_grab-0.0.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.4 kB
Release files / vendor_grab-0.0.2.tar.gz
| Download URL | vendor_grab-0.0.2.tar.gz |
|---|---|
| Size | 7.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
53f4b214cc8fc44ca3e856dd2aa6d79f095e4e6f51b54aebbdbdfda0793b06fe
|
|
BLAKE2b-256 checksum How to use checksums |
a41728ee41943b935bdfa675c41ee87909be950709b211955e873ed205494b9d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.10.12
|
Release files / vendor_grab-0.0.2-py3-none-any.whl
| Download URL | vendor_grab-0.0.2-py3-none-any.whl |
|---|---|
| Size | 8.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
37324583895ede6796146f5b58e64badbcdea7068837182f848c70213e5de4c8
|
|
BLAKE2b-256 checksum How to use checksums |
8941b8c98420fea0e26385877e52ac5ea2facc1b69e58d32dd8f3d381e581901
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.10.12
|