File: __init__.py

package info (click to toggle)
python-virustotal-api 1.1.11-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 180 kB
  • sloc: python: 389; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 324 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__title__ = 'virustotal-api'
__version__ = '1.1.11'
__author__ = 'Josh Maine'
__license__ = 'MIT'
__copyright__ = 'Copyright (C) 2014-2017 Josh "blacktop" Maine'

try:
    import requests
except ImportError:
    pass

from .api import ApiError, IntelApi, PrivateApi, PublicApi