Skip to content

Instantly share code, notes, and snippets.

View 4goettma's full-sized avatar

Julian 4goettma

  • Hamburg, Germany
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@4goettma
4goettma / importHelper.py
Created June 9, 2019 21:42
small python module to simplify importing modules, v0.2
"""
#!/usr/bin/env python3
import importHelper
importHelper.importAllOfThese(["datetime", "math"])
importHelper.importOneOfThese(["clipboard", "pyperclip"], "clip")
print(math.cos(1))
print(datetime.datetime.now().isoformat())
print(clip.paste())