Skip to main content

Клиент для взаимодействия с Загрузчиком данных в витрину

Project description

Клиент для взаимодействия с РВД посредством Адаптера

Подключение

settings:

INSTALLED_APPS = [
    'uploader_client',
]

apps:

from django.apps import AppConfig as AppConfigBase

class AppConfig(AppConfigBase):

    name = __package__

    def __setup_uploader_client(self):
        import uploader_client

        uploader_client.set_config(
            uploader_client.configuration.Config(
                agent_url='http://localhost:8090',
                system_mnemonics='MNSV03',
                timeout=1,
                request_retries=1,
            )
        )

    def ready(self):
        super().ready()
        self.__setup_uploader_client()

Использование Proxy API для отправки запросов в РВД

Заменить используемый интерфейс на ProxyAPIInterface и добавить необходимые параметры в конфигурации:

uploader_client.set_config(
    ...,
    RegionalDataMartUploaderConfig(
        interface='uploader_client.contrib.rdm.interfaces.rest.ProxyAPIInterface',
        cache=<cache>,
        url=<url>,
        datamart_name=<datamart_name>,
        organization_ogrn=<organization_ogrn>,
        installation_name=<installation_name>,
        installation_id=<installation_id>,
        username=<username>,
        password=<username>,
    )
)

где

  • cache - кеш django для хранения токена доступа (например, caches[DEFAULT_CACHE_ALIAS]);
  • url - URL до хоста Datamart Studio;
  • datamart_name - мнемоника Витрины;
  • organization_ogrn - ОГРН организации, в рамках которой развёрнута Витрина;
  • installation_name - имя инсталляции в целевой Витрине;
  • installation_id - идентификатор инсталляции;
  • username - имя пользователя IAM;
  • password - пароль пользователя IAM.

Эмуляция

Заменить используемый интерфейс на эмулирующий запросы:

uploader_client.set_config(
    ...,
    uploader_client.configuration.Config(
        interface=(
            'uploader_client.contrib.rdm.interfaces.rest'
            '.OpenAPIInterfaceEmulation'
        )
    )
)

Запуск тестов

$ tox

API

Передача сообщения

from uploader_client.adapters import adapter
from uploader_client.interfaces import OpenAPIRequest

class Request(OpenAPIRequest):

    def get_url(self):
        return 'http://localhost:8090/MNSV03/myedu/api/edu-upload/v1/multipart/csv'

    def get_method(self):
        return 'post'

    def get_files(self) -> List[str]:
        return [
            Path('files/myedu_schools.csv').as_posix()
        ]

result = adapter.send(Request())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uploader_client-0.4.1.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

uploader_client-0.4.1-py3-none-any.whl (24.1 kB view details)

Uploaded Python 3

File details

Details for the file uploader_client-0.4.1.tar.gz.

File metadata

  • Download URL: uploader_client-0.4.1.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for uploader_client-0.4.1.tar.gz
Algorithm Hash digest
SHA256 d2b4af4aba8a6b286ba998cd662535ca21254f7d3cdb1ee9c354d8d5a3b8da50
MD5 8c0ea2479a9c7b6ebcfe1a2e9d21bf47
BLAKE2b-256 edf66dadbd55aec3763eac02253fb6877a63a4819455a8f96ad7665fd435e067

See more details on using hashes here.

File details

Details for the file uploader_client-0.4.1-py3-none-any.whl.

File metadata

File hashes

Hashes for uploader_client-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 741b49759aa963de8ae59a9ab6dc264f1d1b39cbcd7db01796f54bb01e8a913d
MD5 e5a5718d17e2ae182e9bee81468e2ffb
BLAKE2b-256 7c426837ceb75d077047d3f959aacccf829b20d06f783c4742825d2c01caa288

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page