{"id":40310766,"url":"https://github.com/missingcharacter/gdomains-2-porkbun","last_synced_at":"2026-01-20T06:34:22.755Z","repository":{"id":217239816,"uuid":"743360550","full_name":"missingcharacter/gdomains-2-porkbun","owner":"missingcharacter","description":"Create DNS records in porkbun from Google Domains YAML exports","archived":false,"fork":false,"pushed_at":"2025-12-25T23:22:46.000Z","size":133,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-27T09:43:35.420Z","etag":null,"topics":["google-domains","migration-automation","migration-tool","porkbun"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/missingcharacter.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2024-01-15T03:57:57.000Z","updated_at":"2025-06-25T01:47:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"63ea8dd4-f028-4142-9798-abe7d6738656","html_url":"https://github.com/missingcharacter/gdomains-2-porkbun","commit_stats":null,"previous_names":["missingcharacter/gdomains-2-porkbun"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/missingcharacter/gdomains-2-porkbun","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missingcharacter%2Fgdomains-2-porkbun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missingcharacter%2Fgdomains-2-porkbun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missingcharacter%2Fgdomains-2-porkbun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missingcharacter%2Fgdomains-2-porkbun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/missingcharacter","download_url":"https://codeload.github.com/missingcharacter/gdomains-2-porkbun/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missingcharacter%2Fgdomains-2-porkbun/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28597647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"last_error":"SSL_read: 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":["google-domains","migration-automation","migration-tool","porkbun"],"created_at":"2026-01-20T06:34:21.086Z","updated_at":"2026-01-20T06:34:22.745Z","avatar_url":"https://github.com/missingcharacter.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Create DNS records in porkbun from Google Domains YAML exports\n\n## Requirements\n\n- Python 3.10+\n- Exported `.YAML` files in a folder\n  - [Instructions here](https://support.google.com/domains/answer/3290350?hl=en#manage_domains)\n- [Poetry](https://github.com/python-poetry/poetry)\n- Porkbun API Access is enabled for the domains you want to update\n  - [Getting started with the Porkbun API](https://kb.porkbun.com/article/190-getting-started-with-the-porkbun-api)\n\n## How to install\n\n```shell\npoetry install --no-root\n```\n\n## How to use\n\n### All flags\n\n```shell\n$ poetry run python main.py --help\nUsage: main.py [OPTIONS]\n\nOptions:\n  --porkbun-api-key TEXT          Porkbun API key\n  --porkbun-secret-api-key TEXT   Porkbun Secret API key\n  --yamls-folder TEXT             Path to folder containing YAML files\n  --dry-run / --no-dry-run        Whether to make changes or not\n  --log-level [CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET]\n                                  Set the logging output level\n  --help                          Show this message and exit.\n```\n\n### With environment variables\n\n```shell\n$ env GD2P_PORKBUN_API_KEY='pk1_...' \\    # pragma: allowlist secret\n  GD2P_PORKBUN_SECRET_API_KEY='sk1_...' \\ # pragma: allowlist secret\n  poetry run python main.py \\\n  --log-level DEBUG \\\n  --yamls-folder path/to/folder/with/exported/yamls\n2024-01-05 23:30:11,084 INFO (MainThread) [root] log_level was set to DEBUG\n2024-01-05 23:30:11,085 DEBUG (MainThread) [__main__] dry_run=True, log_level='DEBUG'\n```\n\n### With flags\n\n```shell\n$ poetry run python main.py \\\n  --log-level DEBUG \\\n  --porkbun-api-key 'pk1_...' \\\n  --porkbun-secret-api-key 'sk1_...' \\\n  --yamls-folder path/to/folder/with/exported/yamls\n2024-01-05 23:28:04,561 INFO (MainThread) [root] log_level was set to DEBUG\n2024-01-05 23:28:04,561 DEBUG (MainThread) [__main__] dry_run=True, log_level='DEBUG'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmissingcharacter%2Fgdomains-2-porkbun","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmissingcharacter%2Fgdomains-2-porkbun","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmissingcharacter%2Fgdomains-2-porkbun/lists"}