Metadata-Version: 2.0
Name: SMSFly
Version: 0.1.4
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'

[![Stories in Ready](https://badge.waffle.io/open-craft-guild/python-smsfly.png?label=ready&title=Ready)](https://waffle.io/open-craft-guild/python-smsfly) [![Build Status](https://travis-ci.org/open-craft-guild/python-smsfly.svg?branch=master)](https://travis-ci.org/open-craft-guild/python-smsfly) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/78ef3eba02d94d15bca00c841696fbb6)](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) [![Requirements Status](https://requires.io/github/open-craft-guild/python-smsfly/requirements.svg?branch=master)](https://requires.io/github/open-craft-guild/python-smsfly/requirements/?branch=master)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/SMSFly.svg)](https://pypi.python.org/pypi/SMSFly) [![Version @ PYPI](https://img.shields.io/pypi/v/SMSFly.svg)](https://pypi.python.org/pypi/SMSFly)
# python-smsfly
SMS-Fly gateway API Python package

## Development
```sh
pip install -e .[test,dev]
nosetests --ipdb
```

## Testing
```sh
pip install -e .[test]
nosetests
```

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

## Other implementations
* [PHP package](https://github.com/vchizi/SMSFly)




