Skip to main content

A few basic tools I feel are missing in the standard Python distribution.

Project description

My Python Toolkit

This is just a miscellaneous collection of some tools I use regularly that I decided to compile into one package for easy use by mainly me. All examples will assume the package has been imported as kit.

Install from PyPi: pip install mypytoolkit.

import mypytoolkit as kit

Dates and Times

kit.time_now() returns a string of the current time in the format "%H-%M". Midnight is "00-00" and 8:35 a.m. is "08-35". 10 p.m. is "22-00".

kit.today_date() returns a string of the current date in the format "%Y-%M-%D", where Feb 22, 2022, is "2022-02-22".

Python Tools

kit.tprint() displays the contents of an object along with its type. I got fed up of constantly writing print(obj, type(obj)) when debugging so I found myself constantly defining a tprint() function:

def tprint(obj):
    print(obj, type(obj))
    return [obj, type(obj)]

Super simple but it makes a night and day difference when debugging in lightspeed.

Document Checks

kit.are_docs_same() will tell you if two documents (of any type) have the exact same contents. It takes two parameters.

kit.are_docs_same(original_dir: str, new_dir: str)

It returns a boolean, True or False, depending on whether the contents of the two files are identical. There is no grey area.

Math

Added a LinearEquation class that takes attributes of slope and intercept on instantiation. It has a plot() method which plots the linear graph. For example:

import mypytoolkit as kit

equation = kit.LinearEquation(slope = 4, intercept = 10)
equation.plot(interval = 1000)

This will output a matplotlib plot of the linear equation from 0 to 1000.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mypytoolkit-1.2.1.tar.gz (3.2 kB view details)

Uploaded Source

Built Distribution

mypytoolkit-1.2.1-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file mypytoolkit-1.2.1.tar.gz.

File metadata

  • Download URL: mypytoolkit-1.2.1.tar.gz
  • Upload date:
  • Size: 3.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for mypytoolkit-1.2.1.tar.gz
Algorithm Hash digest
SHA256 e2590303420f8992a8cec8f6fd134b44e7b5571968d3ada906b49ec9abaf91a9
MD5 6be81589801d90228a00f8ccd2a9c47e
BLAKE2b-256 4844e2cb36d734c44b9a2e4f0aaa83b845d782492bf0d57a922619ea9cfc8169

See more details on using hashes here.

File details

Details for the file mypytoolkit-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: mypytoolkit-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 3.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for mypytoolkit-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8c47d583d05ce28cc84fe73dc0892f288ab32abb33ac3c71252b6b4c8e25c321
MD5 c99d6b1998978c6ee840fba69d6b3fe1
BLAKE2b-256 0fbe895e30a6613325f76589fe2f9b0322c7a15210b27c68e68d54afcd538fee

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page