{"id":42718347,"url":"https://github.com/jeanmaximiliencadic/ntt_google_dns","last_synced_at":"2026-01-29T16:03:01.585Z","repository":{"id":59369970,"uuid":"536850137","full_name":"JeanMaximilienCadic/ntt_google_dns","owner":"JeanMaximilienCadic","description":"NTT router IP parser to update dynamic DNS on google domains ","archived":false,"fork":false,"pushed_at":"2022-09-15T11:55:15.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-10T16:13:10.108Z","etag":null,"topics":["dns","google","network","ntt"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JeanMaximilienCadic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-15T03:30:23.000Z","updated_at":"2023-09-01T06:51:27.000Z","dependencies_parsed_at":"2022-09-16T09:52:03.548Z","dependency_job_id":null,"html_url":"https://github.com/JeanMaximilienCadic/ntt_google_dns","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JeanMaximilienCadic/ntt_google_dns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeanMaximilienCadic%2Fntt_google_dns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeanMaximilienCadic%2Fntt_google_dns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeanMaximilienCadic%2Fntt_google_dns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeanMaximilienCadic%2Fntt_google_dns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JeanMaximilienCadic","download_url":"https://codeload.github.com/JeanMaximilienCadic/ntt_google_dns/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeanMaximilienCadic%2Fntt_google_dns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28880848,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"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":["dns","google","network","ntt"],"created_at":"2026-01-29T16:02:24.089Z","updated_at":"2026-01-29T16:03:01.580Z","avatar_url":"https://github.com/JeanMaximilienCadic.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  \u003cbr\u003e\n  \u003ca href=https://upload.wikimedia.org/wikipedia/commons/e/ee/NTT_company_logo.svg\"\u003e\u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/e/ee/NTT_company_logo.svg\"\u003e\u003c/a\u003e\n  \u003cbr\u003e\n  NTT x Google DNS\n  \u003cbr\u003e\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#modules\"\u003eModules\u003c/a\u003e •\n  \u003ca href=\"#code-structure\"\u003eCode structure\u003c/a\u003e •\n  \u003ca href=\"#installing-the-application\"\u003eInstalling the application\u003c/a\u003e •\n  \u003ca href=\"#makefile-commands\"\u003eMakefile commands\u003c/a\u003e •\n  \u003ca href=\"#environments\"\u003eEnvironments\u003c/a\u003e •\n  \u003ca href=\"#running-the-application\"\u003eRunning the application\u003c/a\u003e\n\u003c/p\u003e\n\nThis Google DNS package consists of an NTT router IP parser for updating the dynamic DNS of Google domains.\n\n# Modules\n\n| Component | Description |\n| ---- | --- |\n| **google_dns** | Contains the implementation of Google DNS |\n\n\n# Code structure\n\n```python\nfrom setuptools import setup\n\nfrom google_dns import __version__\n\nsetup(\n    name=\"google_dns\",\n    version=__version__,\n    packages=[\n        \"google_dns\",\n    ],\n    url=\"https://github.com/JeanMaximilienCadic/ntt_google_dns\",\n    license=\"MIT\",\n    author=\"Jean Maximilien Cadic\",\n    long_description=\"\".join(open(\"README.md\", \"r\").readlines()),\n    long_description_content_type=\"text/markdown\",\n    python_requires=\"\u003e=3.6\",\n    install_requires=[r.rsplit()[0] for r in open(\"requirements.txt\")],\n    author_email=\"git@cadic.jp\",\n    description=\"Google DNS\",\n    classifiers=[\n        \"Programming Language :: Python :: 3.6\",\n        \"License :: OSI Approved :: MIT License\",\n    ],\n)\n```\n\n# Installing the application\n    \nTo clone and run this application, you'll need the following installed on your computer:\n- [Git](https://git-scm.com)\n- Docker Desktop\n   - [Install Docker Desktop on Mac](https://docs.docker.com/docker-for-mac/install/)\n   - [Install Docker Desktop on Windows](https://docs.docker.com/desktop/install/windows-install/)\n   - [Install Docker Desktop on Linux](https://docs.docker.com/desktop/install/linux-install/)\n- [Python](https://www.python.org/downloads/)\n\nFrom the command line, enter the following:\n\n```console\n# Clone this repository\ngit clone https://github.com/JeanMaximilienCadic/ntt_google_dns\n\n# Go into the repository\ncd ntt_google_dns\n```\n\n## Setting up the config file\n\nCreate a config file at `/opt/google_dns/config.yml`. Then, add the following to the file.\n\n```yaml\nproject: google_dns\nurl: 'http://\u003cyour-router-IP\u003e/ntt/information/fifth/current'\nauthorization: \"dXNlcjphZG1pbg==\"\ncookie: 'HGWSESSIONID=1hoa40gjlzl2g'\n\nhostnames:\n- hostname: \"\u003cyour-website.com\u003e\"\n  google_id: \"\u003cyour-Google-ID\u003e\"\n  google_password: '\u003cyour-Google-password\u003e'\n```\n\n# Makefile commands\n\nExhaustive list of make commands:\n\n```console\nbuild_docker\npush_docker\npull_docker\ndocker_run\ncheckout\n```\n\n# Environments\n\n## Docker\n\n\u003e **Note**\n\u003e \n\u003e Running this application by using Docker is recommended.\n\nTo build and run the docker image\n```console\nmake build_docker\nmake docker_run\n```\n\n## PythonEnv\n\n\u003e **Warning**\n\u003e \n\u003e Running this application by using PythonEnv is possible but *not* recommended.\n\n```console\npython setup.py install \n```\n\n# Running the application\n\nTo run the application, enter the following from the command line:\n\n```console\npython -m google_dns\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeanmaximiliencadic%2Fntt_google_dns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeanmaximiliencadic%2Fntt_google_dns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeanmaximiliencadic%2Fntt_google_dns/lists"}