malwareDetector


NamemalwareDetector JSON
Version 0.1.12 PyPI version JSON
download
home_pageNone
SummaryMalware detector specification for NTUST isLab
upload_time2024-06-24 14:44:07
maintainerNone
docs_urlNone
authorPO-LIN LAI
requires_python>=3.10
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            malwareDetector
===============

* Source code: https://github.com/louiskyee/malwareDetector.git
* Wiki: https://github.com/louiskyee/malwareDetector/wiki
* PyPI: https://pypi.org/project/malwareDetector/

Description
-----------

This is a malware detector specification for NTUST isLab.
The `malwareDetector` is a base class designed for malicious software detection. It enables straightforward utilization of Python's inheritance feature. By inheriting from `malwareDetector` and implementing the required functions, you can achieve your specific goals. Additionally, it offers convenient configuration management. For more detailed instructions, please refer to the [GitHub Wiki](https://github.com/louiskyee/malwareDetector/wiki).

Requirements
------------
Tool | Version |Source |
|---|---|---|
| Python | `>= 3.10` | https://www.python.org/downloads |

Installation
------------

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install `malwareDetector`.
* Example: `pip install malwareDetector`

Usage
-----

### import
* import class `detector` from `malwareDetector.detector`
    ```python=
    from malwareDetector.detector import detector
    ```

### Examples:
```python=
from malwareDetector.detector import detector
from typing import Any
import numpy as np

class subDetector(detector):
    def __init__(self) -> None:
        super().__init__()

    def extractFeature(self) -> Any:
        return 'This is the implementation of the extractFeature function from the derived class.'

    def vectorize(self) -> np.array:
        return 'This is the implementation of the vectorize function from the derived class.'

    def model(self) -> Any:
        return 'This is the implementation of the model function from the derived class.'

    def predict(self) -> np.array:
        return 'This is the implementation of the predict function from the derived class.'
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "malwareDetector",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "PO-LIN LAI",
    "author_email": "bolin8017@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a4/a6/05e276221320d2f4619cdcd20085fd650b2eace17d3fad73a06766b910ca/malwareDetector-0.1.12.tar.gz",
    "platform": null,
    "description": "malwareDetector\r\n===============\r\n\r\n* Source code: https://github.com/louiskyee/malwareDetector.git\r\n* Wiki: https://github.com/louiskyee/malwareDetector/wiki\r\n* PyPI: https://pypi.org/project/malwareDetector/\r\n\r\nDescription\r\n-----------\r\n\r\nThis is a malware detector specification for NTUST isLab.\r\nThe `malwareDetector` is a base class designed for malicious software detection. It enables straightforward utilization of Python's inheritance feature. By inheriting from `malwareDetector` and implementing the required functions, you can achieve your specific goals. Additionally, it offers convenient configuration management. For more detailed instructions, please refer to the [GitHub Wiki](https://github.com/louiskyee/malwareDetector/wiki).\r\n\r\nRequirements\r\n------------\r\nTool | Version |Source |\r\n|---|---|---|\r\n| Python | `>= 3.10` | https://www.python.org/downloads |\r\n\r\nInstallation\r\n------------\r\n\r\nUse the package manager [pip](https://pip.pypa.io/en/stable/) to install `malwareDetector`.\r\n* Example: `pip install malwareDetector`\r\n\r\nUsage\r\n-----\r\n\r\n### import\r\n* import class `detector` from `malwareDetector.detector`\r\n    ```python=\r\n    from malwareDetector.detector import detector\r\n    ```\r\n\r\n### Examples:\r\n```python=\r\nfrom malwareDetector.detector import detector\r\nfrom typing import Any\r\nimport numpy as np\r\n\r\nclass subDetector(detector):\r\n    def __init__(self) -> None:\r\n        super().__init__()\r\n\r\n    def extractFeature(self) -> Any:\r\n        return 'This is the implementation of the extractFeature function from the derived class.'\r\n\r\n    def vectorize(self) -> np.array:\r\n        return 'This is the implementation of the vectorize function from the derived class.'\r\n\r\n    def model(self) -> Any:\r\n        return 'This is the implementation of the model function from the derived class.'\r\n\r\n    def predict(self) -> np.array:\r\n        return 'This is the implementation of the predict function from the derived class.'\r\n```\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Malware detector specification for NTUST isLab",
    "version": "0.1.12",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fff11fffd6ec0a39011d6d0f8f89d9515b548315eea82ce71041ca33fc28bfb6",
                "md5": "e63457cfa93b68677e293d5954f31474",
                "sha256": "5b85c367342e19a9520f24b4e79903aa77cda6ac4dc29726d8ce542f9d81c0f7"
            },
            "downloads": -1,
            "filename": "malwareDetector-0.1.12-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e63457cfa93b68677e293d5954f31474",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 8221,
            "upload_time": "2024-06-24T14:44:05",
            "upload_time_iso_8601": "2024-06-24T14:44:05.826089Z",
            "url": "https://files.pythonhosted.org/packages/ff/f1/1fffd6ec0a39011d6d0f8f89d9515b548315eea82ce71041ca33fc28bfb6/malwareDetector-0.1.12-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4a605e276221320d2f4619cdcd20085fd650b2eace17d3fad73a06766b910ca",
                "md5": "b06f81550e81bd8e595a8679562e532a",
                "sha256": "3e08d6b37bd1bbe88b7cd4e90e24155d7b6c12e777b6641dd61f5d98846c110e"
            },
            "downloads": -1,
            "filename": "malwareDetector-0.1.12.tar.gz",
            "has_sig": false,
            "md5_digest": "b06f81550e81bd8e595a8679562e532a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 7588,
            "upload_time": "2024-06-24T14:44:07",
            "upload_time_iso_8601": "2024-06-24T14:44:07.564232Z",
            "url": "https://files.pythonhosted.org/packages/a4/a6/05e276221320d2f4619cdcd20085fd650b2eace17d3fad73a06766b910ca/malwareDetector-0.1.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-24 14:44:07",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "malwaredetector"
}
        
Elapsed time: 0.34868s