Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
working_directory: ~/irflow_sdk_python
docker:
- image: circleci/python:3.6.1
- image: circleci/python:3.6.5

steps:
- checkout
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Syncurity Package ignore
/examples/api.conf

.pypirc
.DS_Store

# editor / pythonic ignores
# Byte-compiled / optimized / DLL files
Expand Down
7 changes: 0 additions & 7 deletions .pypirc

This file was deleted.

15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
![PyPI3](https://img.shields.io/badge/pypi-1.5.6-blue.svg)
[![PyPI3](https://img.shields.io/badge/pypi-1.5.8-blue.svg)](https://pypi.org/project/irflow-client/)
[![Documentation Status](https://readthedocs.com/projects/syncurity-irflow-sdk-python/badge/?version=latest)](https://syncurity-irflow-sdk-python.readthedocs-hosted.com/en/latest/?badge=latest)
![PyPI1](https://img.shields.io/badge/python-2.7+-brightgreen.svg)
![PyPI2](https://img.shields.io/badge/python-3.6+-brightgreen.svg)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/47bf392599fb4d27931d4d1225e37835)](https://www.codacy.com?utm_source=github.com&utm_medium=referral&utm_content=Syncurity/irflow-sdk-python&utm_campaign=Badge_Grade)
Expand All @@ -10,6 +11,12 @@

## A python client for Syncurity IR-Flow REST API

### Documentation
View our documentation [here](https://syncurity-irflow-sdk-python.readthedocs-hosted.com/en/latest/)

### API Documentation
See the API functions [here](https://syncurity-irflow-sdk-python.readthedocs-hosted.com/en/latest/class.html#class)

### Installation To Use in Production
Python2: `pip install irflow_client`
Python3: `pip3 install irflow_client`
Expand Down Expand Up @@ -42,9 +49,3 @@ Please open an issue in github
### Examples
To get started with examples, read the examples README.
It includes two sample python scripts that use the irflow_client.

### Documentation
View our documentation [here](https://syncurity-irflow-sdk-python.readthedocs-hosted.com/en/latest/)

### irflow_client API Documentation
See the API functions [here](https://syncurity-irflow-sdk-python.readthedocs-hosted.com/en/dev/class.html#class)
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ irflow-sdk-python changelog
* v1.5.5 Test build
* v1.5.6 Release under Apache2.0 License
* Update requests==2.20.0 to patch CVE-2018-18074
* v1.5.7 Update .gitignore, bump requirements.txt
* v1.5.8 Fix python_requires for pip 18.0+
2 changes: 1 addition & 1 deletion irflow_client/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = 'irflow_client'
__description__ = 'A python client for Syncurity IR-Flow'
__url__ = 'https://syncurity.net'
__version__ = '1.5.6'
__version__ = '1.5.8'
__build__ = ''
__author__ = 'Syncurity'
__author_email__ = '[email protected]'
Expand Down
8 changes: 5 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -i https://pypi.org/simple
certifi==2018.10.15
certifi>=2018.10.15
chardet==3.0.4
idna==2.7
requests==2.20.0
urllib3==1.24
requests>=2.20.0,<3.0
urllib3<=1.24

# bump version
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
packages=['irflow_client'],
platforms=['Windows', 'MacOS', 'Enterprise Linux'],
install_requires=base_requirements,
python_requires='>=2.7, >=3.6',
python_requires='>=2.7.*, >=3.6',
extras_require={
'dev': [
dev_requirements
Expand All @@ -46,7 +46,6 @@
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
Expand Down