Metadata-Version: 2.1
Name: dinglingling
Version: 0.1.0
Summary: remind you the status of the program
Home-page: https://github.com/PeijiYang/dinglingling
Author: Peiji
Author-email: peiji.yang@foxmail.com
License: MIT
Description: # dinglingling
        dinglingling, your program is over!
        The code references https://github.com/light8lee/dingdong. The web weChat now is not work, so I refact the code by the [Server Chan](http://sc.ftqq.com/3.version).
        
        ## Requirements
        - python >= 3.6
        
        ## Installation
        ```bash
        git clone https://github.com/PeijiYang/dinglingling.git
        python setup.py install
        ```
        
        ## Usage
        First, you need to register an account from http://sc.ftqq.com/3.version. Then you will get a SCKEY.  
        Just like the examples in test.py, you need to add the decorator ahead of your function:
        ```python
        from dinglingling import wx_reminder
        
        SCKEY = "" # the sckey you get from http://sc.ftqq.com/3.version
        proxy = "" # if you needn't proxy, ignore it.
        
        # remind_started: if you need remind you when the function 
        # stated, make remind_started = True
        
        @wx_reminder(SCKEY=SCKEY, proxy=proxy, remind_started=False)
        def test_correct_func():
            print("hello world")
        ```
        
        ## Thanks
        - [ServerChan](http://sc.ftqq.com/3.version)
        - [light8lee](https://github.com/light8lee)
        
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.6
Description-Content-Type: text/markdown
