Metadata-Version: 2.1
Name: uptycs-py
Version: 0.0.2
Summary: Uptycs API helper library (for Python 3)
Home-page: https://github.com/Uptycs/uptycs-py
Author: Julian Waite
Author-email: jwayte@uptycs.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# uptycs_py
Uptycs API helper library (for Python 3)

## Installation

If you already know how to install python packages, then you can install it via pip:

You might need sudo on linux. if you want to install using pip, you can use following command:
```
$ sudo pip install uptycs-py
```

## Usage

This modules contains classes to interact with the Uptycs API using Python.
```
Some commonly used classes include:
  UptApiAuth()     - Read an Uptycs API key file and create authorization header
  UptApiCall()     - Call an Uptycs API method
  UptAlertRule()   - Get or Create an alert rule
  UptAssets()      - Show/update assets registered in Uptycs, add/remove tags from assets
  UptEventRule()   - Get or Create an event rule
  UptLkpTable()    - Get or Create a lookup table (typically for whitelists/blacklists)
  UptQueryGlobal() - Run a query against global (flight recorder)
  UptQueryRt()     - Run a query against realtime
```


