Metadata-Version: 2.1
Name: TTFootprints
Version: 0.0.2
Summary: A library for working with exported data from the Footprints ticketing system.
Home-page: https://gitlab.uvm.edu/whunt1/libfp
Author: Willem Hunt
Author-email: whunt1@uvm.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Information Technology
Requires-Python: >=3.6

# TTFootprints
TTFootprints is a library for working with ticket data exported from BMC Footprints.

## Installation

`python -m pip install ttfootprints`

OR

`git clone https://gitlab.uvm.edu/whunt1/libfp`

`cd libfp`

`python -m pip install .`

## Usage


### Read tickets from a csv
`from footprints import ticket`

tickets = `ticket.read_csv("/path/to/file")`

### Get ticket information

`first_ticket = tickets[0]`

`desc = first_ticket.data["Description"]`

