Skip to content

Instantly share code, notes, and snippets.

@eode
eode / output.md
Created December 15, 2018 00:20
t4 markdown docs, autogenerated, first run

Welcome to T4’s documentation!

class t4.Bucket(bucket_uri)

Implements Bucket interface for T4.

Bucket.call(key)

Shorthand for deserialize(key)

@eode
eode / output.md
Created December 15, 2018 00:04
..this is just a quick rendering of some example text..

Welcome to T4’s documentation!

Module-level docstring

class foo.Fizz(bounce)

Class-level docstring

class Fizz.Fuzz(blarg, honk=9)

@eode
eode / execnet_shared.py
Created November 2, 2018 04:54
example execnet shared storage
from collections import MutableMapping, namedtuple
Message = namedtuple("Message", 'word, obj')
class ExecNetSharedStorageClient(MutableMapping):
def __init__(self, channel):
super().__init__()
self.ch = channel