Metadata-Version: 2.1
Name: pytechnicolor
Version: 1.1.7
Summary: Technicolor Gateway library
Home-page: https://github.com/shaiu/techicolorgateway
Author: Shai Ungar
Author-email: shaiungar@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

## Technicolor Gateway Scraper library

This is a library to use in order to scrape Technicolor Gateway

![python package workflow](https://github.com/shaiu/techicolorgateway/actions/workflows/python-package.yml/badge.svg)


### Installation


`pip install pytechnicolor`


### How to use it



```
from technicolorgateway import TechnicolorGateway
    
gateway = TechnicolorGateway("192.168.1.1", "80", "user", "pass")
  
gateway.srp6authenticate()
  
devices = gateway.get_device_modal()
  
broadband = gateway.get_broadband_modal()
```
 
Credits to: https://github.com/mswhirl/TechnicolorStatScraper
