Metadata-Version: 2.1
Name: pyclo
Version: 0.0.1
Summary: Immutable manipulation of Python data structures
Home-page: https://github.com/pb-/pyclo
Author: Paul Baecher
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# pyclo

Pyclo is a collection of functions for Python named after the Clojure standard library to perform the equivalent operation of the respective Clojure function.


## Rationale 

While immutability is neither idiomatic nor common in Python, it is still beneficial to implement the concept through engineering discipline. However, soon one will find oneself writing the same constructs over and over again, and even though these expressions are fairly succinct, it is much nicer to refer to them by name. The goal of this library is to provide a collection of functions that promote immutable manipulation of standard Python data structures as a concept without strictly enforcing it.

They say that there are only two hard problems in software engineering, one of them being naming. Clojure is chosen as a source of inspiration for these functions because the author of this library considers Clojure's naming the gold standard.


## Reference

```
from pyclo import *
```

 - `dissoc(dict, *keys)` - return a copy of `dict` without specified `keys`.
 - `select_keys(dict, *keys)` - return a copy of `dict` only containing `keys`.


