Skip to main content

Name

DEWI: Old Welsh form of David

The name is chosen because of the similarity to DWA, which was the project’s original name, which stands for Developer’s Work Area.

Purpose

This code is the core part of DEWI.

The plugins ensure load codes dynamically, without loading everything. An application implementation is also added in MainApplication class.

Installation

It can be installed from source:

python3 setup.py

Or from pip:

pip install dewi_core

Usage as a plugin framework

A minimal example can be found in the samples/as_framework directory, the application is named as Steven.

Assuming that it’s already created, it can be the aforementioned way:

dewi -p example.my.custom.Plugin mycustom-command
dewi -p steven.StevenPlugin xssh ....

The exact plugin can be hidden if there is a main entry point or script:

#!/usr/bin/env python3
import sys

from dewi_core.application import Application


def main():
    app = Application('steven')
    app.add_plugin('steven.StevenPlugin')
    app.run(sys.argv[1:])


if __name__ == '__main__':
    main()

Usage as a regular Python library

Some parts of DEWI can be used as regular Python library, without the Plugin boilerplate. A simple example is creating a somewhat typesafe (config) tree with the help of the now extracted dewi_dataclass:

from dewi_core.config.config import Config
from dewi_dataclass import DataClass


class Hardware(DataClass):
    def __init__(self):
        self.hw_type: str = ''
        self.mem_size: int = None
        self.mem_free: int = None
        self.mem_mapped: int = None


class MainNode(DataClass):
    def __init__(self):
        # Handling as str, but None is used as unset
        self.version: str = None
        self.hw = Hardware()
        # ... further fields

    def __repr__(self) -> str:
        return str(self.__dict__)


class SampleConfig(Config):
    def __init__(self):
        super().__init__()
        self.set('root', MainNode())

    def get_main_node(self) -> MainNode:
        return self.get('root')


# ....
sc = SampleConfig()
sc.get_main_node().hw.mem_size = 1024  # OK
sc.set('root.hw.mem_size', 1024)       # OK
sc.set('root.hw.memsize', 1024)        # NOT OK, typo

# but...
c = Config()
c.set('root.hw.mem_size', 1024)  # OK
c.set('root.hw.memsize', 1024)   # OK, but typo

As you can see, DEWI can be used as library, and it can contain slightly different solutions of the same problem.

Release files for dewi-core 6.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for dewi-core 6.1.1
File Size Uploaded
dewi_core-6.1.1.tar.gz 38.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for dewi-core 6.1.1
File Interpreter ABI Platform
dewi_core-6.1.1-py3-none-any.whl Python 3 none any Details

Total release size:87.0 kB

Release files / dewi_core-6.1.1.tar.gz

Download URL dewi_core-6.1.1.tar.gz
Size 38.4 kB
Tags Source
SHA-256 checksum
How to use checksums
4eefb566875bb469db3f82554e7cf69038a621f4bdea48a20c52097d211fed27
BLAKE2b-256 checksum
How to use checksums
01bab9be9e745c8d40fd2e206ff21994acbf2064110dcebcdab7f67bcfed8e34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / dewi_core-6.1.1-py3-none-any.whl

Download URL dewi_core-6.1.1-py3-none-any.whl
Size 48.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
e4b7b247b87975055ae56c5f4644bc7938e572b7caebd8fd10c6078545e43b4e
BLAKE2b-256 checksum
How to use checksums
ddea3a4901d834727a09b13b291fb565c56ff9df3477f4821b76f51d0ec738ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release history Release notifications | RSS feed

This release

6.1.1 This release

2 release files

6.1.0

2 release files

5.4.0

2 release files

5.3.0

1 release file

5.2.0

1 release file

5.1.1

1 release file

5.1.0

1 release file

5.0.1

1 release file

5.0.0

1 release file

4.0.0

1 release file

3.3.0

1 release file

3.2.0

1 release file

3.1.0

1 release file

3.0.0

1 release file

2.0.1

1 release file

2.0

1 release file

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