Skip to main content

An instance method decorator that also works as a classmethod.

Project description

#Dynamic class and instance methods!
This simple module creates a class method that will also work as an instance method.

```python
import dynamicmethod

class Example(object):

x = 1 # Default classmethod value

def __init__(self, x=0):
self.x = x

@dynamicmethod
def get_x(self):
return self.x

print(Example.get_x())
ex = Example()
print(ex.get_x())
ex.x = 5
print(ex.get_x())
```

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

dynamicmethod-1.0.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page