Metadata-Version: 2.1
Name: googledevices
Version: 0.6.1
Summary: API wrapper for Google devices written in Python.
Home-page: https://github.com/ludeeus/googledevices
Author: Joakim Sorensen
Author-email: ludeeus@gmail.com
License: MIT
Description: # googledevices
        
        [![Build Status][travis_status]][travis]
        [![PyPI version][pypi_badge]][pypi]
        
        _API wrapper for Google devices written in Python._
        
        This Python package is based of the works of [rithvikvibhu/GHLocalApi][GHLocalApi]
        
        ## Install
        
        ```bash
        pip install googledevices
        ```
        
        Look at the files in the ['commands'][commands] directory for usage examples.
        
        This package also comes with a CLI.  
        To start using that run `googledevices --help` after installation.
        
        Sample usage of the CLI:
        
        ```bash
        username@hostname:~$ googledevices scan-network
        [
            {
                "assistant": false,
                "bluetooth": false,
                "host": "192.168.2.136",
                "model": "Chromecast Ultra",
                "name": "ChromeCast ULTRA"
            },
            {
                "assistant": false,
                "bluetooth": false,
                "host": "192.168.2.188",
                "model": "Chromecast",
                "name": "Chrome Cast"
            },
            {
                "assistant": true,
                "bluetooth": true,
                "host": "192.168.2.234",
                "model": "Google Home Mini",
                "name": "Living Room"
            }
        ]
        ```
        
        ### Maintainers
        
        - [ludeeus][ludeeus]
        - [eliseomartelli][eliseomartelli]
        
        #### Notice
        
        _This is not affiliated, associated, authorized, endorsed by, or in any way officially connected with [Alphabet][alphabet], or any of its subsidiaries or its affiliates. The name "Google" as well as related names, marks, emblems and images are registered trademarks of [Alphabet][alphabet]._
        
        
        ## Contributing
        
        1. [Check for open features/bugs][issues]
          or [initiate a discussion on one][issues-new].
        2. [Fork the repository][fork].
        3. Install the dev environment: `make init`.
        4. Enter the virtual environment: `pipenv shell`
        5. Code your new feature or bug fix.
        6. Run `make lint` and make sure the score still is `10.00/10`
        7. Submit a [pull request][pull-request]!
        
        [alphabet]: https://abc.xyz/
        [commands]: https://github.com/ludeeus/googledevices/tree/master/googledevices/cli/commands
        [eliseomartelli]: https://github.com/eliseomartelli
        [fork]: https://github.com/ludeeus/googledevices/fork
        [GHLocalApi]: https://github.com/rithvikvibhu/GHLocalApi
        [issues]: https://github.com/ludeeus/googledevices/issues
        [issues-new]: https://github.com/ludeeus/googledevices/issues/new
        [ludeeus]: https://github.com/ludeeus
        [travis]: https://travis-ci.com/ludeeus/googledevices
        [travis_status]: https://travis-ci.com/ludeeus/googledevices.svg?branch=master
        [pull-request]: https://github.com/ludeeus/googledevices/compare
        [pypi]:https://pypi.org/project/googledevices/
        [pypi_badge]: https://badge.fury.io/py/googledevices.svg
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
