Metadata-Version: 2.1
Name: self
Version: 2019.3.22
Summary: @self decorator makes method return self (jQuery-like chaining)
Home-page: https://github.com/looking-for-a-job/self.py
License: UNKNOWN
Keywords: self decorator
Platform: UNKNOWN
Classifier: License :: Public Domain
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
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
Requires-Dist: decorator
Requires-Dist: public
Requires-Dist: setuptools

<!--
https://pypi.org/project/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/readme-generator/">readme-generator</a>
</p>

