Skip to main content

A connector development framework adapted to Django

Project description

Overview

Django Aeotrade Connector is a framework that allows you to easily create your connector with Aeotrade OS.

Latest version: 0.1.0rc6

Quickstart

Install

pip install django-aeotrade-connector

After installing the package, you should add aeotrade_connector to django's INSTALLED_APPS

Usage

Initialize connector in django project

Before you initialize your connector. You must set AC_MANAGEMENT_ENDPOINT in django.settings.py, which is the endpoint of aeotrade connector management api.

python manage.py initconnector

This will create urls.py and dispatcher.py to your project

Create connector app

python manage.py startconnector <my_connector>

After executing this command, you should add my_connector to INSTALLED_APPS also. Then you will see a new django app named my_connector in your django project. In this app, you can see services.py and task.py python files. In services.py, you must implement some connector methods, which are inherited from ConnectorServices. and in task.py, you can define your connector tasks. those tasks will be registered when django setup.

Configuration

In app.py:

Before you start to run your connector, you must configure your connector in the app.py file. The configuration file is located in the my_connector/app.py file.

class MyConnectorConfig(AppConfig):
    name = 'my_connector'

    class Config:
        # required config
        connector = True
        connector_config_model = ConnectorBaseConfig(
            # required config
            label="my_first_connector",
            code="my_first_connector_code",
            mq_recv_model=MQManagerConfig(
                url="amqp://root:123456@localhost:5672/",
                exchange="test",
                queue="q_receive",
                pot=POT.Thread
            ),
            # optional config
            event_up_chain = True,
            files_up_chain = False,
            callback = some_function_name,
            callback_args = ['arg1', 'arg2'],
            callback_kwargs = {'key1': 'value1', 'key2': 'value2'},
            task_stop_when_error = False,
            auto_heartbeat = True,
            kw = {"extra_key": "extra_value"},
        )

In django.settings.py:

INSTALLED_APPS = [
    ...,
    'aeotrade_connector'
    'my_connector',
]

AC_MANAGEMENT_ENDPOINT = 'http://www.example.com:8000'

IS_TEST = False  # or True

# Redis is used to implement a distributed lock, ensuring that the scheduled task
# is executed only once even when multiple workers are started.
CACHES = {
    'default': {
        "BACKEND": "django_redis.cache.RedisCache",
        "LOCATION": 'redis://localhost:6379/0',
        "OPTIONS": {
            "CLIENT_CLASS": "django_redis.client.DefaultClient",
            "CONNECTION_POOL_KWARGS": {"max_connections": 100, "password": "my_redis_password"}
        }
    }
}

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

django_aeotrade_connector-0.1.0rc6.tar.gz (38.1 kB view details)

Uploaded Source

Built Distribution

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

django_aeotrade_connector-0.1.0rc6-py3-none-any.whl (61.1 kB view details)

Uploaded Python 3

File details

Details for the file django_aeotrade_connector-0.1.0rc6.tar.gz.

File metadata

  • Download URL: django_aeotrade_connector-0.1.0rc6.tar.gz
  • Upload date:
  • Size: 38.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.12.7 Linux/5.14.0-570.23.1.el9_6.x86_64

File hashes

Hashes for django_aeotrade_connector-0.1.0rc6.tar.gz
Algorithm Hash digest
SHA256 ffa2a9809cb0bb4cb51cad33af5333c0d05d7b0bd40f9c223a6c0c134387e11b
MD5 b97750ace8e494e8ff85ef44b7c5f779
BLAKE2b-256 946ca315e67f7007e360e7e3306041a64b7a11432e06612ee95117911baf0a23

See more details on using hashes here.

File details

Details for the file django_aeotrade_connector-0.1.0rc6-py3-none-any.whl.

File metadata

File hashes

Hashes for django_aeotrade_connector-0.1.0rc6-py3-none-any.whl
Algorithm Hash digest
SHA256 bcce4c2c6eb18abefe5ae2539f7bb121611ff52e28ab4866f57a20420268bb61
MD5 5be29d7acdde47b85eac5d217c77bd20
BLAKE2b-256 27027e0c91e26bdf5d1e93e0bc3c8ff09c3f7c493c544fef5b35917e6b2b5830

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