Skip to main content

prototype whatever in the Jupyter notebook

Project description

Pythonic syntaxes that save pixels when developing in the notebook.

Chain

A chain is a typographically compact manner of creating complicated expressions in Pythonic syntax.

Chainable Values

some_expr = Chain([1,2,3]).reversed().map(lambda x: x**2).list()
some_expr.value()
some_expr.value([3,5,8])

Syntactic Sugar

\ & > offer chain new functions and evaluate them respectively.

from toolz.curried import *
some_expr = Chain([1,2,3]) | reversed | map(lambda x: x**2) | list
some_value = Chain([1,2,3]) | reversed | map(lambda x: x**2) > list

Whatever

Easy to construct cell magics

Cell Magics

Create a jinja to Markdown magic.

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

License

whatever4e is released as free software under the [BSD 3-Clause license] (https://github.com/tonyfast/whatever-forever/blob/master/LICENSE).

__version_info__ = (0, 0, 9)
__version__ = '.'.join(map(str, __version_info__))

from .chain import Chain
from .magic import Forever
from class_maker import method

__all__ = [
    'Forever', 'Chain', 'method',
]

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.0.9.tar.gz (10.3 kB view hashes)

Uploaded Source

Built Distribution

whatever_forever-0.0.9-py2.py3-none-any.whl (9.2 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