A small clone of ramda
Project description
pamda
This is a repo try to copy https://github.com/ramda/ramda in python.
install
For whom wants to use this package.
> pip install zydmayday-pamda
> pip install zydmayday-pamda -U # get the latest
Usage
>>> from pamda import curry
>>> def sum(a, b, c): return a + b + c
>>> curry(sum)(1)(2, 3)
6
>>> import pamda as R # similar to ramda syntax
>>> def sum(a, b, c): return a + b + c
>>> R.curry(sum)(1)(2, 3)
6
Contribute
For whom wants to contribute to this repo.
# see: https://pre-commit.com/ for more details
$ pre-commit install # install hooks
Check the latest branch to be released in here.
Checkout new branch from that release branch and create PR.
CheckList
Functions supported now.
- __
- add
# different from ramda, ramda treat null as 0
>>> R.add(None, None) # float('nan)
- addIndex
- adjust
- all
- Transducer part is not fully tested.
- allPass
- always
- And (
andis a keyword in python) - andThen
- any
- anyPass
- ap
- aperture
- append
- apply
- applySpec
- applyTo
- ascend
- assoc
- assocPath
- binary
- bind
- both
- call
- chain
- clamp
- clone
- collectBy
- comparator
- complement
- compose
- composeWith
- concat
- cond
- construct
- constructN
- converge
- count
- countBy
- curry
- curryN
- dec
- defaultTo
- descend
- difference
- differenceWith
- dissoc
- dissocPath
- divide
- drop
- dropLast
- dropLastWhile
- dropRepeats
- dropRepeatsWith
- dropWhile
- either
- empty
- endsWith
- eqBy
- eqProps
- equals
- evolve
- F
- filter
- find
- findIndex
- findLast
- findLastIndex
- flatten
- flip
- forEach
- forEachObjIndexed
- fromPairs
- groupBy
- groupWith
- gt
- gte
- has
- hasIn
- hasPath
- head
- identical
- identity
- ifElse
- inc
- includes
- indexBy
- indexOf
- init
- innerJoin
- insert
- insertAll
- intersection
- intersperse
- into
- invert
- invertObj
- invoker
- is
- isEmpty
- isNil
- join
- juxt
- keys
# When using R.keys(obj) and obj is a class instance, we use obj.__dict__ as keys.
class A:
c = 'not included'
def __init__(self):
self.a = 1
self.b = 2
a = A()
R.keys(a) # ['a', 'b']
- keysIn
- last
- lastIndexOf
- length
- lens
- lensIndex
- lensPath
- lensProp
- lift
- liftN
- lt
- lte
- Map (
mapis a keyword in python) - mapAccum
- mapAccumRight
- mapObjIndexed
- match
- mathMod
- max
- maxBy
- mean
- median
- memoizeWith
- mergeAll
- mergeDeepLeft
- mergeDeepRight
- mergeDeepWith
- mergeDeepWithKey
- mergeLeft
- mergeRight
- mergeWith
- mergeWithKey
- min
- minBy
- modify
- modifyPath
- modulo
- move
- multiply
- nAry
- negate
- none
- not
- nth
- nthArg
- o
- objOf
- of
- omit
- on
- once
- or
- otherwise
- over
- pair
- partial
- partialObject
- partialRight
- partition
- path
- pathEq
- pathOr
- paths
- pathSatisfies
- pick
- pickAll
- pickBy
- pipe
- pipeWith
- pluck
- prepend
- product
- project
- promap
- prop
- propEq
- propIs
- propOr
- props
- propSatisfies
- range
- reduce
- reduceBy
- reduced
- reduceRight
- reduceWhile
- reject
- remove
- repeat
- replace
- reverse
- scan
- sequence
- set
- slice
- sort
- sortBy
- sortWith
- split
- splitAt
- splitEvery
- splitWhen
- splitWhenever
- startsWith
- subtract
- sum
- symmetricDifference
- symmetricDifferenceWith
- T
- tail
- take
- takeLast
- takeLastWhile
- takeWhile
- tap
- test
- thunkify
- times
- toLower
- toPairs
- toPairsIn
- toString
- toUpper
- transduce
- transpose
- traverse
- trim
- tryCatch
- type
- unapply
- unary
- uncurryN
- unfold
- union
- unionWith
- uniq
- uniqBy
- uniqWith
- unless
- unnest
- until
- unwind
- update
- useWith
- values
- valuesIn
- view
- when
- where
- whereAny
- whereEq
- without
- xor
- xprod
- zip
- zipObj
- zipWith
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zydmayday-pamda-0.0.9.tar.gz.
File metadata
- Download URL: zydmayday-pamda-0.0.9.tar.gz
- Upload date:
- Size: 29.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06dcb246668d13a6548b5deb181e66f369ab8b2e479db668a77a4a108a09de66
|
|
| MD5 |
16d8aa773970c4424fa74aa0b3586843
|
|
| BLAKE2b-256 |
6a3116b32bbd778cae6335bb3f8cd1ca9c8f8781320f971b22a9fee1a221279a
|
File details
Details for the file zydmayday_pamda-0.0.9-py3-none-any.whl.
File metadata
- Download URL: zydmayday_pamda-0.0.9-py3-none-any.whl
- Upload date:
- Size: 54.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a880cb912d1fe9161890dd4a618b9ebca183f72c9c1e937a6933055797cf6c2
|
|
| MD5 |
07734803f9d05fa85d4906de5545fa80
|
|
| BLAKE2b-256 |
c1165f1c159bd973cfe7533b8e1acadeb2515c30ef4a20aca6f31f3b5b33e4f2
|