Skip to content

Instantly share code, notes, and snippets.

"""
FSEND standup bot script.
Calls on people via MacOS's "say" command.
Tracks timings for how long different parts of the standup take.
Code is written in Python 3
"""
import datetime
import random
import json
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from string import ascii_lowercase
import sys
flipped = 'ɐqɔpǝɟƃɥıɾʞʃɯuodbɹsʇnʌʍxʎz'
lookup = dict(zip(ascii_lowercase, flipped))
lookup[' '] = ' '
import pytest
@pytest.fixture
def foo():
return 'foo value'
@pytest.fixture
def bar():
return 'bar value'