Metadata-Version: 1.1
Name: smsapi-pozytywnie
Version: 1.0-beta
Summary: Python library for manage SmsApi account via HTTP/S
Home-page: https://github.com/Kern3l/smsapi-python-client
Author: SMSAPI
Author-email: bok@smsapi.pl
License: Copyright 2013 SMSAPI

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Description: ﻿python-client
        =============
        
        Klient napisany w języku Python, pozwalający na wysyłanie wiadomości SMS, MMS, VMS oraz zarządzanie kontem w serwisie SMSAPI.pl
        
        EXAMPLES:
        ```python
            from smsapi.client import SmsAPI
            from smsapi.responses import ApiError
            
            
            api = SmsAPI()
            
            api.set_username('YOUR USERNAME')
            api.set_password('YOUR PASSWORD')
        
            #sending SMS
            try:
                api.service('sms').action('send')
            
                api.set_content('Hello [%1%] [%2%]')
                api.set_params('name', 'last name')
                api.set_to('60xxxxxxx')
                api.set_from('Info') #Pole nadawcy lub typ wiadomość 'ECO', '2Way'
            
                result = api.execute()
            
                for r in result:
                    print r.id, r.points, r.status
            
            except ApiError, e:
                print '%s - %s' % (e.code, e.message)
        ```
        
        ## LICENSE
        [Apache 2.0 License](https://github.com/smsapi/smsapi-python-client/blob/master/LICENSE)
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
