Metadata-Version: 1.1
Name: pyfetion
Version: 1.1.3
Summary: Simple Fetion Message
Home-page: https://github.com/whatwewant/pyfetion
Author: Cole Smith
Author-email: uniquecolesmith@gmail.com
License: Apache 2.0
Description: PyFetion
        ===================================
        
        This python module is used to send short message.<br />
        
        Now it only support sending messages by Fetion.<br />
        So you can only send to yourself or your friends in Fetion.<br />
        
        ### Installation:
            $ pip install pyfetion
            or 
            $ python setup.py install
        
        ### Usage:
        ```python
                Situations:
                    1. send a message
                    2. send a group message (more than people)
        
                Import:
                    from pyfetion import sendMessage
                Usage:
                    sendMessage(fetionAccount, fetionPassword, 
                                receiver_phone, message_content)
                For example:
                    send message someone:
                        sendMessage('13011111111', 'fetion password',
                                '13011111112', 'test message')
        
                    send message to more than one people:
                        sendMessage('13011111111', 'fetion password',
                                ['13011111112', '13011111113', '13011111114'],
                                'test message')
        
                Description:
                    Send Message According to Fetion Group:
                Usage:
                    sendFetionGroupMessage(fetionAccount, fetionPassword,
                                fetionGroupName, messageContent)
                Take Care:
                    1. Make sure fetionAccount and fetionPassword Correct
                    2. Make sure fetionGroupName exist 
                    3. Make sure fetionGroupName must be not Empty. 
                For example:
                    sendFetionGroupMessage('13011111111', 'fetionPassword',
                                        '同学', '大家还好吗?有空聚一聚')
        ```
        
        # HISTORY
        ----------------------------------------
        
        #### 1.1.3 (2015-02-01) 
        ----------------------------------------
        #### Behavioural Changes
        * search phone number to check if it's your friend
        * add fetion friend function:
            from pyfetion import addFetionFriend
            help(addFetionFriend)
        
        #### Bugfixes
        * @TODO still sometimes freeze my account
        
        
        #### 1.1.2 (2015-01-31) 
        ----------------------------------------
        #### Behavioural Changes
        * remove do heart beat
        
        #### Bugfixes
        * null
        
        
        #### 1.1.1 (2015-01-31) 
        ----------------------------------------
        
        #### Behavioural Changes
        * null
        
        #### Bugfixes
        * 1. if username or password error, i.e. login failed, return bad request
        
        #### 1.1.0 (2015-01-31) 
        ----------------------------------------
        
        #### Behavioural Changes
        * 1. Code refactoring
        * 2. do heart beat: alllist.action....
        * 3. URL add time milisecond ?
        
        #### Bugfixes
        * null
        
        
        #### 1.0.0 (2015-01-26) 
        ----------------------------------------
        
        #### Behavioural Changes
        * 1. Code refactoring
        * 2. require `requests`
        * 3. add Class: Fetion
        * 4. add function:
            * 1. sendMessage(...)
            * 2. sendFetionGroupMessage(...)
        
        #### Bugfixes
        * null
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
