Metadata-Version: 2.1
Name: self
Version: 1.0.2
Summary: @self decorator makes method return self (jQuery-like chaining)
Home-page: https://github.com/looking-for-a-job/self.py
License: UNKNOWN
Description: ### Install
        
        ```bash
        $ [sudo] pip install self
        ```
        
        ### Usage
        
        ```python
        >>> from self import self
        
        >>> @self
        	def method(self):
        ```
        
        ### Examples
        
        ```python
        >>> class CLS:
        	@self
        	def method(self):
        		print("test")
        
        	@self
        	def method2(self):
        		print("test")
        
        >>> CLS().method().method2() # jQuery like chain
        ```
        
        ### Sources
        
        +   [`self.self(method, self, *args, **kwargs)`](https://github.com/looking-for-a-job/self.py/blob/master/self/__init__.py)
Keywords: self decorator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
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.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
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
