/deft

A set of simple (for now) tools to increase data deftness.

Primary LanguagePythonMIT LicenseMIT

Deft

A set of simple (for now) tools to increase data deftness.

deft
adj.
Quick and skillful; adroit. synonym: dexterous.


Table of Contents

Introduction

Deft is a small Python package that encapsulates some functionality that I've found useful, both in my everyday development and in data science.

Installation

To install, run the following command in a terminal (ideally one running a Python virtual environment):

pip install -i https://test.pypi.org/simple/ deft

Usage

To use Deft, import the package by including the following line at the top of your script or notebook:

import deft

Or, to import specific modules (for example, the array module):

from deft import array

Contribution

If you are interested in contributing to Deft in any way, great!

For suggestions, questions, concerns, comments, open an issue.

To add, fix, or improve the code:

  1. Fork this repository
  2. Make your changes (only changes you want to include in the master branch)
  3. Run all unit tests
  4. Once all the tests pass, push the changes to your remote fork
  5. Create a GitHub pull request
  6. I will review and get in touch as needed