Metadata-Version: 2.1
Name: virustotalpy
Version: 0.2.0
Summary: library for an easier interaction with the v3 api
Home-page: https://github.com/maxmmueller/virustotalpy
Author: Maximilian Müller
License: Apache License 2.0
Description: Virustotalpy v0.2.0 let's you analyse IPs, URLs and files up to 650MB.
        
        ## Installation
        Method 1:
        > Requires Python 3.6 or newer.
        ```
        pip install virustotalpy
        ```
        
        Method 2:
        > Requires [git](https://git-scm.com/downloads) 
        ```
        git clone https://github.com/maxmmueller/virustotalpy.git
        ```
        
        ## Usage
        >In order to get a VirusTotal api-key, you need to [sign up](https://www.virustotal.com/gui/join-us) for an account
        >
        
        
        At first the Virustotal class has to be initialised
        ```python
        from virustotalpy import Virustotal
        
        scanner = Virustotal('YOUR_API_KEY')
        ```
        #### Files
        - make api request
        ```
        resp = scanner.api_request('post', path='PATH_TO_FILE')
        ```
        - Obtain information about the file:
        > NOTE: To get this information, you must use the "post" method first.
        
        ```python
        resp = scanner.api_request('get', path='PATH_TO_FILE')
        print(resp)
        ```
        
        #### URLs
        
        - make api request
        ```
        resp = scanner.api_request('post', path='URL')
        ```
        - Obtain information about the url:
        > NOTE: To get this information, you must use the "post" method first.
        
        ```python
        resp = scanner.api_request('get', path='URL')
        print(resp)
        ```
        
        - more [examples](examples)
        
        ## Learn more:
        
        - [GitHub](https://github.com/maxmmueller/virustotalpy)
        - [API](https://developers.virustotal.com/reference/overview)
        
        
        ## License
        
        Copyright 2021-2022 Maximilian Mueller.
        
        [Apache License 2.0](https://github.com/maxmmueller/virustotalpy/blob/main/LICENSE).
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
