Skip to main content

prototype whatever in the Jupyter notebook

Project description

A generalized declarative syntax for Python objects.

Installation

pip install whatever-forever

Basic Usage

Chain - declarative

from whatever import *
my_chain = Chain(5).range.map(lambda x: x+3).list
my_chain
[3, 4, 5, 6, 7]

A random list

from random import random
random_list = _X(5).range.map(lambda x: random()).list.value()
str(random_list)
'[0.054198466781843035, 0.3460878567298823, 0.4675066659151689, 0.1821870800287837, 0.8590642257986899]'
from random import random
_X(random_list) * (lambda s: '%3.2f' % s) | list
['0.99', '0.01', '0.89', '0.86', '0.30']
from random import random
((_X(random_list) + (lambda x: x >.5) )
 * (lambda s: '%3.2f' % s)
 | list
)
['0.99', '0.89', '0.86']

magical

Easy to construct cell magics

Cell Magics

Create a jinja to Markdown magic.

from jinja2 import Template
@magical('jinja2', lang='jinja2', display='Markdown')
def render_jinja_with_globals(cell):
    return Template(cell).render(**globals())

Development

Running test and the docs server.

watchmedo tricks tricks.yaml
jekyll serve docs -wit

License

whatever-forever is released as free software under the BSD 3-Clause license.

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

whatever-forever-0.1.0.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

whatever_forever-0.1.0-py3.5.egg (11.1 kB view hashes)

Uploaded Source

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