For those who love the number three
This project is maintained by JasonTurley
A package dedicated to the love of 3.
This is silly personal project inspired by the equally silly JavaScript library five.js by Jack Clark.
Using pip:
pip install love-three
Alternatively, you can clone the repo:
git clone https://github.com/JasonTurley/three.git
Begin by importing the three module into your code.
>>> import three
The module can be used to perform:
arithmetic
>>> three.three() + three.three()
6
>>> three.squared()
9
>>> three.cubed()
27
boolean expressions
>>> a = 2
>>> if three.is_three(a):
... print("a equals three :)")
... else:
... print("a does not equal three :(")
...
a does not equal three :(
filter, map, and reduce
>>> values = [1, None, 3, "beans", False, 3]
>>> three.filter(values)
[3, 3]
>>> three.map(values)
[3, 3, 3, 3, 3, 3]
>>> three.reduce(values)
3
novelty and humor
>>> three.leches()
['Condensed', 'Evaporated', 'Heavy cream']
>>> three.stooges()
['Larry', 'Curly', 'Moe']
date and time
>>> three.hours_from_now()
'17:45:00'
>>> three.days_from_now()
'06 October 2020'
All the code needed is contained within:
three.py
From the root (three) directory:
python3 -m unittest discover -s tests
Contributions are encouraged and welcomed!
See CONTRIBUTING.md
Distributed under the MIT license. See LICENSE.txt for more information.