Skip to main content

Décorateur pour ambiancer vos codes.

Project description

Nectarifere (latest available version: 2.0)

To use this decorator:

from nectarifere.nectar import nectar

@nectar
def your_function(*args, **kwargs):
  blabla

Or:

from nectarifere.falzar import falzar

@falzar
def your_function(*args, **kwargs):
  blabla

To create your own decorator:

from nectarifere.extracteur import ExtracteurDeJus

class mydecorator(ExtracteurDeJus):

    def __init__(self, function):
        super().__init__(function) #Superclass constructor
        self.myattribute = 42.


    def success(self):
        print(self.myattribute)

    def failure(self):
        print(1/self.myattribute)

@mydecorator
def whateverfunctionyouwant(args):
    ...

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

nectarifere-2.4.tar.gz (23.2 MB view hashes)

Uploaded Source

Built Distribution

nectarifere-2.4-py3-none-any.whl (23.2 MB view hashes)

Uploaded Python 3

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