This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Written by Curtis Malainey | |
# MIT License | |
from csv import DictReader | |
from argparse import ArgumentParser | |
from enum import Enum | |
class Transaction: | |
def __init__(self): | |
self.data = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import argparse | |
def negative_binomial(number_of_tests, probability): | |
""" | |
simple negative_binomial random number generator for | |
range [1, number_of_tests]. In the event all tests | |
fail the generator falls back to uniform distribution | |
""" | |
random.seed() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import os | |
import subprocess | |
ignores = ["/build"] | |
l = [] | |
repos = os.walk(".").__next__()[1] |