otf-addons-gcp


Nameotf-addons-gcp JSON
Version 24.36.0 PyPI version JSON
download
home_pageNone
SummaryAddons for opentaskpy, giving it the ability to push/pull files via GCP Cloud Storage.
upload_time2024-09-06 16:28:52
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseGPLv3
keywords automation task framework gcp cloudstorage otf
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPi](https://img.shields.io/pypi/v/otf-addons-gcp.svg)](https://pypi.org/project/otf-addons-gcp/)
![unittest status](https://github.com/adammcdonagh/otf-addons-gcp/actions/workflows/lint.yml/badge.svg)
[![Coverage](https://img.shields.io/codecov/c/github/adammcdonagh/otf-addons-gcp.svg)](https://codecov.io/gh/adammcdonagh/otf-addons-gcp)
[![License](https://img.shields.io/github/license/adammcdonagh/otf-addons-gcp.svg)](https://github.com/adammcdonagh/otf-addons-gcp/blob/master/LICENSE)
[![Issues](https://img.shields.io/github/issues/adammcdonagh/otf-addons-gcp.svg)](https://github.com/adammcdonagh/otf-addons-gcp/issues)
[![Stars](https://img.shields.io/github/stars/adammcdonagh/otf-addons-gcp.svg)](https://github.com/adammcdonagh/otf-addons-gcp/stargazers)

This repository contains addons to allow integration with GCP Cloud Storage via [Open Task Framework (OTF)](https://github.com/adammcdonagh/open-task-framework)

Open Task Framework (OTF) is a Python based framework to make it easy to run predefined file transfers and scripts/commands on remote machines.

This addons allows pushes and pulls of Files from (and to) GCP Cloud Storage Buckets.

# GCP SA Credentials

This package uses `google-auth` to get OAuth2.0 creds for the GCP Token API. This includes `access_token`.

Prior to using this framework, a GCP IAM Service Account should be created through gcloud CLI or Web portal. The JSON credentials for the Service account should be exported and stored locally.
(currently the .gitignore excludes any .json in the tests folder by default)

The Service account crednetials should be included in `tests/testFiles` and require only the following properties:

```
{
    private_key= "-----BEGIN PRIVATE KEY-----\nMIIEv ....",
    client_email= "file.upload@projectName.iam.gserviceaccount.com",
    token_uri= "https://oauth2.googleapis.com/token"
}
```

The rest of the keys can be removed.

Running this OTF Addon, requires test files being placed in the `src/tmp` directory. Running the tests will perform an upload and download from/to GCP Cloud Storage.

Each request will generate a new Service Account Token, token refresh/state-keeping through AWS SSM or local cache has not been implemented yet.

# Transfers

Transfers require a few additional arguments to work. These are:

- bucket: The bucket name of the Cloud Storage instance
- credentials: JSON object containing the above 3 credential properties.

### Supported features

- File transfer: ingress/egress from/to Cloud Storage
  - Renaming functionality
  - PostCopy functionality
  - fileWatch functionality

# Configuration

JSON configs for transfers can be defined as follows:

## Example file upload

```json
"destination": {
    "bucket": "bucketname",
    "directory": "directory/nested",
    "protocol": {
        "name": "opentaskpy.addons.gcp.remotehandlers.bucket.BucketTransfer",
        "credentials": "{LOOKUP DEFINITION FOR SA CREDENTIALS}",
    },
    "rename":{
        "pattern":"Hithere",
        "sub": "Hi"
    }
}
```

## Example file download

```json
"source": {
    "bucket": "bucketname",
    "directory": "directory/nested",
    "protocol": {
        "name": "opentaskpy.addons.gcp.remotehandlers.bucket.BucketTransfer",
        "credentials": "{LOOKUP DEFINITION FOR SA CREDENTIALS}",
    },
    "postCopyAction":{
        "action":"move",
        "destination": "directory/nested/processed",
        "pattern" : "(?<![^ ])(?=[^ ])(?!ab)",   ## Regex for prefixing
        "sub" : "Archived_"
    },
    "fileRegex": ".*//.txt$" ## accepts re module matching
}
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "otf-addons-gcp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "automation, task, framework, gcp, cloudstorage, otf",
    "author": null,
    "author_email": "Aldo Troiano <a.troiano@reply.com>",
    "download_url": "https://files.pythonhosted.org/packages/0c/75/23636132ce05b1d73521b7d4d56187c961e37abe62c0dd138da8781abd96/otf_addons_gcp-24.36.0.tar.gz",
    "platform": null,
    "description": "[![PyPi](https://img.shields.io/pypi/v/otf-addons-gcp.svg)](https://pypi.org/project/otf-addons-gcp/)\n![unittest status](https://github.com/adammcdonagh/otf-addons-gcp/actions/workflows/lint.yml/badge.svg)\n[![Coverage](https://img.shields.io/codecov/c/github/adammcdonagh/otf-addons-gcp.svg)](https://codecov.io/gh/adammcdonagh/otf-addons-gcp)\n[![License](https://img.shields.io/github/license/adammcdonagh/otf-addons-gcp.svg)](https://github.com/adammcdonagh/otf-addons-gcp/blob/master/LICENSE)\n[![Issues](https://img.shields.io/github/issues/adammcdonagh/otf-addons-gcp.svg)](https://github.com/adammcdonagh/otf-addons-gcp/issues)\n[![Stars](https://img.shields.io/github/stars/adammcdonagh/otf-addons-gcp.svg)](https://github.com/adammcdonagh/otf-addons-gcp/stargazers)\n\nThis repository contains addons to allow integration with GCP Cloud Storage via [Open Task Framework (OTF)](https://github.com/adammcdonagh/open-task-framework)\n\nOpen Task Framework (OTF) is a Python based framework to make it easy to run predefined file transfers and scripts/commands on remote machines.\n\nThis addons allows pushes and pulls of Files from (and to) GCP Cloud Storage Buckets.\n\n# GCP SA Credentials\n\nThis package uses `google-auth` to get OAuth2.0 creds for the GCP Token API. This includes `access_token`.\n\nPrior to using this framework, a GCP IAM Service Account should be created through gcloud CLI or Web portal. The JSON credentials for the Service account should be exported and stored locally.\n(currently the .gitignore excludes any .json in the tests folder by default)\n\nThe Service account crednetials should be included in `tests/testFiles` and require only the following properties:\n\n```\n{\n    private_key= \"-----BEGIN PRIVATE KEY-----\\nMIIEv ....\",\n    client_email= \"file.upload@projectName.iam.gserviceaccount.com\",\n    token_uri= \"https://oauth2.googleapis.com/token\"\n}\n```\n\nThe rest of the keys can be removed.\n\nRunning this OTF Addon, requires test files being placed in the `src/tmp` directory. Running the tests will perform an upload and download from/to GCP Cloud Storage.\n\nEach request will generate a new Service Account Token, token refresh/state-keeping through AWS SSM or local cache has not been implemented yet.\n\n# Transfers\n\nTransfers require a few additional arguments to work. These are:\n\n- bucket: The bucket name of the Cloud Storage instance\n- credentials: JSON object containing the above 3 credential properties.\n\n### Supported features\n\n- File transfer: ingress/egress from/to Cloud Storage\n  - Renaming functionality\n  - PostCopy functionality\n  - fileWatch functionality\n\n# Configuration\n\nJSON configs for transfers can be defined as follows:\n\n## Example file upload\n\n```json\n\"destination\": {\n    \"bucket\": \"bucketname\",\n    \"directory\": \"directory/nested\",\n    \"protocol\": {\n        \"name\": \"opentaskpy.addons.gcp.remotehandlers.bucket.BucketTransfer\",\n        \"credentials\": \"{LOOKUP DEFINITION FOR SA CREDENTIALS}\",\n    },\n    \"rename\":{\n        \"pattern\":\"Hithere\",\n        \"sub\": \"Hi\"\n    }\n}\n```\n\n## Example file download\n\n```json\n\"source\": {\n    \"bucket\": \"bucketname\",\n    \"directory\": \"directory/nested\",\n    \"protocol\": {\n        \"name\": \"opentaskpy.addons.gcp.remotehandlers.bucket.BucketTransfer\",\n        \"credentials\": \"{LOOKUP DEFINITION FOR SA CREDENTIALS}\",\n    },\n    \"postCopyAction\":{\n        \"action\":\"move\",\n        \"destination\": \"directory/nested/processed\",\n        \"pattern\" : \"(?<![^ ])(?=[^ ])(?!ab)\",   ## Regex for prefixing\n        \"sub\" : \"Archived_\"\n    },\n    \"fileRegex\": \".*//.txt$\" ## accepts re module matching\n}\n```\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "Addons for opentaskpy, giving it the ability to push/pull files via GCP Cloud Storage.",
    "version": "24.36.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/adammcdonagh/otf-addons-gcp/issues",
        "Changelog": "https://github.com/adammcdonagh/otf-addons-gcp/blob/main/CHANGELOG.md",
        "Homepage": "https://github.com/adammcdonagh/otf-addons-gcp"
    },
    "split_keywords": [
        "automation",
        " task",
        " framework",
        " gcp",
        " cloudstorage",
        " otf"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c7523636132ce05b1d73521b7d4d56187c961e37abe62c0dd138da8781abd96",
                "md5": "66d64e12537bb71b05542c4c3374425c",
                "sha256": "8b16eb01e8367dd47b147792ef3d991412e3306205a3093b12f511c2e53b02ec"
            },
            "downloads": -1,
            "filename": "otf_addons_gcp-24.36.0.tar.gz",
            "has_sig": false,
            "md5_digest": "66d64e12537bb71b05542c4c3374425c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 28236,
            "upload_time": "2024-09-06T16:28:52",
            "upload_time_iso_8601": "2024-09-06T16:28:52.043065Z",
            "url": "https://files.pythonhosted.org/packages/0c/75/23636132ce05b1d73521b7d4d56187c961e37abe62c0dd138da8781abd96/otf_addons_gcp-24.36.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-06 16:28:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adammcdonagh",
    "github_project": "otf-addons-gcp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "otf-addons-gcp"
}
        
Elapsed time: 2.12860s