{"id":37083698,"url":"https://github.com/dknowles2/pydrawise","last_synced_at":"2026-01-14T10:13:01.935Z","repository":{"id":65152897,"uuid":"565238520","full_name":"dknowles2/pydrawise","owner":"dknowles2","description":"Asynchronous Python 3 library for interacting with Hydrawise sprinkler controllers through the GraphQL API","archived":false,"fork":false,"pushed_at":"2025-12-19T03:05:57.000Z","size":667,"stargazers_count":7,"open_issues_count":1,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-22T00:45:47.530Z","etag":null,"topics":["aot","hydrawise","hydrawise-api","python","smarthome","sprinkler-controller"],"latest_commit_sha":null,"homepage":"https://pydrawise.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dknowles2.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":"2022-11-12T19:09:08.000Z","updated_at":"2025-12-19T03:05:53.000Z","dependencies_parsed_at":"2023-02-08T08:31:28.879Z","dependency_job_id":"e14091e3-701b-4485-ad6a-7163e061eab5","html_url":"https://github.com/dknowles2/pydrawise","commit_stats":{"total_commits":37,"total_committers":2,"mean_commits":18.5,"dds":0.1351351351351351,"last_synced_commit":"761d4f4060da08ec389026d406ceacc64fdf82d8"},"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"purl":"pkg:github/dknowles2/pydrawise","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknowles2%2Fpydrawise","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknowles2%2Fpydrawise/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknowles2%2Fpydrawise/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknowles2%2Fpydrawise/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dknowles2","download_url":"https://codeload.github.com/dknowles2/pydrawise/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknowles2%2Fpydrawise/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28416679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:38:59.149Z","status":"ssl_error","status_checked_at":"2026-01-14T08:38:43.588Z","response_time":107,"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":["aot","hydrawise","hydrawise-api","python","smarthome","sprinkler-controller"],"created_at":"2026-01-14T10:13:01.165Z","updated_at":"2026-01-14T10:13:01.927Z","avatar_url":"https://github.com/dknowles2.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pydrawise\n\n[![Build and Test](https://github.com/dknowles2/pydrawise/workflows/Build%20and%20Test/badge.svg)](https://github.com/dknowles2/pydrawise/actions/workflows/build-and-test.yml)\n[![pypi version](https://img.shields.io/pypi/v/pydrawise.svg)](https://pypi.python.org/pypi/pydrawise)\n[![docs](https://readthedocs.org/projects/pydrawise/badge/?version=latest)](https://pydrawise.readthedocs.io/en/latest/?badge=latest)\n\nPydrawise is an asynchronous Python 3 library for interacting with Hydrawise sprinkler controllers.\n\n*Note that this project has no official relationship with Hydrawise or Hunter. Use at your own risk.*\n\n## Usage\n\n```python\nimport asyncio\n\nfrom pydrawise import Auth, Hydrawise\n\n\nasync def main():\n    # Create a Hydrawise object and authenticate with your credentials.\n    h = Hydrawise(Auth(\"username\", \"password\"))\n\n    # List the controllers attached to your account.\n    controllers = await h.get_controllers()\n\n    # List the zones controlled by the first controller.\n    zones = await h.get_zones(controllers[0])\n\n    # Start the first zone.\n    await h.start_zone(zones[0])\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n\n## Installation\n\n### Pip\n\nTo install pydrawse, run this command in your terminal:\n\n```sh\n$ pip install pydrawise\n```\n\n### Source code\n\nPydrawise is actively developed on Github, where the code is [always available](https://github.com/dknowles2/pydrawise).\n\nYou can either clone the public repository:\n\n```sh\n$ git clone https://github.com/dknowles2/pydrawise\n```\n\nOr download the latest [tarball](https://github.com/dknowles2/pydrawise/tarball/main):\n\n```sh\n$ curl -OL https://github.com/dknowles2/pydrawise/tarball/main\n```\n\nOnce you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:\n\n```sh\n$ cd pydrawise\n$ python -m pip install .\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdknowles2%2Fpydrawise","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdknowles2%2Fpydrawise","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdknowles2%2Fpydrawise/lists"}