zeekscript


Namezeekscript JSON
Version 1.2.8 PyPI version JSON
download
home_pagehttps://github.com/zeek/zeekscript
SummaryA Zeek script formatter and analyzer
upload_time2023-12-01 10:39:50
maintainerThe Zeek Project
docs_urlNone
author
requires_python>3.7.0
license
keywords zeek scripts language formatter formatting indenter indenting parsing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # A toolchain to parse, analyze, and format Zeek scripts

[![Build and test](https://github.com/zeek/zeekscript/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/zeek/zeekscript/actions/workflows/build_wheels.yml)

`zeekscript` is a Python package that provides tooling to operate on [Zeek](https://zeek.org)
scripts. `zeekscript` comes with command line tools that make common tasks accessible,
but its functionality is just an `import zeekscript` away in your own Python tools.

`zeekscript` is powered by [Tree-Sitter](https://tree-sitter.github.io/tree-sitter/),
its [Python bindings](https://github.com/tree-sitter/py-tree-sitter), and our
[tree-sitter-zeek](https://github.com/zeek/tree-sitter-zeek) grammar.

## Supported platforms and Python versions

`zeekscript` supports Python 3.7+ on Linux, MacOS, and Windows. We recommend
CPython. PyPy looks prone to crashing on Windows and MacOS, and we're not
currently building PyPy wheels on those platforms. (We've not investigated PyPy
in depth and feedback is welcome.)

## Installation

To install our ready-made Python wheels, say:

```console
pip install zeekscript
```

For a full list of available builds, you can check out the
[PyPI downloads](https://pypi.org/project/zeekscript/#files) or take a look at our
[CI build matrix](https://github.com/zeek/zeekscript/blob/main/.github/workflows/build_wheels.yml).

The `zeekscript` package includes native code (the compiled [tree-sitter Zeek
grammar](https://github.com/zeek/tree-sitter-zeek)). We strive to provide wheels
for popular platforms and Python versions. In case your setup isn't covered, the
installation process will build the package locally on your system, for which
some dependencies need to be available. Read on for details, and feel free to
file a ticket detailing your setup.

### Building from source

If our build matrix doesn't cover your platform and Python version, or if you'd
simply like to build and install the `zeekscript` package yourself, you need to
provide two dependencies:

* The [tree-sitter Python bindings](https://pypi.org/project/tree-sitter/),
  available via

  ```console
  pip install tree_sitter
  ```

* A C compiler, such as `gcc` or `clang`.

To obtain the sources, please clone this repository. **Note**: make sure to
clone recursively (`git clone --recurse-submodules`), since this pulls in the
needed Zeek grammar. We don't provide source packages on Github, but all
releases are tagged in `git`.

For installation from local sources, say:

```console
pip install .
```

The `zeekscript` package doesn't implement the Zeek grammar compilation itself,
it outsources it to the `tree-sitter` Python bindings, which provide this
ability directly from Python. `zeekscript` merely initiates compilation during
the package build. See our
[setup.py](https://github.com/zeek/zeekscript/blob/main/setup.py) for details.

### Testing

The package comes with a testsuite. To run it, say

```console
make
```

from the toplevel. For details on the tests, take a look at the `tests`
directory.

## Usage

### zeek-format

Most significantly, the package includes `zeek-format`, a tool that formats Zeek
scripts. Our philosophy is similar to `gofmt` and the opposite of
`clang-format`: there is only one way to layout Zeek scripts, and this tool
provides it. Accordingly, it features zero options for tweaking the formatting:

```console
$ zeek-format --help
usage: zeek-format [-h] [--version] [--inplace] [--recursive] [FILES ...]

A Zeek script formatter

positional arguments:
  FILES            Zeek script(s) to process. Use "-" to specify stdin as a filename. Omitting filenames entirely implies
                   reading from stdin.

options:
  -h, --help       show this help message and exit
  --version, -v    show version and exit
  --inplace, -i    change provided files instead of writing to stdout
  --recursive, -r  process *.zeek files recursively when provided directories instead of files. Requires --inplace.
```

Parsing errors are not fatal, and `zeek-format` does its best to continue
formatting in the presence of errors. When it encounters parser errors,
`zeek-format` exits with a non-zero exit code and reports the trouble it
encountered to stderr.

```console
$ echo 'event  foo( a:count ) {print  "hi" ; }' | zeek-format
event foo(a: count)
        {
        print "hi";
        }
```

To format entire directory trees, combine `--inplace` and `--recursive`, and
point it at a directory:

```console
$ cd zeek
$ zeek-format -ir scripts
430 files processed successfully
```

### zeek-script

The `zeek-script` command is the Swiss army knife in the toolbox: it provides
access to a range of script-processing tools (including formatting) via
subcommands. (Okay, so far "range" == two, but expect that to grow in the future.)

```console
$ zeek-script --help
usage: zeek-script [-h] [--version] {format,parse} ...

A Zeek script analyzer

options:
  -h, --help      show this help message and exit
  --version, -v   show version and exit

commands:
  {format,parse}  See `zeek-script <command> -h` for per-command usage info.
    format        Format/indent Zeek scripts
    parse         Show Zeek script parse tree with parser metadata.
```

The `parse` command renders its script input as a parse tree. It resembles
`tree-sitter parse`, but shows more context about the relevant snippets of
content, including parsing errors.

```console
$ echo 'event zeek_init() { }' | zeek-script parse
source_file (0.0,1.0) 'event zeek_init() { }\n'
    decl (0.0,0.21) 'event zeek_init() { }'
        func_decl (0.0,0.21) 'event zeek_init() { }'
            func_hdr (0.0,0.17) 'event zeek_init()'
                event (0.0,0.17) 'event zeek_init()'
                    event (0.0,0.5)
                    id (0.6,0.15) 'zeek_init'
                    func_params (0.15,0.17) '()'
                        ( (0.15,0.16)
                        ) (0.16,0.17)
            func_body (0.18,0.21) '{ }'
                { (0.18,0.19)
                } (0.20,0.21)
```

Here's a syntax error:

```console
$ echo 'event zeek_init)() { }' | zeek-script parse
source_file (0.0,1.0) [error] 'event zeek_init)() { }\n'
    decl (0.0,0.22) [error] 'event zeek_init)() { }'
        func_decl (0.0,0.22) [error] 'event zeek_init)() { }'
            func_hdr (0.0,0.18) [error] 'event zeek_init)()'
                event (0.0,0.18) [error] 'event zeek_init)()'
                    event (0.0,0.5)
                    id (0.6,0.15) 'zeek_init'
                    ERROR (0.15,0.16) [error] ')'
                        ) (0.15,0.16)
                    func_params (0.16,0.18) '()'
                        ( (0.16,0.17)
                        ) (0.17,0.18)
            func_body (0.19,0.22) '{ }'
                { (0.19,0.20)
                } (0.21,0.22)
parse tree has problems: cannot parse line 0, col 15: ")"
```

See `zeek-script parse --help` for more information.

## Autocomplete

`zeekscript` features command-line auto-completion for users of
[argcomplete](https://github.com/kislyuk/argcomplete).

## Integration into text editors

You can integrate `zeekscript` into any editor that supports the execution of
shell commands on the currently edited files. The relevant `zeekscript` commands
support reading from stdin or filename.

### Emacs

We offer an [Emacs mode](https://github.com/zeek/emacs-zeek-mode) with support
for script formatting and parse tree inspection via keyboard shortcuts.

### vim

The following snippet hooks up `zeek-format` to format the current script:

```vim
function RunZeekScript()
    " Create a new undo block for reverting formatting without changing cursor
    " position. https://github.com/rhysd/vim-clang-format/pull/55
    silent execute "noautocmd normal! ii\<esc>\"_x"
    let l:save = winsaveview()
    execute "%!zeek-format"
    call winrestview(l:save)
endfunction

nnoremap <silent><buffer> <leader>cf :call RunZeekScript()<CR>
```

## Using `zeek-format` with [pre-commit](https://pre-commit.com/)

Add this to your [`.pre-commit-config.yaml`](https://pre-commit.com/#adding-pre-commit-plugins-to-your-project):

```yaml
- repo: https://github.com/zeek/zeekscript
  rev: ''  # Use the SHA/tag you want to point at.
  hooks:
  - id: zeek-format
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zeek/zeekscript",
    "name": "zeekscript",
    "maintainer": "The Zeek Project",
    "docs_url": null,
    "requires_python": ">3.7.0",
    "maintainer_email": "info@zeek.org",
    "keywords": "zeek scripts language formatter formatting indenter indenting parsing",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/5d/bb/3ddd139285a60eb8fa42edb346677299cc0f5f2227f07067dd3fc76fda1c/zeekscript-1.2.8.tar.gz",
    "platform": null,
    "description": "# A toolchain to parse, analyze, and format Zeek scripts\n\n[![Build and test](https://github.com/zeek/zeekscript/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/zeek/zeekscript/actions/workflows/build_wheels.yml)\n\n`zeekscript` is a Python package that provides tooling to operate on [Zeek](https://zeek.org)\nscripts. `zeekscript` comes with command line tools that make common tasks accessible,\nbut its functionality is just an `import zeekscript` away in your own Python tools.\n\n`zeekscript` is powered by [Tree-Sitter](https://tree-sitter.github.io/tree-sitter/),\nits [Python bindings](https://github.com/tree-sitter/py-tree-sitter), and our\n[tree-sitter-zeek](https://github.com/zeek/tree-sitter-zeek) grammar.\n\n## Supported platforms and Python versions\n\n`zeekscript` supports Python 3.7+ on Linux, MacOS, and Windows. We recommend\nCPython. PyPy looks prone to crashing on Windows and MacOS, and we're not\ncurrently building PyPy wheels on those platforms. (We've not investigated PyPy\nin depth and feedback is welcome.)\n\n## Installation\n\nTo install our ready-made Python wheels, say:\n\n```console\npip install zeekscript\n```\n\nFor a full list of available builds, you can check out the\n[PyPI downloads](https://pypi.org/project/zeekscript/#files) or take a look at our\n[CI build matrix](https://github.com/zeek/zeekscript/blob/main/.github/workflows/build_wheels.yml).\n\nThe `zeekscript` package includes native code (the compiled [tree-sitter Zeek\ngrammar](https://github.com/zeek/tree-sitter-zeek)). We strive to provide wheels\nfor popular platforms and Python versions. In case your setup isn't covered, the\ninstallation process will build the package locally on your system, for which\nsome dependencies need to be available. Read on for details, and feel free to\nfile a ticket detailing your setup.\n\n### Building from source\n\nIf our build matrix doesn't cover your platform and Python version, or if you'd\nsimply like to build and install the `zeekscript` package yourself, you need to\nprovide two dependencies:\n\n* The [tree-sitter Python bindings](https://pypi.org/project/tree-sitter/),\n  available via\n\n  ```console\n  pip install tree_sitter\n  ```\n\n* A C compiler, such as `gcc` or `clang`.\n\nTo obtain the sources, please clone this repository. **Note**: make sure to\nclone recursively (`git clone --recurse-submodules`), since this pulls in the\nneeded Zeek grammar. We don't provide source packages on Github, but all\nreleases are tagged in `git`.\n\nFor installation from local sources, say:\n\n```console\npip install .\n```\n\nThe `zeekscript` package doesn't implement the Zeek grammar compilation itself,\nit outsources it to the `tree-sitter` Python bindings, which provide this\nability directly from Python. `zeekscript` merely initiates compilation during\nthe package build. See our\n[setup.py](https://github.com/zeek/zeekscript/blob/main/setup.py) for details.\n\n### Testing\n\nThe package comes with a testsuite. To run it, say\n\n```console\nmake\n```\n\nfrom the toplevel. For details on the tests, take a look at the `tests`\ndirectory.\n\n## Usage\n\n### zeek-format\n\nMost significantly, the package includes `zeek-format`, a tool that formats Zeek\nscripts. Our philosophy is similar to `gofmt` and the opposite of\n`clang-format`: there is only one way to layout Zeek scripts, and this tool\nprovides it. Accordingly, it features zero options for tweaking the formatting:\n\n```console\n$ zeek-format --help\nusage: zeek-format [-h] [--version] [--inplace] [--recursive] [FILES ...]\n\nA Zeek script formatter\n\npositional arguments:\n  FILES            Zeek script(s) to process. Use \"-\" to specify stdin as a filename. Omitting filenames entirely implies\n                   reading from stdin.\n\noptions:\n  -h, --help       show this help message and exit\n  --version, -v    show version and exit\n  --inplace, -i    change provided files instead of writing to stdout\n  --recursive, -r  process *.zeek files recursively when provided directories instead of files. Requires --inplace.\n```\n\nParsing errors are not fatal, and `zeek-format` does its best to continue\nformatting in the presence of errors. When it encounters parser errors,\n`zeek-format` exits with a non-zero exit code and reports the trouble it\nencountered to stderr.\n\n```console\n$ echo 'event  foo( a:count ) {print  \"hi\" ; }' | zeek-format\nevent foo(a: count)\n        {\n        print \"hi\";\n        }\n```\n\nTo format entire directory trees, combine `--inplace` and `--recursive`, and\npoint it at a directory:\n\n```console\n$ cd zeek\n$ zeek-format -ir scripts\n430 files processed successfully\n```\n\n### zeek-script\n\nThe `zeek-script` command is the Swiss army knife in the toolbox: it provides\naccess to a range of script-processing tools (including formatting) via\nsubcommands. (Okay, so far \"range\" == two, but expect that to grow in the future.)\n\n```console\n$ zeek-script --help\nusage: zeek-script [-h] [--version] {format,parse} ...\n\nA Zeek script analyzer\n\noptions:\n  -h, --help      show this help message and exit\n  --version, -v   show version and exit\n\ncommands:\n  {format,parse}  See `zeek-script <command> -h` for per-command usage info.\n    format        Format/indent Zeek scripts\n    parse         Show Zeek script parse tree with parser metadata.\n```\n\nThe `parse` command renders its script input as a parse tree. It resembles\n`tree-sitter parse`, but shows more context about the relevant snippets of\ncontent, including parsing errors.\n\n```console\n$ echo 'event zeek_init() { }' | zeek-script parse\nsource_file (0.0,1.0) 'event zeek_init() { }\\n'\n    decl (0.0,0.21) 'event zeek_init() { }'\n        func_decl (0.0,0.21) 'event zeek_init() { }'\n            func_hdr (0.0,0.17) 'event zeek_init()'\n                event (0.0,0.17) 'event zeek_init()'\n                    event (0.0,0.5)\n                    id (0.6,0.15) 'zeek_init'\n                    func_params (0.15,0.17) '()'\n                        ( (0.15,0.16)\n                        ) (0.16,0.17)\n            func_body (0.18,0.21) '{ }'\n                { (0.18,0.19)\n                } (0.20,0.21)\n```\n\nHere's a syntax error:\n\n```console\n$ echo 'event zeek_init)() { }' | zeek-script parse\nsource_file (0.0,1.0) [error] 'event zeek_init)() { }\\n'\n    decl (0.0,0.22) [error] 'event zeek_init)() { }'\n        func_decl (0.0,0.22) [error] 'event zeek_init)() { }'\n            func_hdr (0.0,0.18) [error] 'event zeek_init)()'\n                event (0.0,0.18) [error] 'event zeek_init)()'\n                    event (0.0,0.5)\n                    id (0.6,0.15) 'zeek_init'\n                    ERROR (0.15,0.16) [error] ')'\n                        ) (0.15,0.16)\n                    func_params (0.16,0.18) '()'\n                        ( (0.16,0.17)\n                        ) (0.17,0.18)\n            func_body (0.19,0.22) '{ }'\n                { (0.19,0.20)\n                } (0.21,0.22)\nparse tree has problems: cannot parse line 0, col 15: \")\"\n```\n\nSee `zeek-script parse --help` for more information.\n\n## Autocomplete\n\n`zeekscript` features command-line auto-completion for users of\n[argcomplete](https://github.com/kislyuk/argcomplete).\n\n## Integration into text editors\n\nYou can integrate `zeekscript` into any editor that supports the execution of\nshell commands on the currently edited files. The relevant `zeekscript` commands\nsupport reading from stdin or filename.\n\n### Emacs\n\nWe offer an [Emacs mode](https://github.com/zeek/emacs-zeek-mode) with support\nfor script formatting and parse tree inspection via keyboard shortcuts.\n\n### vim\n\nThe following snippet hooks up `zeek-format` to format the current script:\n\n```vim\nfunction RunZeekScript()\n    \" Create a new undo block for reverting formatting without changing cursor\n    \" position. https://github.com/rhysd/vim-clang-format/pull/55\n    silent execute \"noautocmd normal! ii\\<esc>\\\"_x\"\n    let l:save = winsaveview()\n    execute \"%!zeek-format\"\n    call winrestview(l:save)\nendfunction\n\nnnoremap <silent><buffer> <leader>cf :call RunZeekScript()<CR>\n```\n\n## Using `zeek-format` with [pre-commit](https://pre-commit.com/)\n\nAdd this to your [`.pre-commit-config.yaml`](https://pre-commit.com/#adding-pre-commit-plugins-to-your-project):\n\n```yaml\n- repo: https://github.com/zeek/zeekscript\n  rev: ''  # Use the SHA/tag you want to point at.\n  hooks:\n  - id: zeek-format\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A Zeek script formatter and analyzer",
    "version": "1.2.8",
    "project_urls": {
        "Homepage": "https://github.com/zeek/zeekscript"
    },
    "split_keywords": [
        "zeek",
        "scripts",
        "language",
        "formatter",
        "formatting",
        "indenter",
        "indenting",
        "parsing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "453bd139e49ddcc45c115eca893388090d9970e78c8f87ca500e6ca5830d8d44",
                "md5": "ebd97e4b327bcacae5aa3aa4663fc751",
                "sha256": "86216f412875f0fe651a98f6cf652f267c1e39a66aec7c5641cc9a6155636216"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebd97e4b327bcacae5aa3aa4663fc751",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">3.7.0",
            "size": 108854,
            "upload_time": "2023-12-01T10:38:34",
            "upload_time_iso_8601": "2023-12-01T10:38:34.437149Z",
            "url": "https://files.pythonhosted.org/packages/45/3b/d139e49ddcc45c115eca893388090d9970e78c8f87ca500e6ca5830d8d44/zeekscript-1.2.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d620710d555b36246828824e0aadca0e5d1b69f2eee769bd9a4f9a67a50df6aa",
                "md5": "023745bdbbe282b466a9b6515fd14b01",
                "sha256": "d07dcef5e784133849d94b25af951937fb4a405ceca6bf4ecf3cdd7b8ba02c4e"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "023745bdbbe282b466a9b6515fd14b01",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">3.7.0",
            "size": 118544,
            "upload_time": "2023-12-01T10:38:36",
            "upload_time_iso_8601": "2023-12-01T10:38:36.397158Z",
            "url": "https://files.pythonhosted.org/packages/d6/20/710d555b36246828824e0aadca0e5d1b69f2eee769bd9a4f9a67a50df6aa/zeekscript-1.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deb0257157178b919c39c7e7f03faf963e7021de8cb9b7ad4e96714cb8cdc588",
                "md5": "646aa73b117bcd3045ab1dc6cf9ab8ff",
                "sha256": "9954301af0bea64457f91e165458eba66be00e650bbf90193ed5c710ae99f76b"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "646aa73b117bcd3045ab1dc6cf9ab8ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">3.7.0",
            "size": 110354,
            "upload_time": "2023-12-01T10:38:37",
            "upload_time_iso_8601": "2023-12-01T10:38:37.889304Z",
            "url": "https://files.pythonhosted.org/packages/de/b0/257157178b919c39c7e7f03faf963e7021de8cb9b7ad4e96714cb8cdc588/zeekscript-1.2.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22a78bcfa286eb1d1ef4d5a024626de7f5e3e700d1844169844c9cbacb9b988b",
                "md5": "e6c5c7e75b1f3e61e6095467163546c5",
                "sha256": "6c77e0ecb479dad7ff1adc5ff075dbc61c1e913e9afddd2cbf769620b69511c3"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e6c5c7e75b1f3e61e6095467163546c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">3.7.0",
            "size": 118803,
            "upload_time": "2023-12-01T10:38:39",
            "upload_time_iso_8601": "2023-12-01T10:38:39.488725Z",
            "url": "https://files.pythonhosted.org/packages/22/a7/8bcfa286eb1d1ef4d5a024626de7f5e3e700d1844169844c9cbacb9b988b/zeekscript-1.2.8-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e840724c7fd879fb2957143724b0a28de91e7270060fd323ac540c060c4c3624",
                "md5": "563b0ad6bf346a6352e03679fc86ba2c",
                "sha256": "ef384286503f6cedc62b230a9d5b7d70b949cde7086b1c575725e1e7c645ef74"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "563b0ad6bf346a6352e03679fc86ba2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">3.7.0",
            "size": 110636,
            "upload_time": "2023-12-01T10:38:41",
            "upload_time_iso_8601": "2023-12-01T10:38:41.163923Z",
            "url": "https://files.pythonhosted.org/packages/e8/40/724c7fd879fb2957143724b0a28de91e7270060fd323ac540c060c4c3624/zeekscript-1.2.8-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2c940b6f1c21770968a2ee5d0031f9a65320f06e4b99a134353ac27151333ea",
                "md5": "2de56a8fac0fd0db6e198bcb517febf2",
                "sha256": "f2d84b72fd0948f6b3f520c9f6916c6bd1d1d61ff6e5a5b8b92ca06db29a75c4"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "2de56a8fac0fd0db6e198bcb517febf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">3.7.0",
            "size": 117521,
            "upload_time": "2023-12-01T10:38:42",
            "upload_time_iso_8601": "2023-12-01T10:38:42.833077Z",
            "url": "https://files.pythonhosted.org/packages/b2/c9/40b6f1c21770968a2ee5d0031f9a65320f06e4b99a134353ac27151333ea/zeekscript-1.2.8-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a22ba420efc4843a5a62ddf34cd36912faf0251edb1967e4050b754fe1c326d",
                "md5": "03b04c666f8ad724b1f39c435fa8c4c4",
                "sha256": "480e9950d3d001291ba322e722eed256dfefa1465219db8bcdb16772c88d5b34"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "03b04c666f8ad724b1f39c435fa8c4c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">3.7.0",
            "size": 113132,
            "upload_time": "2023-12-01T10:38:43",
            "upload_time_iso_8601": "2023-12-01T10:38:43.923631Z",
            "url": "https://files.pythonhosted.org/packages/2a/22/ba420efc4843a5a62ddf34cd36912faf0251edb1967e4050b754fe1c326d/zeekscript-1.2.8-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49c8632ae9891cc3c13b6f5be01760c8d50973c99bb6cb9be5975153d4fb160d",
                "md5": "7c7a268ea66890eba518a71bd06a1dfa",
                "sha256": "89f381b6134d170a955b7e29ac4addd463533e708d27451123ed74cba392169d"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c7a268ea66890eba518a71bd06a1dfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">3.7.0",
            "size": 108855,
            "upload_time": "2023-12-01T10:38:45",
            "upload_time_iso_8601": "2023-12-01T10:38:45.122623Z",
            "url": "https://files.pythonhosted.org/packages/49/c8/632ae9891cc3c13b6f5be01760c8d50973c99bb6cb9be5975153d4fb160d/zeekscript-1.2.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "257e157af9d7e7fee600212af29f1a808237cc67cc540a232d9c9b7424316c68",
                "md5": "f554c49ca214f9fce752b358597fb0ec",
                "sha256": "df8e209676a9d7c126255197b0156fd3305c055d3f4658e1be87b648269196b2"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f554c49ca214f9fce752b358597fb0ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">3.7.0",
            "size": 118545,
            "upload_time": "2023-12-01T10:38:46",
            "upload_time_iso_8601": "2023-12-01T10:38:46.186146Z",
            "url": "https://files.pythonhosted.org/packages/25/7e/157af9d7e7fee600212af29f1a808237cc67cc540a232d9c9b7424316c68/zeekscript-1.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2980a867d76ecdf755ba3a5df7e3d9e5cc92d1a481065326bd0908981404db73",
                "md5": "1cfd9df300780bdc0b829cf7608d2608",
                "sha256": "095635e3139134337b48acb5344f64b330c8adae827bce242332c321fc658ff4"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1cfd9df300780bdc0b829cf7608d2608",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">3.7.0",
            "size": 110354,
            "upload_time": "2023-12-01T10:38:47",
            "upload_time_iso_8601": "2023-12-01T10:38:47.376994Z",
            "url": "https://files.pythonhosted.org/packages/29/80/a867d76ecdf755ba3a5df7e3d9e5cc92d1a481065326bd0908981404db73/zeekscript-1.2.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbfb067e9a6b4e616df6fe2e619f3fa36924f78a23d806761988e1e5b8fe9462",
                "md5": "6910f8cf4b2833bfd40750031055764b",
                "sha256": "3d19b3900f47c54df218668f7401b49edcac823e2f6d7e6c5d54a901ed088ccf"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6910f8cf4b2833bfd40750031055764b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">3.7.0",
            "size": 118804,
            "upload_time": "2023-12-01T10:38:48",
            "upload_time_iso_8601": "2023-12-01T10:38:48.485031Z",
            "url": "https://files.pythonhosted.org/packages/bb/fb/067e9a6b4e616df6fe2e619f3fa36924f78a23d806761988e1e5b8fe9462/zeekscript-1.2.8-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa92048b130754f578e58e01005a5e15147a3903fec4c3739d66d488592159c5",
                "md5": "add44a682c509b454ee65b5ec48581e8",
                "sha256": "724f76e57d5ccdb38ad63d6c6dca0ff384177cf29cac6606d61663b932ef507c"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "add44a682c509b454ee65b5ec48581e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">3.7.0",
            "size": 110637,
            "upload_time": "2023-12-01T10:38:50",
            "upload_time_iso_8601": "2023-12-01T10:38:50.093012Z",
            "url": "https://files.pythonhosted.org/packages/fa/92/048b130754f578e58e01005a5e15147a3903fec4c3739d66d488592159c5/zeekscript-1.2.8-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcf0a0798af93e61decba81373d76b392d320e2dc9d49587bed74750add499d2",
                "md5": "c18d82299183c270bd7b4f468dcc04e2",
                "sha256": "0125fbff25d9589891d22126fb428e8a480d2a1b1bf9da0e485f0d104079bc64"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "c18d82299183c270bd7b4f468dcc04e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">3.7.0",
            "size": 117520,
            "upload_time": "2023-12-01T10:38:51",
            "upload_time_iso_8601": "2023-12-01T10:38:51.829110Z",
            "url": "https://files.pythonhosted.org/packages/dc/f0/a0798af93e61decba81373d76b392d320e2dc9d49587bed74750add499d2/zeekscript-1.2.8-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "249b3a2228b2a22b9d7d2e4bb29d91065bfca071000b58194198ee8ae8ab8054",
                "md5": "42687f17c83fa8056776d161aaac2462",
                "sha256": "38674450a6de84d62da127291bc3638973b6fb2e1270e82c847c7a656c9a026a"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "42687f17c83fa8056776d161aaac2462",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">3.7.0",
            "size": 113130,
            "upload_time": "2023-12-01T10:38:53",
            "upload_time_iso_8601": "2023-12-01T10:38:53.313398Z",
            "url": "https://files.pythonhosted.org/packages/24/9b/3a2228b2a22b9d7d2e4bb29d91065bfca071000b58194198ee8ae8ab8054/zeekscript-1.2.8-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee193edb7ad0af6d6d11cb77e7aab1ac6a27f2b715f6cae46aa9a5233ac35ae2",
                "md5": "2660ff9a58e799b0c18318a4e5c402a1",
                "sha256": "b5378f2c94195a618a1a6c8aae970f45579a59f5806ec5e1e62441e8e6267c06"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2660ff9a58e799b0c18318a4e5c402a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">3.7.0",
            "size": 108857,
            "upload_time": "2023-12-01T10:38:54",
            "upload_time_iso_8601": "2023-12-01T10:38:54.355274Z",
            "url": "https://files.pythonhosted.org/packages/ee/19/3edb7ad0af6d6d11cb77e7aab1ac6a27f2b715f6cae46aa9a5233ac35ae2/zeekscript-1.2.8-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f08c2399e96db6698a1f00edf728d52f5fa547ca742b0a555f064c8bfe4e519",
                "md5": "1f337a975f0733cb2973404559c619a9",
                "sha256": "e88d1783dfe06f3a90e55c4508d5bedfc1146a2b9be4fa4378514a6a76c31726"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1f337a975f0733cb2973404559c619a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">3.7.0",
            "size": 118544,
            "upload_time": "2023-12-01T10:38:55",
            "upload_time_iso_8601": "2023-12-01T10:38:55.787155Z",
            "url": "https://files.pythonhosted.org/packages/0f/08/c2399e96db6698a1f00edf728d52f5fa547ca742b0a555f064c8bfe4e519/zeekscript-1.2.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b072d3f744d1c29bfaf33e58c74113fa3b24d31eaac6509d66f612b15ed28db8",
                "md5": "9cf5aa906ff0266e89ae4dfd3d6fe189",
                "sha256": "dcb39073c4209d68851bd6d3258aecc5cc4d67aeb4ea9d3a2250c6f49e1f7909"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cf5aa906ff0266e89ae4dfd3d6fe189",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">3.7.0",
            "size": 110353,
            "upload_time": "2023-12-01T10:38:57",
            "upload_time_iso_8601": "2023-12-01T10:38:57.275922Z",
            "url": "https://files.pythonhosted.org/packages/b0/72/d3f744d1c29bfaf33e58c74113fa3b24d31eaac6509d66f612b15ed28db8/zeekscript-1.2.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02a980b2a87b81c05e6231047418846ff339a6fe6f9b7e7a1c5ae651b0fce505",
                "md5": "42593c3057fc0c049361b6a38a60dc33",
                "sha256": "a6ea7d560b38d8887ac1e1c83e120af8b17f718457487a6564c228892374e0bb"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "42593c3057fc0c049361b6a38a60dc33",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">3.7.0",
            "size": 118802,
            "upload_time": "2023-12-01T10:38:58",
            "upload_time_iso_8601": "2023-12-01T10:38:58.822372Z",
            "url": "https://files.pythonhosted.org/packages/02/a9/80b2a87b81c05e6231047418846ff339a6fe6f9b7e7a1c5ae651b0fce505/zeekscript-1.2.8-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c8d0ecf85b240d94756ad8bdcb8cd64655c00bf1eb318277e4757c9d794cf58",
                "md5": "4318763ef299181917d5deea746012d8",
                "sha256": "f8ac1f95f550e3318e056a0ea43dbe06d3db66be50c3b7a824cd6c20b9e9d454"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4318763ef299181917d5deea746012d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">3.7.0",
            "size": 110637,
            "upload_time": "2023-12-01T10:39:00",
            "upload_time_iso_8601": "2023-12-01T10:39:00.768555Z",
            "url": "https://files.pythonhosted.org/packages/1c/8d/0ecf85b240d94756ad8bdcb8cd64655c00bf1eb318277e4757c9d794cf58/zeekscript-1.2.8-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a1acdd3cc0d80899b2a93342a94258faeac2f1a22830a50e837e7c41baf6966",
                "md5": "637486e1d32de6628bf6431d6130830c",
                "sha256": "a00aa7c45a0c08c51ebc5163495aae449bfc40042c819208ba419ef0462bf90f"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "637486e1d32de6628bf6431d6130830c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">3.7.0",
            "size": 117520,
            "upload_time": "2023-12-01T10:39:01",
            "upload_time_iso_8601": "2023-12-01T10:39:01.869566Z",
            "url": "https://files.pythonhosted.org/packages/1a/1a/cdd3cc0d80899b2a93342a94258faeac2f1a22830a50e837e7c41baf6966/zeekscript-1.2.8-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24f5871c8fe0e2297c3b879d1583166a5ce593a2f7d13e4ea0a621a6f4405b09",
                "md5": "81c92ed7d31cb2cd55f2f3d0fe056fad",
                "sha256": "74ffb6035fc4293fc3943794bcf1bd29dfad2cdf7aeb53371ee07413f4e26f81"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "81c92ed7d31cb2cd55f2f3d0fe056fad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">3.7.0",
            "size": 113132,
            "upload_time": "2023-12-01T10:39:03",
            "upload_time_iso_8601": "2023-12-01T10:39:03.223464Z",
            "url": "https://files.pythonhosted.org/packages/24/f5/871c8fe0e2297c3b879d1583166a5ce593a2f7d13e4ea0a621a6f4405b09/zeekscript-1.2.8-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dcd8a172a6541dc9d01bcf7f1f41184cf8af3770595ccfb800f8d06e5f0a334",
                "md5": "46517d33c2cd017c3556a2855d426067",
                "sha256": "fe9bdcc11301c2108b129522fcece1273f32b17a9e9f15ee2db863a4ff11cb18"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46517d33c2cd017c3556a2855d426067",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">3.7.0",
            "size": 108859,
            "upload_time": "2023-12-01T10:39:04",
            "upload_time_iso_8601": "2023-12-01T10:39:04.549454Z",
            "url": "https://files.pythonhosted.org/packages/7d/cd/8a172a6541dc9d01bcf7f1f41184cf8af3770595ccfb800f8d06e5f0a334/zeekscript-1.2.8-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f71374a7132b29370d2ae76b2e4c529a7ba8d209f5f45960800b47af02dc12f",
                "md5": "05acbe0a58c9a8e831b6bc1c78b4e645",
                "sha256": "a59fbbd071c314540d8c32ce33cbfd95f323c25c363a36417479bac5bbae9dcc"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "05acbe0a58c9a8e831b6bc1c78b4e645",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">3.7.0",
            "size": 118545,
            "upload_time": "2023-12-01T10:39:05",
            "upload_time_iso_8601": "2023-12-01T10:39:05.737719Z",
            "url": "https://files.pythonhosted.org/packages/5f/71/374a7132b29370d2ae76b2e4c529a7ba8d209f5f45960800b47af02dc12f/zeekscript-1.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "699da024419ed3ea0b08d5b131706e1c8db5da078caddfa70464bd4aa44dd2cf",
                "md5": "6c42320bfaa08b290ca0f42f2b8cbfe1",
                "sha256": "024dfb6c33bfbed018e5f992c1b97e5fdc66430d14232f79596083aa13490b6a"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c42320bfaa08b290ca0f42f2b8cbfe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">3.7.0",
            "size": 110353,
            "upload_time": "2023-12-01T10:39:06",
            "upload_time_iso_8601": "2023-12-01T10:39:06.770159Z",
            "url": "https://files.pythonhosted.org/packages/69/9d/a024419ed3ea0b08d5b131706e1c8db5da078caddfa70464bd4aa44dd2cf/zeekscript-1.2.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c85faad2a507a81e5db32177a5ac9414b2d6d8c3c74d43ff1c15e1af958b0436",
                "md5": "2cee5608e4c84626181ccd7fedd33d8a",
                "sha256": "7d748afed8b8abd89ef206c6632254b33cefb6578ea6f79927462ae0332fa6bf"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2cee5608e4c84626181ccd7fedd33d8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">3.7.0",
            "size": 118806,
            "upload_time": "2023-12-01T10:39:07",
            "upload_time_iso_8601": "2023-12-01T10:39:07.857000Z",
            "url": "https://files.pythonhosted.org/packages/c8/5f/aad2a507a81e5db32177a5ac9414b2d6d8c3c74d43ff1c15e1af958b0436/zeekscript-1.2.8-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2c621b1ded5461f3195c62d120beaef7d76a313c6ea99cb55b043519b8a66bc",
                "md5": "6274aae1727d8db68ddb9f682b347e8a",
                "sha256": "0092041eaab5436e29a41b0b2b24de1532f11967c93375d60aa8e2f2c0dc6988"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6274aae1727d8db68ddb9f682b347e8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">3.7.0",
            "size": 110637,
            "upload_time": "2023-12-01T10:39:09",
            "upload_time_iso_8601": "2023-12-01T10:39:09.286908Z",
            "url": "https://files.pythonhosted.org/packages/f2/c6/21b1ded5461f3195c62d120beaef7d76a313c6ea99cb55b043519b8a66bc/zeekscript-1.2.8-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0b9a1d92d204c31e1a7c1eb8e5f9c06ce5e40703b4d574d64769f6bcf6bb993",
                "md5": "073ed533b0ada37afa0ce1db96b9c8c8",
                "sha256": "0a678dd68b5a0360ef361b12d320b8ee1c33afe3119ed4835f04724a8a6e423d"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "073ed533b0ada37afa0ce1db96b9c8c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">3.7.0",
            "size": 117521,
            "upload_time": "2023-12-01T10:39:12",
            "upload_time_iso_8601": "2023-12-01T10:39:12.110326Z",
            "url": "https://files.pythonhosted.org/packages/e0/b9/a1d92d204c31e1a7c1eb8e5f9c06ce5e40703b4d574d64769f6bcf6bb993/zeekscript-1.2.8-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3ebe6c908580b38a26dc09f6f884a57f4bfd05900413654cd86c5cf4efaf7f1",
                "md5": "4a3b6c02bb11ec1d0a682186edbd41e8",
                "sha256": "a14e567dbed022c5cd92333dbdd9841395f1f6deecb320e6e590b73f7d112c12"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4a3b6c02bb11ec1d0a682186edbd41e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">3.7.0",
            "size": 113131,
            "upload_time": "2023-12-01T10:39:20",
            "upload_time_iso_8601": "2023-12-01T10:39:20.196740Z",
            "url": "https://files.pythonhosted.org/packages/e3/eb/e6c908580b38a26dc09f6f884a57f4bfd05900413654cd86c5cf4efaf7f1/zeekscript-1.2.8-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cada25e3e1acba5773ef2a33518df3049721c99c400da7b6edab91853eac277",
                "md5": "99804f817a5d91c0c9bac999b8321e9c",
                "sha256": "7866a68a43d9c6e580e15d76149854801f196e745e7dd4f1085dc7e3da427a42"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99804f817a5d91c0c9bac999b8321e9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">3.7.0",
            "size": 108857,
            "upload_time": "2023-12-01T10:39:21",
            "upload_time_iso_8601": "2023-12-01T10:39:21.720633Z",
            "url": "https://files.pythonhosted.org/packages/3c/ad/a25e3e1acba5773ef2a33518df3049721c99c400da7b6edab91853eac277/zeekscript-1.2.8-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f763ac0c46cfb1b41b6f33b25d4aba8c51b7b6c3673f7737d50f9855c39885c1",
                "md5": "b8ec396c181f24f055626844dfb85654",
                "sha256": "e0a3b246b562000a20be57d7081175e96d31aaaa57369c2cd4c633f9272687bf"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b8ec396c181f24f055626844dfb85654",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">3.7.0",
            "size": 118545,
            "upload_time": "2023-12-01T10:39:22",
            "upload_time_iso_8601": "2023-12-01T10:39:22.865421Z",
            "url": "https://files.pythonhosted.org/packages/f7/63/ac0c46cfb1b41b6f33b25d4aba8c51b7b6c3673f7737d50f9855c39885c1/zeekscript-1.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d96bcf0d445e89b73ac63e1ffefa6c82b3016dbb8c9cbd37ddcffc5c86e2cd6f",
                "md5": "51778a0e71467e382f4efbcaf0da0f0b",
                "sha256": "661cdd872160f7d3d627b12f904dce3586739f18fec168e40e62c381866e8cfd"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51778a0e71467e382f4efbcaf0da0f0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">3.7.0",
            "size": 110353,
            "upload_time": "2023-12-01T10:39:24",
            "upload_time_iso_8601": "2023-12-01T10:39:24.327301Z",
            "url": "https://files.pythonhosted.org/packages/d9/6b/cf0d445e89b73ac63e1ffefa6c82b3016dbb8c9cbd37ddcffc5c86e2cd6f/zeekscript-1.2.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "637bf2558e56529a46522e05057044b6ed9910f3a4123076add272e644d75d26",
                "md5": "be3a9d1ca5df7598ca54917072a186b7",
                "sha256": "5ce6e76fc5eaa7ad587a507dc5c2384d0fbab13a0b587c51fe5d71a0920fc364"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "be3a9d1ca5df7598ca54917072a186b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">3.7.0",
            "size": 118803,
            "upload_time": "2023-12-01T10:39:31",
            "upload_time_iso_8601": "2023-12-01T10:39:31.983851Z",
            "url": "https://files.pythonhosted.org/packages/63/7b/f2558e56529a46522e05057044b6ed9910f3a4123076add272e644d75d26/zeekscript-1.2.8-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e6855f2ae6e9e06d2b3c107e2da3bbd3a23b05126d19ce764503125fdb63301",
                "md5": "5bea23035d90829ab9f63952f9991fac",
                "sha256": "d9de298a4f6c0bce252ffcd33b20f6aaf7cef1d703261a8a59413528962a8035"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bea23035d90829ab9f63952f9991fac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">3.7.0",
            "size": 110634,
            "upload_time": "2023-12-01T10:39:34",
            "upload_time_iso_8601": "2023-12-01T10:39:34.613250Z",
            "url": "https://files.pythonhosted.org/packages/6e/68/55f2ae6e9e06d2b3c107e2da3bbd3a23b05126d19ce764503125fdb63301/zeekscript-1.2.8-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfb1491c01b3d06f2fc7eb6d4abd71e574ccbf9984165b60e59d6d37e9565a22",
                "md5": "3f8612a6a6038ff434edd7b2dbccf6b6",
                "sha256": "68c0463977609006d2054fcf05a85cde9406e29328ad1d85788fb970af1f1b07"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "3f8612a6a6038ff434edd7b2dbccf6b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">3.7.0",
            "size": 117521,
            "upload_time": "2023-12-01T10:39:35",
            "upload_time_iso_8601": "2023-12-01T10:39:35.718423Z",
            "url": "https://files.pythonhosted.org/packages/bf/b1/491c01b3d06f2fc7eb6d4abd71e574ccbf9984165b60e59d6d37e9565a22/zeekscript-1.2.8-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ecdf76479282590c5793390b222440bf2b4f3661cdb158161eda55b8b14bf0d",
                "md5": "31b20abb855ea9d06f950c43ec9a9505",
                "sha256": "fc16b0c71a51360bba958c7dab7d263566e0638f1f293c37ed89f75bea31ddf2"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31b20abb855ea9d06f950c43ec9a9505",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">3.7.0",
            "size": 113128,
            "upload_time": "2023-12-01T10:39:38",
            "upload_time_iso_8601": "2023-12-01T10:39:38.850805Z",
            "url": "https://files.pythonhosted.org/packages/8e/cd/f76479282590c5793390b222440bf2b4f3661cdb158161eda55b8b14bf0d/zeekscript-1.2.8-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d600739728c8b3794038d27fdce5a0cbb8e530022e3e4d94e3ecf04dff72b7e4",
                "md5": "285e22c0d36d8a5ea656a3e723f77cc7",
                "sha256": "1e668451cb9eb1102e5f8697b309aebb5a05a34521af4e11f3b91682500f9e90"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "285e22c0d36d8a5ea656a3e723f77cc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">3.7.0",
            "size": 108857,
            "upload_time": "2023-12-01T10:39:41",
            "upload_time_iso_8601": "2023-12-01T10:39:41.848064Z",
            "url": "https://files.pythonhosted.org/packages/d6/00/739728c8b3794038d27fdce5a0cbb8e530022e3e4d94e3ecf04dff72b7e4/zeekscript-1.2.8-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e1eec0d2a381a67f2b3bcf85ff9aa66ca9cd1affcfa84fd2dc636ab0cca47ef",
                "md5": "e9c2369fded7bfad6f5025384b5d585a",
                "sha256": "bcd8255acd7a79406a2892df7be29cb854a3b529259791adae521ecd3ba68c4e"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e9c2369fded7bfad6f5025384b5d585a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">3.7.0",
            "size": 118545,
            "upload_time": "2023-12-01T10:39:42",
            "upload_time_iso_8601": "2023-12-01T10:39:42.960979Z",
            "url": "https://files.pythonhosted.org/packages/0e/1e/ec0d2a381a67f2b3bcf85ff9aa66ca9cd1affcfa84fd2dc636ab0cca47ef/zeekscript-1.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d83a29574ee35fba5ead4b60c3db3e00534ebf5eb73e42acbe8bcc1902000d4",
                "md5": "135e9f9850aad794a8b5166efb5fe296",
                "sha256": "6b41e8c7f00b2f9369260457afaccbe81fb000e6553160eb4680c517b91e4d87"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "135e9f9850aad794a8b5166efb5fe296",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">3.7.0",
            "size": 110352,
            "upload_time": "2023-12-01T10:39:44",
            "upload_time_iso_8601": "2023-12-01T10:39:44.386577Z",
            "url": "https://files.pythonhosted.org/packages/5d/83/a29574ee35fba5ead4b60c3db3e00534ebf5eb73e42acbe8bcc1902000d4/zeekscript-1.2.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9b3e482bf9dec983c9567ecc57b8730a4d4c9810f1662003cd63e7244526d58",
                "md5": "dc0050f87150bfab8f2debba5be4fce6",
                "sha256": "aa2f662b56ff168083eb4b16341aaaf1a3c4ce72cc30eb63733d654ba58b748e"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "dc0050f87150bfab8f2debba5be4fce6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">3.7.0",
            "size": 118802,
            "upload_time": "2023-12-01T10:39:45",
            "upload_time_iso_8601": "2023-12-01T10:39:45.628244Z",
            "url": "https://files.pythonhosted.org/packages/c9/b3/e482bf9dec983c9567ecc57b8730a4d4c9810f1662003cd63e7244526d58/zeekscript-1.2.8-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4c1d7327103995dc4d5991917694d3d3a15cc78c86ed19a964fe0991b61f8ca",
                "md5": "c612ab6e812f853688db94dd448c0be9",
                "sha256": "a0cfa4c506c6e612006e7b88e534f8cd4be325be294e33fb4ade007422f72df4"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c612ab6e812f853688db94dd448c0be9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">3.7.0",
            "size": 110633,
            "upload_time": "2023-12-01T10:39:47",
            "upload_time_iso_8601": "2023-12-01T10:39:47.219695Z",
            "url": "https://files.pythonhosted.org/packages/e4/c1/d7327103995dc4d5991917694d3d3a15cc78c86ed19a964fe0991b61f8ca/zeekscript-1.2.8-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41149cc316a8d47dcf259a01c3710fc6ab15a7dde73cd4c5fcf251b1b5e963b6",
                "md5": "e42807f33dabf2d2c0a8c40293383f1d",
                "sha256": "456e0f09ece6c5821a08a50baac0f8031a36a67ce24731b6e03460d2981956d8"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e42807f33dabf2d2c0a8c40293383f1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">3.7.0",
            "size": 117522,
            "upload_time": "2023-12-01T10:39:48",
            "upload_time_iso_8601": "2023-12-01T10:39:48.245636Z",
            "url": "https://files.pythonhosted.org/packages/41/14/9cc316a8d47dcf259a01c3710fc6ab15a7dde73cd4c5fcf251b1b5e963b6/zeekscript-1.2.8-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ee3ce01987da786e4b50298360461f38530b20cad9c242bc38cf962a8711142",
                "md5": "e738838229a50abf532e8b5f9299ab0b",
                "sha256": "0b225de8b8d428823c27e1d8a15ae946e18fc78b84301f24f4dcc23508e878a4"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e738838229a50abf532e8b5f9299ab0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">3.7.0",
            "size": 113130,
            "upload_time": "2023-12-01T10:39:49",
            "upload_time_iso_8601": "2023-12-01T10:39:49.295460Z",
            "url": "https://files.pythonhosted.org/packages/8e/e3/ce01987da786e4b50298360461f38530b20cad9c242bc38cf962a8711142/zeekscript-1.2.8-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dbb3ddd139285a60eb8fa42edb346677299cc0f5f2227f07067dd3fc76fda1c",
                "md5": "27fd9eaf18b672dc26ef842f0377d103",
                "sha256": "bf43c9634021c5ae24d35d40c2d5922005815efb770326eb777f368f54884fa3"
            },
            "downloads": -1,
            "filename": "zeekscript-1.2.8.tar.gz",
            "has_sig": false,
            "md5_digest": "27fd9eaf18b672dc26ef842f0377d103",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">3.7.0",
            "size": 225899,
            "upload_time": "2023-12-01T10:39:50",
            "upload_time_iso_8601": "2023-12-01T10:39:50.464928Z",
            "url": "https://files.pythonhosted.org/packages/5d/bb/3ddd139285a60eb8fa42edb346677299cc0f5f2227f07067dd3fc76fda1c/zeekscript-1.2.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-01 10:39:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zeek",
    "github_project": "zeekscript",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "zeekscript"
}
        
Elapsed time: 0.14685s