Skip to content

m3trik/pythontk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License: MIT Version CoreUtils Tests FileUtils Tests ImgUtils Tests MathUtils Tests IterUtils Tests StrUtils Tests

PYTHONTK (Python Toolkit)


pythontk is a collection of backend utilities for Python.

Installation:

To install: Add the pythontk folder to a directory on your python path, or install via pip in a command line window using:

python -m pip install pythontk

Example use-case:

import pythontk as ptk
ptk.filter_list([0, 1, 2, 3, 2], [1, 2, 3], 2)
# Returns: [1, 3]

ptk.filter_dict({1:'1', 'two':2, 3:'three'}, exc='t*', keys=True)
# Returns: {1: '1', 3: 'three'}

About

A collection of backend utilities for Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published