Metadata-Version: 2.0
Name: drewtils
Version: 0.1.8
Summary: Simple tools to make testing and file parsing easier
Home-page: https://github.com/drewejohnson/drewtils
Author: Andrew Johnson
Author-email: 1drew.e.johnson@gmail.com
License: MIT
Keywords: parsing files unittest testing
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=2.7,!=3.1,!=3.2,!=3.3,!=3.4

drewtils
========

.. image:: https://travis-ci.org/drewejohnson/drewtils.svg?branch=master
    :target: https://travis-ci.org/drewejohnson/drewtils
.. image:: https://badge.fury.io/py/drewtils.svg
    :target: http://badge.fury.io/py/drewtils
.. image:: https://readthedocs.org/projects/drewtils/badge/?version=latest
    :target: http://drewtils.readthedocs.io/en/latest/
.. image:: https://api.codacy.com/project/badge/Grade/043016e2c680488a8972a9ccd437cdc1
    :target: https://www.codacy.com/app/drewejohnson/drewtils?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=drewejohnson/drewtils&amp;utm_campaign=Badge_Grade

A collection of utilities that I frequently use.

Installation
------------

Install with ``pip`` with ```pip install drewtils``` or through github by
cloning the repository and running ``python setup.py install``

Verify your installation by running ``python setup.py test``.
All tests should pass if the installation completed and the master build is passing.

Contents
--------

* ``KeywordParser``: Class designed to break a file into chunks based on keyword segments
* ``PatternReader``: Class designed to quickly read a file looking for patterns

Documentation
-------------

Documentation is hosted on `readthedocs <http://drewtils.readthedocs.io/en/latest/>`_


