Metadata-Version: 2.1
Name: mikatools
Version: 0.0.8
Summary: Quick methods for every day Python programming
Home-page: https://github.com/mikahama/mikatools
Author: Mika Hämäläinen
Author-email: mika.hamalainen@helsinki.fi
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: clint

# Mikatools

Mikatools provides fast and easy methods for common Python coding tasks.
Some functionality:
 - script_path() gives the location of the current Python script
 - json_dump(data, file_path) saves a dictionary in UTF-8 in a pretty format with indentation, real unicode characters (no unreadable escaped letters) and sorts the keys.
 - json_load(file_path) loads json with UTF-8 encoding
 - download_file(url, path) downloads a file and saves it on the disk
 - decorators @ensure_unicode and @ensure_ascii for Python 2 developers who struggle with unicode/string distinction (i.e. all of us)

The library mostly provides functionality for my other libraries.

