Skip to main content

Library of Wonderful Things

Project description

A library of wonderful things!

Motivation

Python is a Little Crufty

Python is awesome now, but it was originally a procedural language invented before functional semantics, before OO, and even before the discovery of vowels. As a consequence there are many procedures that alter their own parameters, or have disemvoweled names. This library puts a facade over these relics of the past and uses convention to name methods.

Advanced List Comprehensions are Awesome

My career has been permeated with the need to write ETL scripts. I have preferred SQL for it’s succinctness when dealing with data transformations, and it makes Python’s list comprehensions look limited in comparison. I have added a few more relational operators, and provided procedures to handle common complex list comprehensions.

Nones are Important

ETL inherently deals with diverse data and missing data. This leaves many opportunities for None to take the place of that missing data.

Heavy use of list comprehensions requires a significantly different strategy when dealing with Nulls/Nones. The Pythonic strategy of raising exceptions on invalid access is unacceptable inside the context of list operations because we want to process all good data and not exit early. Furthermore, even the data with Nones can go through partial processing.

A significant portion of this library implements familiar set/list operations while dealing with Nones gracefully. To do this, None is interpreted as not-applicable rather than unknown/missing. The former allows operations to assume the None can be ignored in the context of the operation, and this assumption turns out to be mostly correct in the context of ETL. The latter interpretation appears more in statistics. A good example is util.collections.AND:

AND(True, None, True) == True  # Assuming None means "not applicable"
AND(True, None, True) == None  # Assuming None means "unknown"

JSON is Everywhere

This library is also designed to query into hierarchical data, like JSON. Hierarchical queries are made easy by manipulating references to paths into the JSON trees, and further allowing set comprehensions to use those paths to deconstruct, or reconstruct trees succinctly. The dot “.“ operator is used to specify paths, and is so prevalent that the literal dot must be escaped (like so: “\.“). JSON, and the paths into it, are an excellent source of Nones.

Structured Logging integrated with Chained Exceptions is Good

Exception handling and logging are undeniably linked. There are many instances where exceptions are raised and must be logged, except when they are appropriately handled. The greatness of exception handling semantics comes from decoupling the cause from the solution, but this is at odds with clean logging - which couples raising and handling to make appropriate decisions about what to ultimately emit to the log. For this reason, the logging module is responsible for collecting the trace and context, raising the exception, and then deducing if there is something that will handle it (so it can be ignored), or if it really must be logged.

This library also expects all log messages and exception messages to have named parameters so they can be stored in easy-to-digest JSON, which can be processed by downstream tools.

Windows 7 Install Instructions for Python

Python was really made for Linux, and installation will be easier there. Technically, Python works on Windows too, but there are a few gotchas you can avoid by following these instructions.

  • Download Python 2.7 (32bit ONLY!!! Many native libs are 32 bit)

  • Install Python at c:\Python27 (The space in the “Program Files” may screw up installs of native libs)

  • Add to you path: c:\Python27;c:\Python27\scripts;

  • Download http://python-distribute.org/distribute_setup.py

    CALL python distribute_setup.py
    CALL easy_install pip
    CALL easy_install virtualenv
  • Many “Python Powered” native installs require a pointer to the python installation, but they have no idea where to look in 64bit windows. You must alter the registry (http://stackoverflow.com/questions/3652625/installing-setuptools-on-64-bit-windows):

    SET HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.7\InstallPath = "C:\Python27"

Installing pyLibrary

Once Python is installed, other Python packages are are much easier.

  • Install from PyPi:

    pip install pyLibrary

Installing for Development

  • Download from Github:

    git clone https://github.com/klahnakoski/pyLibrary.git
  • Install requirements:

    python setup.py develop

Optional

pyLibrary does not use these, but maybe you will find them useful:

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

pyLibrary-0.1.14070.zip (53.9 kB view details)

Uploaded Source

Built Distributions

pyLibrary-0.1.14070.win32-py2.7.exe (221.9 kB view details)

Uploaded Source

pyLibrary-0.1.14070-py2.7.egg (43.0 kB view details)

Uploaded Source

File details

Details for the file pyLibrary-0.1.14070.zip.

File metadata

  • Download URL: pyLibrary-0.1.14070.zip
  • Upload date:
  • Size: 53.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyLibrary-0.1.14070.zip
Algorithm Hash digest
SHA256 f8ac7cb8bd44e885d85d6b8c02d97818ee50fd6435efdda0d7ed03f0f0382421
MD5 5512d5ea2e5bf8dd414c7bf046093862
BLAKE2b-256 b30e6f709553ab61ecafb24806c86d7140f09ba865fc6fcd695707c60e274881

See more details on using hashes here.

File details

Details for the file pyLibrary-0.1.14070.win32-py2.7.exe.

File metadata

File hashes

Hashes for pyLibrary-0.1.14070.win32-py2.7.exe
Algorithm Hash digest
SHA256 5483d4b2d1b0d1aa043bc25a4b6e70e48c28dcbb2152e821fe249beff930b329
MD5 74c91e75e717e1790aa05bf1d386c85c
BLAKE2b-256 54d94510cd1bcb23e289aebcf30f821d3ffc27bd8205885123716982c4f64df3

See more details on using hashes here.

File details

Details for the file pyLibrary-0.1.14070-py2.7.egg.

File metadata

File hashes

Hashes for pyLibrary-0.1.14070-py2.7.egg
Algorithm Hash digest
SHA256 061de2ad5d266f6acef53da52bb2f4d5e34d27470cc9f69ce3a447afe5d34e21
MD5 1ebe3257ae172b4bdfe63e768bf6a457
BLAKE2b-256 b604448b25cb463868e3c8572e565fea82a0704ac28b93bac362b0cb8c02b249

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