Metadata-Version: 1.1
Name: hellp
Version: 0.0.0
Summary: Pipe Helper
Home-page: https://github.com/python-pipe/hellp.git
Author: Mohammad Hossein Sekhavat
Author-email: sekhavat17@gmail.com
License: UNKNOWN
Description: # HellP: Python Hell Pipe Helper
        
        `pip install HellP` then:
        
        Instead of `f(x)` Write `x | p(f)`
        
        Instead of `p(lambda x: x.attr[item])` Write `px.attr[item]`
        
        Instead of
        
        ```python
        from pathlib import Path
        
        print(' '.join(list(map(str, filter((lambda x: x.is_dir()), Path('/etc').glob('*'))))))
        ```
        
        Write:
        
        ```
        from pathlib import Path
        from thep import p, px
        
        Path('/etc') | p.filter(px.is_dir) | p.map(str) | p(list) | p(' '.join) | p(print)
        ```
        
Keywords: pipe helper tool magrittr data science
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
