Metadata-Version: 2.1
Name: self
Version: 2019.4.13
Summary: @self decorator makes method return self (jQuery-like chaining)
Home-page: https://github.com/looking-for-a-job/self.py
License: UNKNOWN
Description: <!--
        https://pypi.org/project/readme-generator/
        https://pypi.org/project/python-readme-generator/
        -->
        
        [![](https://img.shields.io/pypi/pyversions/self.svg?longCache=True)](https://pypi.org/project/self/)
        
        #### Installation
        ```bash
        $ [sudo] pip install self
        ```
        
        #### Functions
        function|`__doc__`
        -|-
        `self.self(method, *args, **kwargs)` |`@self` method decorator to return self object
        
        #### Examples
        ```python
        >>> from self import self
        
        >>> class CLS:
        	@self
        	def method(self):
        		...
        
        	@self
        	def method2(self):
        		...
        
        >>> CLS().method().method2() # jQuery like chain
        ```
        
        <p align="center">
            <a href="https://pypi.org/project/python-readme-generator/">python-readme-generator</a>
        </p>
Keywords: self decorator
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
