Metadata-Version: 2.1
Name: cga2121
Version: 3.3
Summary: Technicolor CGA2121 Gateway library
Home-page: https://github.com/drolano/cga2121
Author: drolano
Author-email: drolano@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
License-File: LICENSE

## Technicolor CGA2121 Gateway Scraper library

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

### Installation


`pip install cga2121`


### How to use it



```
from cga2121 import Cga2121
    
gateway = Cga2121("192.168.0.1", "80", "user", "pass")
  
gateway.authenticate()
  
devices = gateway.get_device_modal()
  
```
 
