Metadata-Version: 2.1
Name: simple-snmp-collector
Version: 1.0.0rc3
Summary: SNMP collector through an asyncio loop
Home-page: https://github.com/agn-7/simple-snmp-collector
Author: agn-7
Author-email: benyaminjmf@gmail.com
License: MIT
Download-URL: https://github.com/agn-7/simple-snmp-collector/archive/1.0.0-rc1.zip
Keywords: snmp,snmp-collector,asyncio,python3,python,docker,docker-compose
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: pyserial
Requires-Dist: easydict
Requires-Dist: pysnmp (==4.4.9)
Requires-Dist: async-timeout

# SNMP collector through an asyncio loop

## **1. Clone project**

```bash
git clone <project address>
```

## 2. Up and build docker container:
```bash
docker-compose up --build -d
```

## 3. Using without docker:

### Install requirements: 

```bash
pip install -r requirements.txt
```

### Config your desire configuration:

```bash
nano config/cofig.json
```

### Run:

```bash
python __main__.py
```

---
[**NOTE**]:

 - If you are a Windows user and you don't want to use docker, comment out the `uvloop` package form `requirements.txt`
 - The value of `-8555` means a problem is occurred during reading data over SNMP or in connection.


