Skip to main content

Clojure inspired helper functions

Project description

Clojure inspired helper functions for Python

PyPI - Python Version PyPI - License PyPI

This is a small library with Clojure inspired helper functions. It uses only the standard library, without any external dependencies.

The goal is to implement replicas of the Clojure funcs that I admire.

Installation

With poetry (always recommended):

poetry add cloj

With pip:

pip install cloj

Implemented:

  • take/drop
  • take_while/drop_while
  • some
  • nth, first, second, third, fourth, fifth, forty_second, last
  • get-in

Some examples:

from cloj import take, drop

take(3, [1, 2, 3, 4, 5])
>> [1, 2, 3]

drop(3, [1, 2, 3, 4, 5])
>> [4, 5]

drop (100, [1, 2, 3, 4, 5])
>> []
from cloj import first, second, third, fourth, fifth, forty_second, last

first([1, 2, 3])
>> 1

last([1, 2, 3])
>> 3

first([])
>> None
from cloj import get_in

sample = {"foo": {"bar": [0, {"spam": "target"}, 1]}}
get_in(sample, ["foo", "bar", 1, "spam"])
>>> "target"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloj-0.2.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

cloj-0.2.0-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page