Skip to content

Commit 83fc9dc

Browse files
committed
api.smsapi.bg support
1 parent b5a696a commit 83fc9dc

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## 2.6.0
4+
- Support for smsapi.bg
5+
___
6+
37
## 2.5.0
48
- Add support for optional `details` param in SMS API, so it makes fields like (`message`, `parts`, `length`) accessible through response model.
59
___

smsapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name = 'smsapi-client'
2-
version = '2.5.0'
2+
version = '2.6.0'
33

44
lib_info = '%s/%s' % (name, version)

smsapi/client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,9 @@ class SmsApiComClient(Client):
5454

5555
def __init__(self, **kwargs):
5656
super(SmsApiComClient, self).__init__('https://api.smsapi.com/', **kwargs)
57+
58+
59+
class SmsApiBgClient(Client):
60+
61+
def __init__(self, **kwargs):
62+
super(SmsApiBgClient, self).__init__('https://api.smsapi.bg/', **kwargs)

0 commit comments

Comments
 (0)