{"id":20687172,"url":"https://github.com/the-allanc/pyinthesky","last_synced_at":"2026-02-10T10:34:06.172Z","repository":{"id":13619924,"uuid":"16313131","full_name":"the-allanc/pyinthesky","owner":"the-allanc","description":"Python library to interact with Sky boxes.","archived":false,"fork":false,"pushed_at":"2017-10-01T17:57:56.000Z","size":76,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-22T15:08:29.346Z","etag":null,"topics":["sky","upnp"],"latest_commit_sha":null,"homepage":null,"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/the-allanc.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-28T13:54:58.000Z","updated_at":"2022-10-09T03:53:14.000Z","dependencies_parsed_at":"2022-09-10T15:50:51.783Z","dependency_job_id":null,"html_url":"https://github.com/the-allanc/pyinthesky","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-allanc%2Fpyinthesky","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-allanc%2Fpyinthesky/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-allanc%2Fpyinthesky/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-allanc%2Fpyinthesky/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/the-allanc","download_url":"https://codeload.github.com/the-allanc/pyinthesky/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250264909,"owners_count":21402003,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["sky","upnp"],"created_at":"2024-11-16T22:56:19.414Z","updated_at":"2026-02-10T10:34:01.154Z","avatar_url":"https://github.com/the-allanc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. |name| replace:: pyinthesky\n.. |summary| replace:: Python library to interact with Sky boxes.\n\n|name|\n======\n\n|summary|\n\n.. _repository: https://github.com/the-allanc/pyinthesky/\n.. _documentation: https://pyinthesky.readthedocs.io/en/stable/\n.. _pypi: https://pypi.python.org/pypi/pyinthesky\n.. _coveralls: https://coveralls.io/github/the-allanc/pyinthesky\n.. _license: https://github.com/the-allanc/pyinthesky/master/LICENSE.txt\n.. _travis: https://travis-ci.org/the-allanc/pyinthesky\n.. _codeclimate: https://codeclimate.com/github/the-allanc/pyinthesky\n\n.. |Build Status| image:: https://img.shields.io/travis/the-allanc/pyinthesky.svg\n    :target: travis_\n    :alt: Build Status\n.. |Coverage| image:: https://img.shields.io/coveralls/the-allanc/pyinthesky.svg\n    :target: coveralls_\n    :alt: Coverage\n.. |Docs| image:: https://readthedocs.org/projects/pyinthesky/badge/?version=stable\u0026style=flat\n    :target: documentation_\n    :alt: Docs\n.. |Release Version| image:: https://img.shields.io/pypi/pyversions/pyinthesky.svg\n    :target: pypi_\n    :alt: Release Version\n.. |Python Version| image:: https://img.shields.io/pypi/v/pyinthesky.svg\n    :target: pypi_\n    :alt: Python Version\n.. |License| image:: https://img.shields.io/pypi/l/pyinthesky.svg\n    :target: license_\n    :alt: License\n.. |Code Climate| image:: https://img.shields.io/codeclimate/issues/github/the-allanc/pyinthesky.svg\n    :target: codeclimate_\n    :alt: Code Climate\n\n|Docs| |Release Version| |Python Version| |License| |Build Status| |Coverage| |Code Climate|\n\nThis library is to make it straight-forward to connect to `Sky+ \u003chttps://en.wikipedia.org/wiki/Sky%2B\u003e`_\nboxes - using the `UPnP \u003chttps://en.wikipedia.org/wiki/Universal_Plug_and_Play\u003e`_ protocol, you can invoke\nactions to interact with the box.\n\nExample Usage\n-------------\n\n    \u003e\u003e\u003e import pyinthesky\n    \u003e\u003e\u003e skybox = pyinthesky.locate() # Find the Sky box on the network.\n    \u003e\u003e\u003e conn = pyinthesky.Connection(skybox)\n    \u003e\u003e\u003e conn.connect()\n    \u003e\u003e\u003e \n    \u003e\u003e\u003e recs = conn.get_recordings()\n    \u003e\u003e\u003e next(recs)\n    \u003cRecording \"Doctor Who: The Seeds Of Death\" (horror channel) at 2015-05-12 10:00\u003e\n    \u003e\u003e\u003e \n    \u003e\u003e\u003e conn.count_recordings()\n    171\n    \u003e\u003e\u003e \n    \u003e\u003e\u003e conn.get_disk_space_info()['perc_used']\n    77.67807431685328\n    \u003e\u003e\u003e\n    \u003e\u003e\u003e # The below methods are dynamically created when a connection is made and we\n    \u003e\u003e\u003e # load up the service descriptions from the box.\n    \u003e\u003e\u003e conn.Pause(0) # Pause the currently playing show.\n    \u003e\u003e\u003e conn.Play(0)  # And resume.\n\n.. all-content-above-will-be-included-in-sphinx-docs\n\nYou can browse the source code and file bug reports at the project repository_. Full documentation can be found `here`__.\n\n__ documentation_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthe-allanc%2Fpyinthesky","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthe-allanc%2Fpyinthesky","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthe-allanc%2Fpyinthesky/lists"}