pyrepscan


Namepyrepscan JSON
Version 0.12.0 PyPI version JSON
download
home_pagehttps://github.com/intsights/pyrepscan
SummaryA Git Repository Secrets Scanner written in Rust
upload_time2023-08-09 06:18:19
maintainerNone
docs_urlNone
authorGal Ben David
requires_python>=3.7
licenseMIT
keywords git secrets scanner rust pyo3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <a href="https://github.com/intsights/PyRepScan">
        <img src="https://raw.githubusercontent.com/intsights/PyRepScan/master/images/logo.png" alt="Logo">
    </a>
    <h3 align="center">
        A Git Repository Secrets Scanner written in Rust
    </h3>
</p>

![license](https://img.shields.io/badge/MIT-License-blue)
![Python](https://img.shields.io/badge/Python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)
![Build](https://github.com/intsights/PyRepScan/workflows/Build/badge.svg)
[![PyPi](https://img.shields.io/pypi/v/PyRepScan.svg)](https://pypi.org/project/PyRepScan/)

## Table of Contents

- [Table of Contents](#table-of-contents)
- [About The Project](#about-the-project)
  - [Built With](#built-with)
  - [Performance](#performance)
    - [CPU](#cpu)
  - [Installation](#installation)
- [Documentation](#documentation)
- [Usage](#usage)
- [License](#license)
- [Contact](#contact)


## About The Project

PyRepScan is a python library written in Rust. The library uses [git2-rs](https://github.com/rust-lang/git2-rs) for repository parsing and traversing, [regex](https://github.com/rust-lang/regex) for regex pattern matching and [crossbeam](https://github.com/crossbeam-rs/crossbeam) for concurrency. The library was written to achieve high performance and python bindings.


### Built With

* [git2-rs](https://github.com/rust-lang/git2-rs)
* [regex](https://github.com/rust-lang/regex)
* [crossbeam](https://github.com/crossbeam-rs/crossbeam)
* [parking-lot](https://github.com/Amanieu/parking_lot)


### Performance

#### CPU
| Library | Time | Peak Memory |
| ------------- | ------------- | ------------- |
| [PyRepScan](https://github.com/intsights/PyRepScan) | 8.74s | 1,149,152 kb |
| [gitleaks](https://github.com/zricethezav/gitleaks) | 1118s | 1,146,300 kb |


### Installation

```sh
pip3 install PyRepScan
```


## Documentation

```python
class GitRepositoryScanner:
    def __init__(
      self,
    ) -> None
```
This class holds all the added rules for fast reuse.


```python
def add_content_rule(
    self,
    name: str,
    pattern: str,
    whitelist_patterns: typing.List[str],
    blacklist_patterns: typing.List[str],
) -> None
```
The `add_content_rule` function adds a new rule to an internal list of rules that could be reused multiple times against different repositories. The same name can be used multiple times and would lead to results which can hold the same name. Content rule means that the regex pattern would be tested against the content of the files.
- `name` - The name of the rule so it can be identified.
- `pattern` - The regex pattern (Rust Regex syntax) to match against the content of the commited files.
- `whitelist_patterns` - A list of regex patterns (Rust Regex syntax) to match against the content of the committed file to filter in results. Only one of the patterns should be matched to pass through the result. There is an OR relation between the patterns.
- `blacklist_patterns` - A list of regex patterns (Rust Regex syntax) to match against the content of the committed file to filter out results. Only one of the patterns should be matched to omit the result. There is an OR relation between the patterns.


```python
def add_file_path_rule(
    self,
    name: str,
    pattern: str,
) -> None
```
The `add_file_path_rule` function adds a new rule to an internal list of rules that could be reused multiple times against different repositories. The same name can be used multiple times and would lead to results which can hold the same name. File name rule means that the regex pattern would be tested against the file paths.
- `name` - The name of the rule so it can be identified.
- `pattern` - The regex pattern (Rust Regex syntax) to match against the file paths of the commited files.


```python
def add_file_extension_to_skip(
    self,
    file_extension: str,
) -> None
```
The `add_file_extension_to_skip` function adds a new file extension to the filtering phase to reduce the amount of inspected files and to increase the performance of the scan.
- `file_extension` - A file extension, without a leading dot, to filter out from the scan.


```python
def add_file_path_to_skip(
    self,
    file_path: str,
) -> None
```
The `add_file_path_to_skip` function adds a new file path pattern to the filtering phase to reduce the amount of inspected files and to increase the performance of the scan. Every file path that would include the `file_path` substring would be left out of the scanned files.
- `file_path` - If the inspected file path would include this substring, it won't be scanned. This parameter is a free text.


```python
def scan(
    self,
    repository_path: str,
    branch_glob_pattern: typing.Optional[str],
    from_timestamp: typing.Optional[int],
) -> typing.List[typing.Dict[str, str]]
```
The `scan` function is the main function in the library. Calling this function would trigger a new scan that would return a list of matches. The scan function is a multithreaded operation, that would utilize all the available core in the system. The results would not include the file content but only the regex matching group. To retrieve the full file content one should take the `results['oid']` and to call `get_file_content` function.
- `repository_path` - The git repository folder path.
- `branch_glob_pattern` - A glob pattern to filter branches for the scan. If None is sent, defaults to `*`.
- `from_timestamp` - A UTC timestamp (Int) that only commits that were created after this timestamp would be included in the scan. If None is sent, defaults to `0`.

A sample result would look like this:
```python
{
    'rule_name': 'First Rule',
    'author_email': 'author@email.email',
    'author_name': 'Author Name',
    'commit_id': '1111111111111111111111111111111111111111',
    'commit_message': 'The commit message',
    'commit_time': '2020-01-01T00:00:00e',
    'file_path': 'full/file/path',
    'file_oid': '47d2739ba2c34690248c8f91b84bb54e8936899a',
    'match': 'The matched group',
}
```


```python
def scan_from_url(
    self,
    url: str,
    repository_path: str,
    branch_glob_pattern: typing.Optional[str],
    from_timestamp: typing.Optional[int],
) -> typing.List[typing.Dict[str, str]]
```
The same as `scan` function but also clones a repository from a given URL into the provided repository path.
- `url` - URL of a git repository.
- `repository_path` - The path to clone the repository to
- `branch_glob_pattern` - A glob pattern to filter branches for the scan. If None is sent, defaults to `*`.
- `from_timestamp` - A UTC timestamp (Int) that only commits that were created after this timestamp would be included in the scan. If None is sent, defaults to `0`.


```python
def get_file_content(
    self,
    repository_path: str,
    file_oid: str,
) -> bytes
```
The `get_file_content` function exists to retrieve the content of a file that was previously matched. The full file content is omitted from the results to reduce the results list size and to deliver better performance.
- `repository_path` - The git repository folder path.
- `file_oid` - A string representing the file oid. This parameter exists in the results dictionary returned by the `scan` function.


## Usage

```python
import pyrepscan

grs = pyrepscan.GitRepositoryScanner()

# Adds a specific rule, can be called multiple times or none
grs.add_content_rule(
    name='First Rule',
    pattern=r'(-----BEGIN PRIVATE KEY-----)',
    whitelist_patterns=[],
    blacklist_patterns=[],
)
grs.add_file_path_rule(
    name='Second Rule',
    pattern=r'.+\.pem',
)
grs.add_file_path_rule(
    name='Third Rule',
    pattern=r'(prod|dev|stage).+key',
)

# Add file extensions to ignore during the search
grs.add_file_extension_to_skip(
    file_extension='bin',
)
grs.add_file_extension_to_skip(
    file_extension='jpg',
)

# Add file paths to ignore during the search. Free text is allowed
grs.add_file_path_to_skip(
    file_path='site-packages',
)
grs.add_file_path_to_skip(
    file_path='node_modules',
)

# Scans a repository
results = grs.scan(
    repository_path='/repository/path',
    branch_glob_pattern='*',
)

# Results is a list of dicts. Each dict is in the following format:
{
    'rule_name': 'First Rule',
    'author_email': 'author@email.email',
    'author_name': 'Author Name',
    'commit_id': '1111111111111111111111111111111111111111',
    'commit_message': 'The commit message',
    'commit_time': '2020-01-01T00:00:00e',
    'file_path': 'full/file/path',
    'file_oid': '47d2739ba2c34690248c8f91b84bb54e8936899a',
    'match': 'The matched group',
}

# Fetch the file_oid full content
file_content = grs.get_file_content(
    repository_path='/repository/path',
    file_oid='47d2739ba2c34690248c8f91b84bb54e8936899a',
)

# file_content
b'binary data'

# Creating a RulesManager directly
rules_manager = pyrepscan.RulesManager()

# For testing purposes, check your regexes pattern using check_pattern function
rules_manager.check_pattern(
    content='some content1 to check, another content2 in the same line\nanother content3 in another line\n',
    pattern=r'(content\d)',
)

# Results are the list of captured matches
[
    'content1',
    'content2',
    'content3',
]
```


## License

Distributed under the MIT License. See `LICENSE` for more information.


## Contact

Gal Ben David - gal@intsights.com

Project Link: [https://github.com/intsights/PyRepScan](https://github.com/intsights/PyRepScan)


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/intsights/pyrepscan",
    "name": "pyrepscan",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "git,secrets,scanner,rust,pyo3",
    "author": "Gal Ben David",
    "author_email": "gal@intsights.com",
    "download_url": null,
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/intsights/PyRepScan\">\n        <img src=\"https://raw.githubusercontent.com/intsights/PyRepScan/master/images/logo.png\" alt=\"Logo\">\n    </a>\n    <h3 align=\"center\">\n        A Git Repository Secrets Scanner written in Rust\n    </h3>\n</p>\n\n![license](https://img.shields.io/badge/MIT-License-blue)\n![Python](https://img.shields.io/badge/Python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)\n![Build](https://github.com/intsights/PyRepScan/workflows/Build/badge.svg)\n[![PyPi](https://img.shields.io/pypi/v/PyRepScan.svg)](https://pypi.org/project/PyRepScan/)\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [About The Project](#about-the-project)\n  - [Built With](#built-with)\n  - [Performance](#performance)\n    - [CPU](#cpu)\n  - [Installation](#installation)\n- [Documentation](#documentation)\n- [Usage](#usage)\n- [License](#license)\n- [Contact](#contact)\n\n\n## About The Project\n\nPyRepScan is a python library written in Rust. The library uses [git2-rs](https://github.com/rust-lang/git2-rs) for repository parsing and traversing, [regex](https://github.com/rust-lang/regex) for regex pattern matching and [crossbeam](https://github.com/crossbeam-rs/crossbeam) for concurrency. The library was written to achieve high performance and python bindings.\n\n\n### Built With\n\n* [git2-rs](https://github.com/rust-lang/git2-rs)\n* [regex](https://github.com/rust-lang/regex)\n* [crossbeam](https://github.com/crossbeam-rs/crossbeam)\n* [parking-lot](https://github.com/Amanieu/parking_lot)\n\n\n### Performance\n\n#### CPU\n| Library | Time | Peak Memory |\n| ------------- | ------------- | ------------- |\n| [PyRepScan](https://github.com/intsights/PyRepScan) | 8.74s | 1,149,152 kb |\n| [gitleaks](https://github.com/zricethezav/gitleaks) | 1118s | 1,146,300 kb |\n\n\n### Installation\n\n```sh\npip3 install PyRepScan\n```\n\n\n## Documentation\n\n```python\nclass GitRepositoryScanner:\n    def __init__(\n      self,\n    ) -> None\n```\nThis class holds all the added rules for fast reuse.\n\n\n```python\ndef add_content_rule(\n    self,\n    name: str,\n    pattern: str,\n    whitelist_patterns: typing.List[str],\n    blacklist_patterns: typing.List[str],\n) -> None\n```\nThe `add_content_rule` function adds a new rule to an internal list of rules that could be reused multiple times against different repositories. The same name can be used multiple times and would lead to results which can hold the same name. Content rule means that the regex pattern would be tested against the content of the files.\n- `name` - The name of the rule so it can be identified.\n- `pattern` - The regex pattern (Rust Regex syntax) to match against the content of the commited files.\n- `whitelist_patterns` - A list of regex patterns (Rust Regex syntax) to match against the content of the committed file to filter in results. Only one of the patterns should be matched to pass through the result. There is an OR relation between the patterns.\n- `blacklist_patterns` - A list of regex patterns (Rust Regex syntax) to match against the content of the committed file to filter out results. Only one of the patterns should be matched to omit the result. There is an OR relation between the patterns.\n\n\n```python\ndef add_file_path_rule(\n    self,\n    name: str,\n    pattern: str,\n) -> None\n```\nThe `add_file_path_rule` function adds a new rule to an internal list of rules that could be reused multiple times against different repositories. The same name can be used multiple times and would lead to results which can hold the same name. File name rule means that the regex pattern would be tested against the file paths.\n- `name` - The name of the rule so it can be identified.\n- `pattern` - The regex pattern (Rust Regex syntax) to match against the file paths of the commited files.\n\n\n```python\ndef add_file_extension_to_skip(\n    self,\n    file_extension: str,\n) -> None\n```\nThe `add_file_extension_to_skip` function adds a new file extension to the filtering phase to reduce the amount of inspected files and to increase the performance of the scan.\n- `file_extension` - A file extension, without a leading dot, to filter out from the scan.\n\n\n```python\ndef add_file_path_to_skip(\n    self,\n    file_path: str,\n) -> None\n```\nThe `add_file_path_to_skip` function adds a new file path pattern to the filtering phase to reduce the amount of inspected files and to increase the performance of the scan. Every file path that would include the `file_path` substring would be left out of the scanned files.\n- `file_path` - If the inspected file path would include this substring, it won't be scanned. This parameter is a free text.\n\n\n```python\ndef scan(\n    self,\n    repository_path: str,\n    branch_glob_pattern: typing.Optional[str],\n    from_timestamp: typing.Optional[int],\n) -> typing.List[typing.Dict[str, str]]\n```\nThe `scan` function is the main function in the library. Calling this function would trigger a new scan that would return a list of matches. The scan function is a multithreaded operation, that would utilize all the available core in the system. The results would not include the file content but only the regex matching group. To retrieve the full file content one should take the `results['oid']` and to call `get_file_content` function.\n- `repository_path` - The git repository folder path.\n- `branch_glob_pattern` - A glob pattern to filter branches for the scan. If None is sent, defaults to `*`.\n- `from_timestamp` - A UTC timestamp (Int) that only commits that were created after this timestamp would be included in the scan. If None is sent, defaults to `0`.\n\nA sample result would look like this:\n```python\n{\n    'rule_name': 'First Rule',\n    'author_email': 'author@email.email',\n    'author_name': 'Author Name',\n    'commit_id': '1111111111111111111111111111111111111111',\n    'commit_message': 'The commit message',\n    'commit_time': '2020-01-01T00:00:00e',\n    'file_path': 'full/file/path',\n    'file_oid': '47d2739ba2c34690248c8f91b84bb54e8936899a',\n    'match': 'The matched group',\n}\n```\n\n\n```python\ndef scan_from_url(\n    self,\n    url: str,\n    repository_path: str,\n    branch_glob_pattern: typing.Optional[str],\n    from_timestamp: typing.Optional[int],\n) -> typing.List[typing.Dict[str, str]]\n```\nThe same as `scan` function but also clones a repository from a given URL into the provided repository path.\n- `url` - URL of a git repository.\n- `repository_path` - The path to clone the repository to\n- `branch_glob_pattern` - A glob pattern to filter branches for the scan. If None is sent, defaults to `*`.\n- `from_timestamp` - A UTC timestamp (Int) that only commits that were created after this timestamp would be included in the scan. If None is sent, defaults to `0`.\n\n\n```python\ndef get_file_content(\n    self,\n    repository_path: str,\n    file_oid: str,\n) -> bytes\n```\nThe `get_file_content` function exists to retrieve the content of a file that was previously matched. The full file content is omitted from the results to reduce the results list size and to deliver better performance.\n- `repository_path` - The git repository folder path.\n- `file_oid` - A string representing the file oid. This parameter exists in the results dictionary returned by the `scan` function.\n\n\n## Usage\n\n```python\nimport pyrepscan\n\ngrs = pyrepscan.GitRepositoryScanner()\n\n# Adds a specific rule, can be called multiple times or none\ngrs.add_content_rule(\n    name='First Rule',\n    pattern=r'(-----BEGIN PRIVATE KEY-----)',\n    whitelist_patterns=[],\n    blacklist_patterns=[],\n)\ngrs.add_file_path_rule(\n    name='Second Rule',\n    pattern=r'.+\\.pem',\n)\ngrs.add_file_path_rule(\n    name='Third Rule',\n    pattern=r'(prod|dev|stage).+key',\n)\n\n# Add file extensions to ignore during the search\ngrs.add_file_extension_to_skip(\n    file_extension='bin',\n)\ngrs.add_file_extension_to_skip(\n    file_extension='jpg',\n)\n\n# Add file paths to ignore during the search. Free text is allowed\ngrs.add_file_path_to_skip(\n    file_path='site-packages',\n)\ngrs.add_file_path_to_skip(\n    file_path='node_modules',\n)\n\n# Scans a repository\nresults = grs.scan(\n    repository_path='/repository/path',\n    branch_glob_pattern='*',\n)\n\n# Results is a list of dicts. Each dict is in the following format:\n{\n    'rule_name': 'First Rule',\n    'author_email': 'author@email.email',\n    'author_name': 'Author Name',\n    'commit_id': '1111111111111111111111111111111111111111',\n    'commit_message': 'The commit message',\n    'commit_time': '2020-01-01T00:00:00e',\n    'file_path': 'full/file/path',\n    'file_oid': '47d2739ba2c34690248c8f91b84bb54e8936899a',\n    'match': 'The matched group',\n}\n\n# Fetch the file_oid full content\nfile_content = grs.get_file_content(\n    repository_path='/repository/path',\n    file_oid='47d2739ba2c34690248c8f91b84bb54e8936899a',\n)\n\n# file_content\nb'binary data'\n\n# Creating a RulesManager directly\nrules_manager = pyrepscan.RulesManager()\n\n# For testing purposes, check your regexes pattern using check_pattern function\nrules_manager.check_pattern(\n    content='some content1 to check, another content2 in the same line\\nanother content3 in another line\\n',\n    pattern=r'(content\\d)',\n)\n\n# Results are the list of captured matches\n[\n    'content1',\n    'content2',\n    'content3',\n]\n```\n\n\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n\n## Contact\n\nGal Ben David - gal@intsights.com\n\nProject Link: [https://github.com/intsights/PyRepScan](https://github.com/intsights/PyRepScan)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Git Repository Secrets Scanner written in Rust",
    "version": "0.12.0",
    "project_urls": {
        "Homepage": "https://github.com/intsights/pyrepscan",
        "Source Code": "https://github.com/intsights/pyrepscan"
    },
    "split_keywords": [
        "git",
        "secrets",
        "scanner",
        "rust",
        "pyo3"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc5ecd4b34e44535f9779c614be7fefce3dd1eb13d0137a9eb357634085c25c8",
                "md5": "2e9719222855f028dc296ff7db4cb552",
                "sha256": "9cee6d0f399ff19c049afafe8998bc92ff2fd235fcd00153237b222088f5a9a6"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e9719222855f028dc296ff7db4cb552",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1901416,
            "upload_time": "2023-08-09T06:18:19",
            "upload_time_iso_8601": "2023-08-09T06:18:19.422429Z",
            "url": "https://files.pythonhosted.org/packages/bc/5e/cd4b34e44535f9779c614be7fefce3dd1eb13d0137a9eb357634085c25c8/pyrepscan-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cdbbaad8ddc0403118dac2214702b5ee7dc97329a5018541ec5eb0c920af663",
                "md5": "10d7381c0214006d87ed7511789bf45e",
                "sha256": "d535654f1d62c2bd8e70bd40e18d56ef11526cef8104b68c10a0e889d876a011"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "10d7381c0214006d87ed7511789bf45e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1702331,
            "upload_time": "2023-08-09T06:21:10",
            "upload_time_iso_8601": "2023-08-09T06:21:10.399071Z",
            "url": "https://files.pythonhosted.org/packages/2c/db/baad8ddc0403118dac2214702b5ee7dc97329a5018541ec5eb0c920af663/pyrepscan-0.12.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0398a6dcbd7d7bd32c3509589ac31198e95a1caea4274d473ca5766c6c0fadb",
                "md5": "855c38676e7da427849c1c7f854b8223",
                "sha256": "f984ea79e25ebbbf745d5af6270eda9c8395c6519d109f3a8b154a7091662440"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "855c38676e7da427849c1c7f854b8223",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2372746,
            "upload_time": "2023-08-09T06:18:17",
            "upload_time_iso_8601": "2023-08-09T06:18:17.562458Z",
            "url": "https://files.pythonhosted.org/packages/a0/39/8a6dcbd7d7bd32c3509589ac31198e95a1caea4274d473ca5766c6c0fadb/pyrepscan-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b24f7dc3a1d1ca719c1e11d1eb90ff5b53eaac6ff250ffed4bd9471c89b1448",
                "md5": "105cfa9fde50f8616481fa05a2b3de8e",
                "sha256": "42d3a49f90b220c4b4873e0dc37638e00bcb283f981febd2be02def9b882b6a8"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "105cfa9fde50f8616481fa05a2b3de8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1240069,
            "upload_time": "2023-08-09T06:19:51",
            "upload_time_iso_8601": "2023-08-09T06:19:51.943280Z",
            "url": "https://files.pythonhosted.org/packages/7b/24/f7dc3a1d1ca719c1e11d1eb90ff5b53eaac6ff250ffed4bd9471c89b1448/pyrepscan-0.12.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17b261a9779e20e37bdc430c5575cf9fc605ff796610eeb2086b4510e5f04fc2",
                "md5": "0e07c0d9fe07e9506a0fcca3bd8578d1",
                "sha256": "696ae781abf6fc17b571d47fda0a7430b851ffb0174758f7ea153b19ac54c0c0"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e07c0d9fe07e9506a0fcca3bd8578d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1901415,
            "upload_time": "2023-08-09T06:19:01",
            "upload_time_iso_8601": "2023-08-09T06:19:01.049988Z",
            "url": "https://files.pythonhosted.org/packages/17/b2/61a9779e20e37bdc430c5575cf9fc605ff796610eeb2086b4510e5f04fc2/pyrepscan-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c78aacd284a392da72ebc1cd66df21cb0b12b396489c299bdf963cd4bfb89297",
                "md5": "cfff8a17cedc9ed80e41816c970406e1",
                "sha256": "7dccf5c53787b9ed9e24c0b41c3fe85e6c40ea081a95137ce14dc05224bc4876"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cfff8a17cedc9ed80e41816c970406e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1702334,
            "upload_time": "2023-08-09T06:22:21",
            "upload_time_iso_8601": "2023-08-09T06:22:21.135123Z",
            "url": "https://files.pythonhosted.org/packages/c7/8a/acd284a392da72ebc1cd66df21cb0b12b396489c299bdf963cd4bfb89297/pyrepscan-0.12.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b87ec40afc36e5677dc8daac950e9292e3635b1d941279c4dcab595f3ae1646",
                "md5": "aab3260b080d817b7f41dab13316947e",
                "sha256": "d6a8ef952c6f381cad1d76a8328d1e52badd9ede5e410ccb0475106a033429ef"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aab3260b080d817b7f41dab13316947e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2372746,
            "upload_time": "2023-08-09T06:18:47",
            "upload_time_iso_8601": "2023-08-09T06:18:47.604768Z",
            "url": "https://files.pythonhosted.org/packages/0b/87/ec40afc36e5677dc8daac950e9292e3635b1d941279c4dcab595f3ae1646/pyrepscan-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a8457193d54e6a2249424391b744e587cad9dc69448dddd75b4706e62ec27da",
                "md5": "a414bccb563fc2f3630ce71d74994e43",
                "sha256": "2507f112b85f4d816362699a8c82945cd3e44d6db4fb631915b62af0fec75e62"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a414bccb563fc2f3630ce71d74994e43",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1240074,
            "upload_time": "2023-08-09T06:18:42",
            "upload_time_iso_8601": "2023-08-09T06:18:42.067920Z",
            "url": "https://files.pythonhosted.org/packages/3a/84/57193d54e6a2249424391b744e587cad9dc69448dddd75b4706e62ec27da/pyrepscan-0.12.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e3e26830eea6a6d7b1cca4625377d5fb6e87045e31ac4c17f698c421fe6e1ff",
                "md5": "3e33f18e1ee9a7f3b2cbf3b2e584ebd4",
                "sha256": "00b595e4495be903f83814edef3cf80cfa0a7d99f0d4a25c68121da2136fdd7c"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e33f18e1ee9a7f3b2cbf3b2e584ebd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1901645,
            "upload_time": "2023-08-09T06:18:09",
            "upload_time_iso_8601": "2023-08-09T06:18:09.585811Z",
            "url": "https://files.pythonhosted.org/packages/1e/3e/26830eea6a6d7b1cca4625377d5fb6e87045e31ac4c17f698c421fe6e1ff/pyrepscan-0.12.0-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be76958d498639a60267aed3e968e1ac49c83a01e45802f18247a6cad2837cb0",
                "md5": "c017efdd7e3d4e4a9151e603e9969055",
                "sha256": "c1d8797e18aa001aabeb59183cb6eacc254085c0ec814a4be7ec4424be4adc10"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c017efdd7e3d4e4a9151e603e9969055",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1702453,
            "upload_time": "2023-08-09T06:20:53",
            "upload_time_iso_8601": "2023-08-09T06:20:53.426821Z",
            "url": "https://files.pythonhosted.org/packages/be/76/958d498639a60267aed3e968e1ac49c83a01e45802f18247a6cad2837cb0/pyrepscan-0.12.0-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c4d27acd9a28cfbd3ccd9ecb76a3fb11f92bc5d20735901338267e77f44efc6",
                "md5": "38696ed5c65221453029fb4d26d9372f",
                "sha256": "b71c5997e78d442c119bdf95535c2394b34e9fa6f7e2d546fdaa816fafd175ab"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38696ed5c65221453029fb4d26d9372f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2372888,
            "upload_time": "2023-08-09T06:18:26",
            "upload_time_iso_8601": "2023-08-09T06:18:26.126000Z",
            "url": "https://files.pythonhosted.org/packages/2c/4d/27acd9a28cfbd3ccd9ecb76a3fb11f92bc5d20735901338267e77f44efc6/pyrepscan-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f1c3775a72f9f372e78733fcac3736ac6a026960b01613ce013581f6ec8ec10",
                "md5": "38f658071621e9d7ae37bdea2a2ff65b",
                "sha256": "bed291648143bcb9d53343402a17b0afe810881819f740e62e6a5abc2ca95961"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "38f658071621e9d7ae37bdea2a2ff65b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1240245,
            "upload_time": "2023-08-09T06:20:01",
            "upload_time_iso_8601": "2023-08-09T06:20:01.259009Z",
            "url": "https://files.pythonhosted.org/packages/7f/1c/3775a72f9f372e78733fcac3736ac6a026960b01613ce013581f6ec8ec10/pyrepscan-0.12.0-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e05b6bb6779f7e6d0f835c69e146c296027699d66e5fa239bb108cc745c6ae0",
                "md5": "ef3a8a147425a0520c6a624e843cb9cc",
                "sha256": "95cefa9aeabcbc4aa2978cf66205f11c85cd1e9a96fb741a06a0e67973169379"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef3a8a147425a0520c6a624e843cb9cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1901642,
            "upload_time": "2023-08-09T06:18:30",
            "upload_time_iso_8601": "2023-08-09T06:18:30.522640Z",
            "url": "https://files.pythonhosted.org/packages/2e/05/b6bb6779f7e6d0f835c69e146c296027699d66e5fa239bb108cc745c6ae0/pyrepscan-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a648ac24eaf7ba8e7bec1d7e1f146d01de6e108440c8dfc99624ef44054f7040",
                "md5": "97f37fd8e9332763993ed43ba5688a41",
                "sha256": "e004ed7db4351111225c017fa4867a29cb42d31781fa77c121e106bca6bbc0cc"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "97f37fd8e9332763993ed43ba5688a41",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1702441,
            "upload_time": "2023-08-09T06:21:22",
            "upload_time_iso_8601": "2023-08-09T06:21:22.933504Z",
            "url": "https://files.pythonhosted.org/packages/a6/48/ac24eaf7ba8e7bec1d7e1f146d01de6e108440c8dfc99624ef44054f7040/pyrepscan-0.12.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fef9cbbdc29e75850695f6843cc742b5b0e33e40bd35b876769dbee15aef5f09",
                "md5": "10e309db76fb98f303a83d902585ba0e",
                "sha256": "6a9a738af5269088502737e8d3887e3b488ebb86343782780867f6ee90e4e7b6"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10e309db76fb98f303a83d902585ba0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2372885,
            "upload_time": "2023-08-09T06:17:45",
            "upload_time_iso_8601": "2023-08-09T06:17:45.661260Z",
            "url": "https://files.pythonhosted.org/packages/fe/f9/cbbdc29e75850695f6843cc742b5b0e33e40bd35b876769dbee15aef5f09/pyrepscan-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6066129eff526cce06ca41974fa5394ae14cbddf3c1fd6a29396b165e9554ced",
                "md5": "040aac834a3178878035c663fb45985f",
                "sha256": "733aaef442a1073581f33a1a775d07d411f2954f823ae559c95dbec69c1dccbd"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "040aac834a3178878035c663fb45985f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1240277,
            "upload_time": "2023-08-09T06:18:41",
            "upload_time_iso_8601": "2023-08-09T06:18:41.715461Z",
            "url": "https://files.pythonhosted.org/packages/60/66/129eff526cce06ca41974fa5394ae14cbddf3c1fd6a29396b165e9554ced/pyrepscan-0.12.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58e45636383d44a6f6911b7b9a2693720c966e1076ffad11a754e48b2da13753",
                "md5": "dcd06a6c6f5f02583e71559cd221ff92",
                "sha256": "14c838d860c4f22cd62cdd4d65e2bce2217caee2d8dbdea020be3fe9ece8e797"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dcd06a6c6f5f02583e71559cd221ff92",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1901523,
            "upload_time": "2023-08-09T06:42:32",
            "upload_time_iso_8601": "2023-08-09T06:42:32.835285Z",
            "url": "https://files.pythonhosted.org/packages/58/e4/5636383d44a6f6911b7b9a2693720c966e1076ffad11a754e48b2da13753/pyrepscan-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96c7f562ad375ba9bcd6909d2112501cdc45dbbad465c3832fd36817aff2d723",
                "md5": "5760ec0c574d63337506742b44bd6661",
                "sha256": "028f2a13e109c429e10c3b4649dcb641eee803083472e4acce40bf77c080a648"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5760ec0c574d63337506742b44bd6661",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2372884,
            "upload_time": "2023-08-09T06:17:46",
            "upload_time_iso_8601": "2023-08-09T06:17:46.654778Z",
            "url": "https://files.pythonhosted.org/packages/96/c7/f562ad375ba9bcd6909d2112501cdc45dbbad465c3832fd36817aff2d723/pyrepscan-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "158915a70016355388548e91ce6bbdc2bdc6900eb271d24c362ed8243d2d8aaa",
                "md5": "533227ffdf68cc7bd41deb98a56da89c",
                "sha256": "dd5fbd29d58afd221386c1bd52995f75eac4899421dc75891f90f349fa7d2714"
            },
            "downloads": -1,
            "filename": "pyrepscan-0.12.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "533227ffdf68cc7bd41deb98a56da89c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1240214,
            "upload_time": "2023-08-09T06:19:57",
            "upload_time_iso_8601": "2023-08-09T06:19:57.878976Z",
            "url": "https://files.pythonhosted.org/packages/15/89/15a70016355388548e91ce6bbdc2bdc6900eb271d24c362ed8243d2d8aaa/pyrepscan-0.12.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-09 06:18:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "intsights",
    "github_project": "pyrepscan",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyrepscan"
}
        
Elapsed time: 0.09850s