{"id":46450162,"url":"https://github.com/pacificclimate/crmprtd","last_synced_at":"2026-03-06T00:11:46.764Z","repository":{"id":30017937,"uuid":"33566292","full_name":"pacificclimate/crmprtd","owner":"pacificclimate","description":"Utility to download near real time weather data and insert it into PCIC's database","archived":false,"fork":false,"pushed_at":"2026-01-28T21:09:44.000Z","size":10729,"stargazers_count":0,"open_issues_count":22,"forks_count":2,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-01-29T11:55:32.894Z","etag":null,"topics":["actions","make","pipenv","pypi"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pacificclimate.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2015-04-07T20:23:03.000Z","updated_at":"2025-12-17T21:02:28.000Z","dependencies_parsed_at":"2026-01-26T01:04:43.270Z","dependency_job_id":null,"html_url":"https://github.com/pacificclimate/crmprtd","commit_stats":null,"previous_names":[],"tags_count":69,"template":false,"template_full_name":null,"purl":"pkg:github/pacificclimate/crmprtd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacificclimate%2Fcrmprtd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacificclimate%2Fcrmprtd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacificclimate%2Fcrmprtd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacificclimate%2Fcrmprtd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pacificclimate","download_url":"https://codeload.github.com/pacificclimate/crmprtd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pacificclimate%2Fcrmprtd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30156259,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"ssl_error","status_checked_at":"2026-03-05T22:39:24.771Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","make","pipenv","pypi"],"created_at":"2026-03-06T00:11:46.360Z","updated_at":"2026-03-06T00:11:46.751Z","avatar_url":"https://github.com/pacificclimate.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# crmprtd\n\n![Python CI](https://github.com/pacificclimate/crmprtd/workflows/Python%20CI/badge.svg?branch=master)\n![Pypi Publishing](https://github.com/pacificclimate/crmprtd/workflows/Pypi%20Publishing/badge.svg?branch=master)\n\nUtility to download near real time weather data and insert it into PCIC \nPCDS-type databases (e.g., CRMP, Metnorth).\n\n## Documentation\n\n- Installation\n  - [System-level dependencies](docs/installation/system-deps.md) \n  - [For production](docs/installation/production.md)\n  - [For development](docs/installation/development.md)\n- [Usage (CLI)](docs/usage.md)\n- [Usage (Bulk CLI)](docs/bulk_operations.md)\n- Development\n  - [Caveats](docs/development/caveats.md)\n  - [Unit tests](docs/development/unit-tests.md)\n\n## Creating a production release\n\n1. Modify `tool.poetry.version` in `pyproject.toml`: First remove any suffix\n   to the version number, as our convention is to reserve those for test builds\n   (e.g., `1.2.3` is a release build, `1.2.3.dev7` is a test build).\n   Then increment the release build version.\n1. Summarize release changes in `NEWS.md`\n1. Commit these changes, then tag the release\n   ```bash\n   git add pyproject.toml NEWS.md\n   git commit -m\"Bump to version X.Y.Z\"\n   git tag -a -m\"X.Y.Z\" X.Y.Z\n   git push --follow-tags\n   ```\n1. Our GitHub Actions [workflow](https://github.com/pacificclimate/crmprtd/blob/i71-action-best-practices/.github/workflows/python-ci.yml) will build and release the package on our PyPI server.\n\n\n## Creating a dev/test release\n\nThe process is very similar to a production release, but uses a different\nversion number convention, and omits any notice in NEWS.md.\n\n1. Modify `tool.poetry.version` in `pyproject.toml`: Add or increment the suffix \n   in the pattern `.devN`, where N is any number of numeric digits (e.g., `1.2.3.dev11`).\n   Our convention is to reserve those for test releases\n   (e.g., `1.2.3` is a release build, `1.2.3.dev11` is a test build). \n2. Commit changes and tag the release:\n   ```bash\n   git add pyproject.toml\n   git commit -m\"Create test version X.Y.Z.devN\"\n   git tag -a -m\"X.Y.Z.devN\" X.Y.Z.devN\n   git push --follow-tags\n   ```\n1. Our GitHub Actions [workflow](https://github.com/pacificclimate/crmprtd/blob/i71-action-best-practices/.github/workflows/python-ci.yml) will build and release the package on our PyPI server.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpacificclimate%2Fcrmprtd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpacificclimate%2Fcrmprtd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpacificclimate%2Fcrmprtd/lists"}