API Client for Mediascout ORD
Project description
Mediascout ORD API client
Unofficial python client for ORD Mediascout API.
Installation
pip install ord-mediascout-client
Usage
from ord_mediascout_client import ORDMediascoutClient, \
ORDMediascoutConfig, CreateClientRequest, \
ClientRelationshipType, LegalForm
config = ORDMediascoutConfig(
url='http://localhost:5000',
username='username',
password='password',
)
api = ORDMediascoutClient(config)
client_dto = CreateClientRequest(
createMode=ClientRelationshipType.DirectClient,
legalForm=LegalForm.JuridicalPerson,
inn="1234567890",
name="Test Client",
mobilePhone="1234567890",
epayNumber=None,
regNumber=None,
oksmNumber=None
)
response_client_dto = api.create_client(client_dto)
Testing
Get credentials for accessing https://demo.mediascout.ru/ and put them into .env file (see .env.example.env)
First setup virtual environment (once):
pipenv install --dev
pipenv install -e .
To run tests:
pipenv shell
pytest
Packaging
pipenv install --dev
pipenv shell
# update version
vi pyproject.toml
# clean up files from dist/* before deploy not to upload old ones
# rm dist/*
# create new build
python -m build
# upload fresh build
python -m twine upload dist/*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ord_mediascout_client-0.0.40.tar.gz
(168.3 kB
view details)
Built Distribution
File details
Details for the file ord_mediascout_client-0.0.40.tar.gz
.
File metadata
- Download URL: ord_mediascout_client-0.0.40.tar.gz
- Upload date:
- Size: 168.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b7e6737e174ebe7d92eac219bf4c7e74755a8864d58f427989d090d5a6187ff |
|
MD5 | 51fe1f21c927c7eddcfb50d8d8eaa789 |
|
BLAKE2b-256 | 8f33066b8352c771a35a932cfc644f7e94879b0d292dd54dcbe3c766c668eb90 |
File details
Details for the file ord_mediascout_client-0.0.40-py3-none-any.whl
.
File metadata
- Download URL: ord_mediascout_client-0.0.40-py3-none-any.whl
- Upload date:
- Size: 35.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db69e95a12aaa3458d79ec4922e995181fb03534d578c793120054134e16469a |
|
MD5 | eeebb2300d76bc765b4d3b5f4b0bd165 |
|
BLAKE2b-256 | b26b423109164fc4649989a64f4bf36b9b87281644fbc883f52ead5af8245d77 |