Skip to main content
deconf
======

An object system for building declarative configurations in Python.

A class that has rich(ish) keyword-parameter handling, including
[explicit handling of required parameters](https://github.com/dustinlacewell/deconf#pass-through-parameters),
[declaration of parameter dependencies](https://github.com/dustinlacewell/deconf#dependency-parameters) and
[basic type-checking](https://github.com/dustinlacewell/deconf#type-checked-parameters).

Keyword parameter processing will be performed for any method on the
`Deconfigurable` that is decorated with the `@parameter` decorator. Each of these
decorated methods performs the processing specific to that parameter. The
returned value is then assigned on the appropriately named attribute.


>>> @parameter('foo')
>>> def handle_foo(self, value):
... return value


Pass-Through Parameters:
------------------------

If your parameter doesn't require any special treatment and should simply
be stored on the Deconfigurable a shorthand can be used. Simply decorate
a parameter method that passes, and `value` will be used as is.


>>> @parameter('foo')
>>> def handle_foo(self, value):
... pass


Required Parameters:
--------------------

Parameters are required by default. This means that a `RequiredParameterError`
will be raised if the `Deconfigurable.__init__` doesn't recieve the designated
named argument.

Passing `default=` to `@parameter` will prevent the parameter from
raising `RequiredParameterError` if the parameter isn't provided a value.


>>> @parameter('foo', default='bar')
>>> def handle_foo(self, value):
... pass


Type-Checked Parameters:
------------------------

A basic mechanism is supplied for ensuring that the passed parameter value
is of a specific type. By supplying a type value to the `@parameter`'s
`ensure_type` keyword arguement any value passed in will be validated with
an *isinstance check*.


>>> @parameter('bars', ensure_type=list)
>>> def handle_bars(self, value):
... pass


Dependency Parameters:
----------------------

Sometimes we will want to defer processing of a parameter until some other
parameter has been processed first. To do so, simply pass a list of
dependencies, `depends_on`, to `@parameter`.


>>> @parameter('foo')
>>> def handle_foo(self, foo):
... pass

>>> @parameter('bar', depends_on=('foo', ))
>>> def handle_bar(self, bar):
... # offset bar by foo
... return bar + self.foo


Contrived Example:
------------------

class Person(Deconfigurable):
@staticmethod
def format_name(cls, name):
return name.strip().lower().capitalize()

@parameter('first_name', ensure_type=str)
def handle_first(self, name):
return Person.format_name(name)

@parameter('last_name', ensure_type=str)
def handle_last(self, name):
return Person.format_name(name)

@parameter('age', ensure_type=int)
def handle_age(self, value): pass

@parameter('registered_to_vote', ensure_type=bool, depends_on=('age',))
def handle_vote(self, value):
if self.age < 18:
value = False
return value

>>> me = Person(
... first_name='Dustin',
... last_name='Lacewell',
... age=25, registered_to_vote=True,
... )
>>> print me.first_name, ' can vote: ', me.registered_to_vote
Dustin can vote: True

>>> kid = Person(
... first_name='Some Kid',
... last_name='Smith',
... age=12, registered_to_vote=True,
... )
>>> print kid.first_name, ' can vote: ', kid.registered_to_vote
SomeKid can vote: False



Example from Spidersilk (twisted.web config lib):
-------

from twisted.web.static import File
from twisted.web.proxy import ReverseProxyResource

from spidersilk import Domain, Httpd

application = Httpd(
port = 80,
default = 'ldlework.com',
domains = [
Domain(
hostname='ldlework.com',
resource=File('/var/txweb/ldlework.com'),
),
Domain(
hostname='lichen.ldlework.com',
resource=ReverseProxyResource('localhost', 8088, ''),
),
],
)


Where Domain is implemented as:

class Domain(Deconfigurable):
@parameter('hostname', ensure_type=str)
def _arg_hostname(self, hostname):
pass

@parameter('resource', ensure_type=twisted.web.resource.Resource)
def _arg_resource(self, resource):
pass

Release files for deconf 0.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 deconf 0.1.1
File Size Uploaded
deconf-0.1.1.tar.gz 4.0 kB Details

Release files / deconf-0.1.1.tar.gz

Download URL deconf-0.1.1.tar.gz
Size 4.0 kB
Tags Source
SHA-256 checksum
How to use checksums
8adfcbeb3c3dbacbbd21d45ea32b2523e664999034c341b17f7b820cc7baa369
BLAKE2b-256 checksum
How to use checksums
390f4b1bd02f7645e2b2842b45004bd1b4c2bc3a44115737f79a906fd31b6bae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.1 This release

1 release file

0.1

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