Skip to main content

No project description provided

Project description

Config

PyPI - Python Version Codecov Downloads Build Status License: MIT Twitter: PetrochukM

This package allows you to configure functions explicitly and safely. You will be able to create an intuitive type-checked configuration file that directly sets function arguments, globally.

This is a lightweight package with only two widely used dependencies and only a couple hundred line of code.

Contents

Install

Make sure you have Python 3, then you can install pythonic-config using pip:

pip install pythonic-config

Install the latest code via:

pip install git+https://github.com/PetrochukM/Config.git

Usage 🤗

Configuring a function

Any function can be configured, and then used anywhere, see below:

import config as cf

# Define function
def do_something_cool(how_many_times: int):
    pass

# Configure function
cf.add({do_something_cool: cf.Args(how_many_times=5)})

# Use the configured function anywhere! 🎉
do_something_cool(how_many_times=cf.get())

This approach is simple but powerful. Now, each configuration can be directly attributed to a documented function argument.

Furthermore, config incorporates typeguard 💂‍♀️ so every configuration is type checked at runtime.

Writing a configuration file

The simple example above can be extended to create a configuration file, for example:

import config as cf
import data
import train

cf.add({
  data.get_data: cf.Args(
      train_data_path="url_lists/all_train.txt",
      val_data_path="url_lists/all_val.txt"
  ),
  data.dataset_reader: cf.Args(
      type_="cnn_dm",
      source_max_tokens=1022,
      target_max_tokens=54,
  ),
  train.make_model: cf.Args(type_="bart"),
  train.Trainer.make_optimizer: cf.Args(
      type_="huggingface_adamw",
      lr=3e-5,
      correct_bias=True
  )
  train.Trainer.__init__: cf.Args(
      num_epochs=3,
      learning_rate_scheduler="polynomial_decay",
      grad_norm=1.0,
  )
})

With this approach, this configuration file will make it clear which (hyper)parameters are set and where. This improves overall readability of the configuration file.

🐍 Last but not least, the configuration file is written in Python, you can use variables, lambdas, etc to further modularize.

Configuring via the command line

In case you want to change one variable at a time, this package supports configuration from the command line, for example:

python example.py --sorted='Args(reverse=True)'
import sys
import config as cf

cf.add(cf.parse_cli_args(sys.argv[1:]))

Logging the configuration

Lastly, it's useful to track the configuration file by logging it. This package supports that via config.log. In the example below, we log the configuration to Comet.

from comet_ml import Experiment
import config as cf

experiment = Experiment()
experiment.log_parameters(cf.log())

Advanced: Sharing configurations between processes

In multiprocessing, it may be useful to share the configuration file between processes. In this case, the configuration can be exported to another process and then subsequently imported, see below:

from multiprocessing import Process
import config as cf

def handler(configs: cf.Config):
    cf.add(configs)

if __name__ == "__main__":
    process = Process(target=handler, args=(cf.export(),))
    process.start()
    process.join()

Advanced: Ensuring the configuration is used

In a large code base, it might be hard to tell if the configuration has been set for every function call. In this case, we've exposed config.trace which can double check every function call against the configuration, see below:

import sys
import config as cf

def configured(a=111):
    pass

sys.settrace(cf.trace)
cf.add({configured: cf.Args(a=1)})

configured()  # `cf.trace` issues a WARNING!
configured(a=cf.get())

We also have another option for faster tracing with config.enable_fast_trace. Instead of a system wide trace, this traces the configured functions by modifying their code and inserting a trace function at the beginning of the function definition. This has a MUCH lower overhead; however, it is still in beta due to the number of edge cases.

Advanced: Find unused configurations

In a large code base, you may have a lot of configurations, some of which are no longer being used. purge can be run on a process exit, and it'll warn you if configurations were not used.

import atexit
import config as cf

atexit.register(cf.purge)

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

pythonic-config-0.7.0.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

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

pythonic_config-0.7.0-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file pythonic-config-0.7.0.tar.gz.

File metadata

  • Download URL: pythonic-config-0.7.0.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.6

File hashes

Hashes for pythonic-config-0.7.0.tar.gz
Algorithm Hash digest
SHA256 1e33d2bb3b952ba5a4cac2dfafcad27378c8182eb84a34256a29123fd6838fb5
MD5 afbec7318b04c72b44e9a0bf6881d330
BLAKE2b-256 c348672a7440cc6f8ce4d0f4382f58d4f6b926628f91bc234d36c4c67bcbdf26

See more details on using hashes here.

File details

Details for the file pythonic_config-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pythonic_config-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ca17e71a099e91dc347d14859e4452eee3de561264dd0a710d05a676084b49f9
MD5 62c93fe15b16dc9185a1224483359e26
BLAKE2b-256 fac2171e0fe30de29160e3a2f18b1caa96a67d5a571b4527ebb8011bd6637585

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