Skip to main content

A package for all those who love the number 3.

Project description

three.py

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.

How to install

pip install love-three

Usage examples

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']

Development setup

All the code needed is contained within:

three.py

How to contribute

Contributions are encouraged and welcomed!

  1. Fork the repo
  2. Create a branch for your new feature (git checkout -b feature/my-cool-feature)
  3. Commit your changes (git commit -am feature/my-cool-feature)
  4. Push to the branch (git push origin feature/my-cool-feature)
  5. Create a new Pull Request

Meta

Distributed under the MIT license. See LICENSE.txt for more information.

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

love-three-1.1.0.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

love_three-1.1.0-py2.py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 2 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