Multi-adaptable and lightweight server framework based on Flask
Project description
Miniagent
Miniagent is a multi-adaptable and lightweight server framework based on Flask.
Installing
Install and update using pip:
$ pip install -U miniagent
Advised Virtual Environment Install
Virtual env is highly advisable because the more projects you have, the more likely it is that you will be working with different versions of Python itself, or at least different versions of Python libraries.
$ pip install virtualenv
Next create a virtualenv:
$ virtualenv venv
New python executable in venv/bin/python
Installing distribute............done.
$ . venv/bin/activate
(venv)$
Now install miniagent on the virtual env, it will install all the dependencies and these will be isolated from your system’s python packages
(venv)$ pip install miniagent
Configuration Variables
Configuration variables defined in the config.py file
Variable | Type | Description | Default |
---|---|---|---|
DEBUG | bool | Debug mode y/n | True |
AGENT_NAME | str | It is used to identify a specific service. | main .py file name |
AGENT_ROLES | list or str | REST api, message receiver, and scheduler job resources defined in miniagent can grant authority only to specific roles. This variable is useful when implementing services of multiple roles with one application. ex : |
|
COMMAND_RECEIVER_ENABLED | bool | It indicates whether to use Command Receiver or not. | False |
COMMANDER_SERVER_URL | str | URL to be polled by Command Receiver | |
COMMANDER_RESPONSE_CONVERTER | str | Path of function that processes the response received by Command Receiver so that Executor can process it. If it is not defined, the response is sent to Executor without being processed. ex : |
|
MESSAGE_RECEIVER_ENABLED | bool | It indicates whether to use Message Receiver(Kafka consumer) or not. | False |
KAFKA_BOOTSTRAP_SERVERS | list(str) | A list of kafka bootstrap servers to be called by Message Receiver | |
EXECUTERS_BY_TOPIC | list(dir) | Kafka topics to be polled by Message Receiver and Executors to handle processing for each topic. ex : |
|
SQLALCHEMY_DATABASE_URI | str | URI of dedicated database of the service | "sqlite:///" + os.path.join(base_dir, "app.db") |
CUSTOM_MODELS_PATH | str | Path of data models added by the application ex : |
|
CUSTOM_APIS_PATH | str | Path of REST APIs added by the application ex : |
|
SCHEDULER_TIMEZONE | str | Timezone to be used in Job Scheduler ex : |
|
SCHEDULER_API_ENABLED | bool | It indicates whether to open REST APIs of Job Scheduler or not. | False |
EXIT_AFTER_JOBS | bool | It indicates whether to terminate the service when all jobs scheduled in Job Scheduler are finished. | False |
SCHEDULED_JOBS | list(dir) | List of jobs to be scheduled in Job Scheduler | |
DEFAULT_ADAPTEES | dir | If the application uses a 3rd party solution, register the 3rd party solution library as an adaptee and develop an adapter so that the executor can use it. That variable defines the mapping of adapters and adaptees. | |
ZIPKIN_ADDRESS | tuple(str,int) | Zipkin server address. ex : |
Sample code download
Create an sample project after installing miniagent
$ mini-project tanminkwan/banking-poc /
Then the source files are downloaded from Github on the current directory. The following is the directory tree.
├── banking
│ ├── __init__.py
│ ├── api
│ │ ├── __init__.py
│ │ ├── bapis.py
│ ├── dbquery
│ │ └── queries.py
│ ├── executer
│ │ ├── __init__.py
│ │ ├── deposit.py
│ │ ├── event.py
│ │ └── raffle.py
│ └── model
│ ├── __init__.py
│ └── models.py
├── app.py
├── config.py
├── bonnie.py
├── clyde.py
├── john_dillinger.py
├── deposit.py
├── event.py
└── raffle.py
Run Kafka, Opensearch and Zipkin services
Run Kafka, Opensearch and Zipkin and register the endpoints of them in config.py.
ZIPKIN_DOMAIN_NAME = 'localhost'
ZIPKIN_PORT = '9411'
KAFKA_BOOTSTRAP_SERVERS = 'localhost:9092'
ELASTIC_SEARCH_DOMAIN_NAME = 'localhost'
ELASTIC_SEARCH_PORT = '9200'
Run the six applications
Run the five applications as below.
$ nohup python raffle.py &
$ nohup python deposit.py &
$ nohup python event.py &
$ nohup python clyde.py &
$ nohup python bonnie.py &
$ nohup python john_dillinger.py &
Open Zipkin web site and check the transactions
- Clyde and Bonnie send requests to Deposit and Event every 30 seconds.
- Deposit produces messages and Raffle consumes the messages via Kafka.
- Event calls Raffle whenever it receive a request from Clyde and Bonnie.
- John Dillinger requests deposit amount by account from Event every 30 seconds.
- Event retrieves this information from Opensearch and provides it to John Dillinger.
You can see all of them on the Zipkin dashboard.(Maybe http://localhost:9411)
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 Distributions
Built Distribution
File details
Details for the file miniagent-0.0.21-py3-none-any.whl
.
File metadata
- Download URL: miniagent-0.0.21-py3-none-any.whl
- Upload date:
- Size: 24.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12867133d47963031783f2ad94c2935ca735a6a6a82ea1b7c9ddc4fd0513fec3 |
|
MD5 | bcd2ece50da6b5f1826682662718c22b |
|
BLAKE2b-256 | 8df9c247084731f40648e76146727d40f599917b6bfca118c0a2a1dd21908a67 |