Skip to main content

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

Подключение

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())

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.7.1.tar.gz (21.6 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.7.1-py3-none-any.whl (26.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for uploader_client-0.7.1.tar.gz
Algorithm Hash digest
SHA256 69b13d71679f36f658d50478ed135ede558476a364f7f0aefd719d94bcd319f3
MD5 be13421e6b57ca4c6e5c56fe68b61e14
BLAKE2b-256 adcb014a1d5dabc8181d5aad1eb201aee6c69371e1d9c3ef6905b9d4a2164751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uploader_client-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 54a40f21be52cb765f927cdf063b985a2c281b0f37c67ec2a87f38d48130e22b
MD5 fdb459433bc582d0ca46597cfc532c14
BLAKE2b-256 3e145b2d5ed7cd7d88822a3fa7120a52f9cc458561a07d31830b6d948007c139

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.7.1 This release

2 files

0.7.0

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.14

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.10

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page