Metadata-Version: 1.0
Name: pypework
Version: 0.8
Summary: Functional pipeline library for Python
Home-page: http://github.com/andybrice/pypework
Author: Andy Brice
Author-email: andybrice@users.noreply.github.com
License: MIT
Description-Content-Type: UNKNOWN
Description: 
              A library to add a neat, readable, functional pipeline syntax to Python.
        
              It allows you to rewrite messy nested function calls such as this:
        
              .. code:: python
        
                 title_sanitized =
                   replace(replace(replace(lowercase("Lorem Ipsum Dolor 2018/02/18"), " ", "_"), "/", "-"), "@", "at")
        
                 title_sanitized # -> "lorem_ipsum_dolor_2018-02-18"
        
              In a far more readable format like this:
        
              .. code:: python
        
                 title_sanitized = (
                   "Lorem Ipsum Dolor 2018/02/18"
                     >> f.lowercase
                     >> f.replace("/", "-")
                     >> f.replace(" ", "_")
                     >> f.replace("@", "at")
                 )
        
                 title_sanitized # -> "lorem_ipsum_dolor_2018-02-18"
              
Platform: UNKNOWN
