Metadata-Version: 2.1
Name: mdalib
Version: 0.1.8
Summary: ทดสอบ
Home-page: UNKNOWN
Author: Krit Naja
License: MIT
Download-URL: https://pypi.org/project/mdalib/
Description: # MDA streaming library
        
        `สวัสดีนี่กิตเอง`
        
        ## Install
        
        ```bash
        pip install mdalib
        ```
        
        `require: kafka-python, msgpack, requests`
        
        ## Method
        
        ```python
        import mdalib
        
        
        def test(topic, val):
          print(topic)
          print(val)
          # TODO: implement this
        
        option = { # for development
          "kafka_url": SOME_KAFKA_URL, 
          "api_url": SOME_API_URL
        }
        
        mdalib.subscribe(option, cb=test)
        ```
        
        ชื่อ topic | ความหมาย
        -------- | --------
        `message` | ข้อมูล message จาก API
        `message_increase` | ข้อมูล message จาก Streaming
        `internet` | ข้อมูล internet จาก API
        `internet_increase` | ข้อมูล internet จาก Streaming
        `call` | ข้อมูล call จาก API
        `call_increase` | ข้อมูล call จาก Streaming
        
        
        
Keywords: MDA,kafka
Platform: UNKNOWN
Description-Content-Type: text/markdown
