Metadata-Version: 2.0
Name: SMSFly
Version: 0.1.5
Summary: Python wrapper for SMS-Fly gateway API
Home-page: https://github.com/wk-tech/python-smsfly
Author: Sviatoslav Sydorenko <wk@sydorenko.org.ua>, Anna Kurylo <anna.kurilo21@gmail.com>
Author-email: wk.cvs.github@sydorenko.org.ua
License: MIT
Keywords: api sms gateway sms-fly requests xml
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Session
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: beautifulsoup4[lxml] (==4.5.3)
Requires-Dist: requests (==2.13.0)
Provides-Extra: dev
Requires-Dist: ipdb (==0.10.0); extra == 'dev'
Requires-Dist: ipdbplugin (==1.4.5); extra == 'dev'
Requires-Dist: pre-commit (==0.12.2); extra == 'dev'
Provides-Extra: test
Requires-Dist: httpretty (==0.8.14); extra == 'test'
Requires-Dist: nose (==1.3.7); extra == 'test'
Requires-Dist: pre-commit (==0.12.2); extra == 'test'

.. image:: https://badge.waffle.io/open-craft-guild/python-smsfly.png?label=ready&title=Ready
   :target: https://waffle.io/open-craft-guild/python-smsfly
   :alt: Stories in Ready

.. image:: https://img.shields.io/pypi/v/SMSFly.svg
   :target: https://pypi.org/project/SMSFly

.. image:: https://img.shields.io/travis/open-craft-guild/python-smsfly/master.svg?label=Linux%20build%20%40%20Travis%20CI
   :target: http://travis-ci.org/open-craft-guild/python-smsfly

.. image:: https://img.shields.io/pypi/pyversions/SMSFly.svg

.. image:: https://img.shields.io/pypi/dm/SMSFly.svg

.. image:: https://api.codacy.com/project/badge/Grade/78ef3eba02d94d15bca00c841696fbb6
   :target: https://www.codacy.com/app/webknjaz/python-smsfly?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=open-craft-guild/python-smsfly&amp;utm_campaign=Badge_Grade

.. image:: https://requires.io/github/open-craft-guild/python-smsfly/requirements.svg?branch=master
   :target: https://requires.io/github/open-craft-guild/python-smsfly/requirements/?branch=master
   :alt: Requirements Status

python-smsfly
-------------

SMS-Fly gateway API Python package

Install it
##########

.. code-block:: sh

    pip install SMSFly

Development
###########

.. code-block:: sh

    pip install -e .[test,dev]
    nosetests --ipdb

Testing
#######

.. code-block:: shell

    pip install -e .[test]
    nosetests

Usage
#####

.. code-block:: python
   :number-lines:

    from smsfly import SMSFlyAPI
    api = SMSFlyAPI(account_id='3801234567', account_pass='qwerty')
    api.getbalance()

Other implementations
#####################
* `PHP package <https://github.com/vchizi/SMSFly>`_




