Metadata-Version: 2.2
Name: pyojure
Version: 0.1.4
Summary: Make Python More Like Clojure
Description-Content-Type: text/markdown

# pyojure

make python more like clojure

![pyojure is pure joy](6vc5do.jpeg "python doesn't have to be so hard")

## Usage

```pycon
>>> from pyojure import *
>>> mapv(print, dir())
```

```pycon
>>> assoc({"this": "is"}, "very", "cool")
{'this': 'is', 'very': 'cool'}
>>> comp(str, inc, int)('123')
'124'
>>> list(partition(2, [1,2,3,4,5,6,7,8,9]))
[[1, 2], [3, 4], [5, 6], [7, 8], [9]]
```
