Skip to content
/ drypy Public
forked from dzanotelli/drypy

Provide some decorators/utilities to easly implement "dry run mode" in python

License

Notifications You must be signed in to change notification settings

Kurara/drypy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

drypy - easy dryrun mode for Python

The module helps you to implement dryrun mode in your Python projects with an easy switch 'on/off' feature.

Authors: Daniele Zanotelli (dazano@gmail.com)

License: MIT

Documentation

The package is supplied with Sphinx compilable documentation under the docs directory.

You can read the latest docs visiting the project docs online.

Basic usage

Apply the sham decorator to your function and set dryrun as on.

import drypy
from drypy.sham import sham

@sham(method=False)
def foo(bar):
    ...

drypy.set_dryrun(True)

foo(42)

Will log the following output:

[DRYRUN] call to 'foo(42)'

using the python standard logging facility, thus it's up to you to correctly configure it.

To use custom substitutes with specific beahviours please check the docs for the sheriff-deputy pattern.

About

Provide some decorators/utilities to easly implement "dry run mode" in python

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 90.6%
  • Makefile 5.5%
  • Batchfile 3.9%