Skip to main content

Add basic functional methods to standard types

Project description

Sweet Pear library

Sweet pear is a python package which add basic functional member methods to the build in python types (str, tuple, list, range).

I don't find my loved awsmstff function!

If you think that a commonly used function is missing, don't worry. Just open a issue for feature request describing its usage. If your request is accepted, it will be implemented in few days and a new version of this package will be released.

Examples

Usage example:

import sweetpear

(1, 2, 3, 4).map(lambda x: x**2)
["hello", "world"].map('capitalize')

You can also is this property to access member of objects:

import numpy as np
import torch

infos = (np.array([1,2,3]), np.zeros((2,5)), torch.ones((3,4)))
infos.map('shape')

Advanced features like groupby are now easily accessible :)

>>> "Abrakadabra!".groupby(lambda x: x== 'a' or x== "A")
{True: ['A', 'a', 'a', 'a', 'a'], False: ['b', 'r', 'k', 'd', 'b', 'r', '!']}

API

Here is the list of the available functions:

[].map
[].tail
[].drop
[].take
[].firt
[].concat
[].flatten
[].count
[].groupby

For more information on a specific method, just type

import sweetpear

help([].groupby)

in your python console.

How does it works

The implementation rely on the python library ForbiddenFruit to patch the built in types and add custom methods. Most of the methods are binding around the awesome cytoolz package.

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

sweet-pear-0.1.0.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

sweet_pear-0.1.0-py3-none-any.whl (5.1 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