Skip to content

lindsay-fredrick/mypytest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mypytest

Testing the production of python packages.

Installation

Open your conda/venv where you wish to install the package. From the command line, you can pip-install:

pip install git+https://github.com/lindsay-fredrick/mypytest.git

Usage

from mypytest import *

utils.guess_a_number()

test = ['a', 'b', 'c', 'd', 'e']
test_1 = random_list_chunk(test, 3)

print(test)
print(test_1)

NEW in version 0.0.2! Create a histogram from a list of data points.

from mypytest.utils import plot_histogram
import numpy as np

x = np.random.rand(100)
plot_histogram(x)

NEW in version 0.0.3! Create a madlibs about computers.

from mypytest.utils import mad_libs

mad_libs()

NEW in version 0.0.4! Now supports installation of multiple packages

import mypytest
import mypytest.subtest
from subtest1 import *

mypytest.subtest.print_sw()
utils.print_sw1()

About

Testing the production of python packages.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages