Update to version 1.5

This commit is contained in:
Rusty Brooks 2019-04-03 17:46:01 -05:00
parent 2f9c65d247
commit 5b8c818538
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ class OTXv2(object):
self.request_session = None
self.headers = {
'X-OTX-API-KEY': self.key,
'User-Agent': user_agent or 'OTX Python {}/1.1'.format(project),
'User-Agent': user_agent or 'OTX Python {}/1.5'.format(project),
'Content-Type': 'application/json'
}

View File

@ -4,12 +4,12 @@ from distutils.core import setup
setup(
name='OTXv2',
version='1.41',
version='1.5',
description='AlienVault OTX API',
author='AlienVault Team',
author_email='otx@alienvault.com',
url='https://github.com/AlienVault-Labs/OTX-Python-SDK',
download_url='https://github.com/AlienVault-Labs/OTX-Python-SDK/tarball/1.41',
download_url='https://github.com/AlienVault-Labs/OTX-Python-SDK/tarball/1.5',
py_modules=['OTXv2', 'IndicatorTypes','patch_pulse'],
install_requires=['simplejson', 'requests', 'python-dateutil', 'pytz']
)