A silly example of a python decorator
Project description
Double down
A silly example of a python decorator.
Simply calls the decorated function twice.
Installation
Double down has been published to python package index and is available via pip:
pip install double_down
Otherwise, if you want to install it manually:
git clone git@github.com:smelnicki/double_down.git sudo python setup.py install
Usage
This is about as simple as it gets when it comes to decorators. It literally makes your function code execute twice.
For example, see below:
# example.py
from double_down import double_down
@double_down
def hello():
print "Hello, Python"
if __name__ == "__main__":
hello()
Then in your terminal:
> python example.py Hello, Python Hello, Python
Questions
This project was just a fun little foray into learning how decorators work. In all honesty, it’d be a big stretch of the imagination to justify its use in some real life application.
If you’re curious how decorators work or want to get some hands on experience, I’d strongly encourage making one of your own. There’s plenty of documentation out there to use.
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 Distribution
File details
Details for the file double_down-1.0.1.tar.gz
.
File metadata
- Download URL: double_down-1.0.1.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba04d761d380b2bfb86d5eb9abd8ad7e14acc533152b04b2bfe28598cb023cfa |
|
MD5 | 792a33dc89178772443dead0cb2bd232 |
|
BLAKE2b-256 | 46ddeafb955a2e9ffabb4e7bbacf9948930cd881810221cb19681fa999ee1cb5 |