Metadata-Version: 2.1
Name: pytan3
Version: 3.0.0
Summary: Tanium API workflow encapsulation.
Home-page: https://github.com/tanium/pytan3
Author: Jim Olsen
Author-email: jim.olsen@tanium.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Requires-Dist: cert-human
Requires-Dist: colorama
Requires-Dist: humanfriendly
Requires-Dist: privy
Requires-Dist: requests[security,socks]
Requires-Dist: six (>=1.12.0)
Requires-Dist: xmltodict
Requires-Dist: python-dotenv
Requires-Dist: pathlib2 ; python_version < "3.0"

[![Maintenance
yes](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/tanium/pytan3/graphs/commit-activity)
[![MIT
license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/)
[![Open Source?
Yes!](https://badgen.net/badge/Open%20Source%20%3F/Yes%21/blue?icon=github)](https://github.com/tanium/pytan3)
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![Known Vulnerabilities](https://snyk.io/test/github/tanium/pytan3/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/tanium/pytan3?targetFile=requirements.txt)
[![codecov](https://codecov.io/gh/tanium/pytan3/branch/master/graph/badge.svg)](https://codecov.io/gh/tanium/pytan3)

# PyTan: Python API for the Tanium Platform

PyTan is an all-in-one API wrapper for [Tanium](https://www.tanium.com) and is comprised of multiple modular layers that make it easy to extend or add new functionality.

Since the inception of PyTan in October of 2014 it has grown in scope, complexity, and adoption. This version marks the fourth redesign, and it has vast improvements over the previous versions.

PyTan is actively maintained on GitHub, where the code is [always available](https://github.com/tanium/pytan3).

The [documentation for PyTan](https://pytan3.readthedocs.io/en/latest/) is available online thanks to [Read the Docs](https://readthedocs.org/).

## Installing

Installing PyTan via [pip](https://pypi.org/project/pip/) or [pipenv](https://pipenv.readthedocs.io/en/latest/) will automatically install all of the necessary dependencies.

### Install into the system site-packages using pip

```
$ pip install pytan3
```

### Install into a virtual environment using pipenv

```
$ pipenv install pytan3
```

### Clone the pytan3 repository using git

```
$ git clone git://github.com/tanium/pytan3.git
```

### Directly from GitHub

Get the [master branch](https://github.com/tanium/pytan3/archive/master.zip) which will always be the most recent stable release, or download a specific version from the [releases page](https://github.com/tanium/pytan3/releases).



