{"id":20493213,"url":"https://github.com/maxmmueller/virustotalpy","last_synced_at":"2026-05-21T16:14:34.456Z","repository":{"id":62587584,"uuid":"443191623","full_name":"maxmmueller/virustotalpy","owner":"maxmmueller","description":"A python wrapper for an easier interaction with the VirusTotal v3 api","archived":false,"fork":false,"pushed_at":"2023-06-17T11:57:39.000Z","size":68,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-16T05:55:35.710Z","etag":null,"topics":["maleware-analysis","python","python3","virus-scanning","virustotal-api","virustotal-python","wrapper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxmmueller.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-30T21:48:36.000Z","updated_at":"2024-02-11T20:35:36.000Z","dependencies_parsed_at":"2024-11-15T17:35:33.038Z","dependency_job_id":"4ce02085-85cc-427d-a413-a823f3970498","html_url":"https://github.com/maxmmueller/virustotalpy","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmmueller%2Fvirustotalpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmmueller%2Fvirustotalpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmmueller%2Fvirustotalpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmmueller%2Fvirustotalpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxmmueller","download_url":"https://codeload.github.com/maxmmueller/virustotalpy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242074933,"owners_count":20068143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["maleware-analysis","python","python3","virus-scanning","virustotal-api","virustotal-python","wrapper"],"created_at":"2024-11-15T17:33:56.466Z","updated_at":"2026-05-21T16:14:33.651Z","avatar_url":"https://github.com/maxmmueller.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n\u003csub\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/maxmmueller/virustotalpy/master/imgs/vt_logo.jpeg\" height=\"30\"\u003e\n\u003c/sub\u003e\nVirusTotalPy\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://pypi.org/project/virustotalpy\"\u003e\u003cimg src=\"https://img.shields.io/pypi/v/virustotalpy.svg?style=square\"/\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/maxmmueller/virustotalpy/blob/main/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/badge/license-Apache%202-blue\"/\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003eOpen-source Python library for an easier interaction with the VirusTotal v3 API\u003c/p\u003e\n\n\n## Features\nThe latest Version 1.0.1 lets you analyse and scan a list of IPs, URLs and files up to 650MB.\n\n## Installation\n##### Method 1:\n\u003ca href=\"https://www.python.org/downloads/\"\u003e\u003cimg src=\"https://img.shields.io/badge/Requires-Python%203.6%20(or%20newer)-blue\"/\u003e\u003c/a\u003e\n```\npip install virustotalpy\n```\n\n##### Method 2:\n \u003ca href=\"https://git-scm.com/downloads\"\u003e\u003cimg src=\"https://img.shields.io/badge/Requires-git-blue\"/\u003e\u003c/a\u003e\n\n```\ngit clone https://github.com/maxmmueller/virustotalpy.git\n```\n\n##### Method 3:\nDownload the [latest Release](https://github.com/maxmmueller/virustotalpy/releases/latest)\n\n\n## Usage\nIn order to use the API you need to [sign up](https://www.virustotal.com/gui/join-us) for a VirusTotal account and create an API key.\n\u003e\n\u003e ![View API key](https://raw.githubusercontent.com/maxmmueller/virustotalpy/master/imgs/api_key.jpeg)\n\nCode example:\n```python\nfrom virustotalpy import Scanner\n\n# replace this with your actual api key and username\nAPI_KEY = \"YOUR-API-KEY\"\nUSER_NAME = \"YOUR-VIRUSTOTAL-USERNAME\"\n\nscanner = Scanner(API_KEY, USER_NAME)\n\ndata = [\n    \"https://www.example.com\",\n    \"192.168.0.1\",\n    \"test.exe\"\n]\n\nresult = scanner.scan(data)\nprint(result)\n```\n\n## Learn more\n\n- [Documentation and reference](https://github.com/maxmmueller/virustotalpy/blob/main/docs/docs.md)\n- [PyPI](https://pypi.org/project/virustotalpy)\n- [API reference](https://developers.virustotal.com/reference/overview)\n\n## Contributing\nContributions to this project are welcome!\n\nIf you encounter any problems, find a bug or have feature requests, please open an [issue](https://github.com/maxmmueller/virustotalpy/issues/new).\n\n## Licence\nMaximilian Müller 2021-2023\n[Apache License 2.0](LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmmueller%2Fvirustotalpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxmmueller%2Fvirustotalpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmmueller%2Fvirustotalpy/lists"}