Skip to content

Commit c50e873

Browse files
author
Sam
committed
Bump version: 0.1.3-beta → 0.1.4-beta
1 parent b45df71 commit c50e873

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ujeebu API Python SDK
2-
[Ujeebu](https://ujeebu.com) is a set of powerful APIs for Web data scraping and automatic content extraction. This SDK provides an easy-to-use interface for interacting with Ujeebu API. It is built on top of Node.js and uses the [axios](https://axios-http.com/) library to make HTTP requests.
2+
[Ujeebu](https://ujeebu.com) is a set of powerful APIs for Web data scraping and automatic content extraction. This SDK provides an easy-to-use interface for interacting with Ujeebu API. It is built on top of Python and uses the [requests](https://requests.readthedocs.io/) library to make HTTP requests.
33

44
## Installation
55
You can install the SDK using pip:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.3-beta
2+
current_version = 0.1.4-beta
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
test_suite='tests',
4343
tests_require=test_requirements,
4444
url='https://github.com/ujeebu/ujeebu-python',
45-
version='0.1.3-beta',
45+
version='0.1.4-beta',
4646
zip_safe=False,
4747
)

tests/test_ujeebu_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ def test_account_user_agent(self, mock_get):
468468
self.client.account()
469469

470470
call_args = mock_get.call_args
471-
self.assertEqual(call_args.kwargs['headers']['user-agent'], 'Ujeebu-Python/0.1.3-beta')
471+
self.assertEqual(call_args.kwargs['headers']['user-agent'], 'Ujeebu-Python/0.1.4-beta')
472472

473473

474474
if __name__ == '__main__':

ujeebu_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Yacine Alhyane"""
44
__email__ = 'y.alhyane@gmail.com'
5-
__version__ = '0.1.3-beta'
5+
__version__ = '0.1.4-beta'
66

77

88
from .ujeebu_python import UjeebuClient

0 commit comments

Comments
 (0)