mirror of
https://github.com/retailcrm/api-client-python.git
synced 2025-04-04 05:33:33 +03:00
Compare commits
8 commits
Author | SHA1 | Date | |
---|---|---|---|
|
9429f1574c | ||
|
f17fbc6801 | ||
|
bd3998f823 | ||
|
d0a558a8fe | ||
|
1c36f3464b | ||
|
2c7061d8bf | ||
|
3582b077f4 | ||
|
bfdb4cc554 |
9 changed files with 16 additions and 18 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -18,9 +18,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [3.5, 3.6, 3.7]
|
||||
python-version: ['3.8', '3.9', '3.10', '3.11']
|
||||
include:
|
||||
- python-version: '3.8'
|
||||
- python-version: '3.12'
|
||||
coverage: 1
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -51,13 +51,13 @@ jobs:
|
|||
env:
|
||||
COVERAGE: ${{ matrix.coverage }}
|
||||
if: env.COVERAGE != 1
|
||||
run: nosetests -v
|
||||
run: python -m unittest tests/*.py
|
||||
- name: Tests with coverage
|
||||
env:
|
||||
COVERAGE: ${{ matrix.coverage }}
|
||||
if: env.COVERAGE == 1
|
||||
run: |
|
||||
nosetests -v --with-coverage --cover-xml
|
||||
coverage run -m unittest tests/*.py
|
||||
- name: Coverage
|
||||
env:
|
||||
COVERAGE: ${{ matrix.coverage }}
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-2020 RetailDriver LLC
|
||||
Copyright (c) 2015-2021 RetailDriver LLC
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
2
README
2
README
|
@ -9,7 +9,7 @@ Install
|
|||
|
||||
::
|
||||
|
||||
pip install retailcrm
|
||||
pip3 install retailcrm
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
|
|
@ -12,7 +12,7 @@ This is Python RetailCRM API client. This library allows to use all available AP
|
|||
## Install
|
||||
|
||||
```
|
||||
pip install retailcrm
|
||||
pip3 install retailcrm
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
@ -48,7 +48,7 @@ import retailcrm
|
|||
|
||||
client = retailcrm.v4('https://demo.retailcrm.pro', 'uLxXKBwjQteE9NkO3cJAqTXNwvKktaTc')
|
||||
|
||||
result = client.customers_history(filter={'sinceId': '1500', 'startDate': '2018-03-01'})
|
||||
result = client.customers_history(filters={'sinceId': '1500', 'startDate': '2018-03-01'})
|
||||
|
||||
print(result['pagination']['totalCount'])
|
||||
```
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
multidimensional-urlencode==0.0.4
|
||||
nose==1.3.7
|
||||
requests==2.21.0
|
||||
requests==2.32.1
|
||||
coverage==4.5.4
|
||||
pook==1.0.1
|
||||
setuptools==43.0.0
|
||||
pook==1.3.0
|
||||
setuptools==70.0.0
|
||||
|
|
9
setup.py
9
setup.py
|
@ -15,7 +15,7 @@ def read(filename):
|
|||
|
||||
setup(
|
||||
name='retailcrm',
|
||||
version='5.1.1',
|
||||
version='5.1.2',
|
||||
description='RetailCRM API client',
|
||||
long_description=read('README'),
|
||||
url='https://github.com/retailcrm/api-client-python',
|
||||
|
@ -34,10 +34,11 @@ setup(
|
|||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Programming Language :: Python :: 3.11',
|
||||
'Programming Language :: Python :: 3.12',
|
||||
'Programming Language :: Python :: 3 :: Only',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
]
|
||||
|
|
|
@ -168,7 +168,6 @@ class TestVersion3(unittest.TestCase):
|
|||
"""
|
||||
|
||||
(pook.get(os.getenv('RETAILCRM_URL') + '/api/v3/statistic/update')
|
||||
.headers({'X-API-KEY': None})
|
||||
.reply(200)
|
||||
.headers(self.__header)
|
||||
.json({'errorMsg': '"apiKey" is missing.'})
|
||||
|
|
|
@ -164,7 +164,6 @@ class TestVersion4(unittest.TestCase):
|
|||
"""
|
||||
|
||||
(pook.get(os.getenv('RETAILCRM_URL') + '/api/v4/statistic/update')
|
||||
.headers({'X-API-KEY': None})
|
||||
.reply(200)
|
||||
.headers(self.__header)
|
||||
.json({'errorMsg': '"apiKey" is missing.'})
|
||||
|
|
|
@ -245,7 +245,6 @@ class TestVersion5(unittest.TestCase):
|
|||
"""
|
||||
|
||||
(pook.get(os.getenv('RETAILCRM_URL') + '/api/v5/statistic/update')
|
||||
.headers({'X-API-KEY': None})
|
||||
.reply(200)
|
||||
.headers(self.__header)
|
||||
.json({'errorMsg': '"apiKey" is missing.'})
|
||||
|
|
Loading…
Add table
Reference in a new issue