msticnb


Namemsticnb JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/microsoft/msticnb
SummaryMSTIC Notebooklets
upload_time2023-03-16 22:54:16
maintainer
docs_urlNone
authorIan Hellen
requires_python>=3.6
licenseMIT License
keywords security cybersecurity infosec jupyter notebook azure sentinel
VCS
bugtrack_url
requirements bokeh defusedxml ipython ipywidgets lxml Markdown msticpy numpy pandas python-dateutil tqdm python-whois tldextract
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # msticnb - Notebooklets for Jupyter Notebooks

Read the full documentation at [msticnb.readthedocs](https://msticnb.readthedocs.io/en/latest/)

msticnb is a companion package to
[msticpy](https://msticpy.readthedocs.io/en/latest/). It is designed to
be used in Jupyter notebooks by security operations engineers and analysts,
to give them quick access to
common notebook patterns such as retrieving summary information about
a host or IP address.

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-browser.png"
alt="Notebooklet browser showing list of notebooklets and some details of the user documentation for the selected notebooklet."
title="Notebooklet browser"
height="300" />

Each notebooklet is equivalent to multiple cells and many lines of code
in a traditional notebook. You can import and run a notebooklet with two
lines of code (or even 1 line, if you are impatient). Typically, the input
parameters to a notebooklet will be an identifier (e.g. a host name) and
a time range (over which to query data). Some notebooklets (primarily
packaged analytics) will take a pandas DataFrame as input.

```python
    host_summary = nb.nblts.azsent.host.HostSummary()
    host_sum_rslt = host_summary.run(
        value="Msticalertswin1", timespan=time_span
    )
```

You can create your own notebooklets and use them in the same framework
as the ones already in the package.

---

## Notebooklets

### What are notebooklets?

Notebooklets are collections of notebook cells that implement some
useful reusable sequence. They are extensions of, and build upon the
msticpy package and are design to streamline authoring of Jupyter
notebooks for CyberSec hunters and investigators. The goal of
notebooklets is to replace repetitive and lengthy boilerplate code in
notebooks for common operations.

Some examples are:

- Get a host summary for a named host (IP address, cloud registration
  information, recent alerts)
- Get account activity for an account (host and cloud logons and
  failures, summary of recent activity)
- Triage alerts with Threat Intel data (prioritize your alerts by
  correlating with Threat intel sources)

### Intended Audience

- Cyber security investigators and hunters using Jupyter notebooks for
  their work
- Security Ops Center (SOC) engineers/SecDevOps building reusable
  notebooks for SOC analysts

### Why did we create notebooklets?

- Notebook code can quickly become complex and lengthy:
  - obscures the information you are trying to display
  - can be intimidating to non-developers
- Code in notebook code cells is not easily re-useable:
  - You can copy and paste but how do you sync changes back to the
    original notebook?
  - Difficult to discover code snippets in notebooks
- Notebook code is often fragile:
  - Often not parameterized or modular
  - Code blocks are frequently dependent on global values assigned
    earlier
  - Output data is not in any standard format
  - Difficult to test

### Why aren\'t these part of msticpy?

- Msticpy aims to be platform-independent, whereas most if not all
  notebooklets assume a data schema that is specific to their data
  provider/SIEM.
- Msticpy is mostly for discrete functions such as data acquisition,
  analysis and visualization. Msticnb implements common SOC scenarios
  using this functionality.

### Traditional Notebook vs. one using a Notebooklets

The notebook on the left is using mostly inline code (occupying more
than 50% of the notebook). The one on the right is using a single
notebooklet with only 3 or 4 lines of code.

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/NBComparison.png"
alt="Comparing a standard notebook with one using a notebooklet. The standard notebook on the left can require large amounts of code. The notebook on the right uses just 3 lines of code."
title="With and without notebooklets" height="500" />


### Characteristics of Notebooklets

- They have one or small number of entry points/methods (typically a
  \"run\" method)
- They are parametrizable (e.g. you can supply hostname, IP Address,
  time range, etc.) and they may have runtime options to allow to skip
  unwanted processing or include optional processing
- They can query, process or visualize data (or any combination)
- They return a package of results that can be used later in the
  notebook
- The code can be imported into a notebook cell to be modified, if
  needed.

### Limitations

- They are normally specific to a data backend/SIEM since the data
  schema and layout varies between SIEM vendors.
- Notebooklet code layout is typically more complex than standard
  notebook code

---

## Using Notebooklets

For a more detailed explanation of these steps and illustration of other
features see the [Notebooklets
notebook](https://github.com/microsoft/msticnb/blob/master/docs/notebooks/NotebookletsDemo.ipynb)

### Install the Package

```bash
pip install msticnb
```

### Import and initialize

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-import.png"
alt="Python statement to import msticnb - 'import msticnb as nb'"
title="Importing" height="70" />

The init method loads data drivers and data providers relevant to the
the chosen data platform.

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-init.png"
alt="Python statement to initialize msticnb - nb.init('AzureSentinel')"
title="Initializing msticnb" height="70" />

### Pick a notebooklet to use

You can pick a notebooklet from the commandline, using autocompletion.
You can also search for a notebooklet using keywords and text from the
notebooklet name and documentation.

The easiest way is using the nb.browse() method. This lists all of the
available notebooklets and displays documentation, usage information and
sample code snippet for each.

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-browser.png"
alt="Notebooklet browser showing list of notebooklets and some details of the user documentation for the selected notebooklet."
title="Notebooklet browser" height="500" />

### Instantiate the notebooklet and execute \"run\"

Notebooklets usually have a single `run` method, which is the entry
point for the notebooklet. A notebooklet might have additional methods
to do further drill-down, data retrieval, visualization or other
operations once the run method has completed. Run typically requires
parameters such as a host or account identifier and a time range over
which to perform the operations.

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-run-cell.png"
alt="Python code cell showing the creation of a notebooklet instance from the WinHostevents notebooklet class. The notebooklet 'run' method is called with parameters supplying the name of the host and a time range."
title="Running a notebooklet" height="100" />

The notebooklet displays output directly to the notebook (although this
can be suppressed) - showing text, data tables and visualizations. This
data is all saved to a Results object. The data items are simple
properties of this results object, for example, DataFrames, plots, or
simple Python dictionaries. You can access these individually and you
can just display the results object using IPython display() or just
typing its name into and emtpy cell and running the cell.

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-run.png"
alt="The notebooklet displays output directly to th notebook. The output includes styled tables, text headings and descriptions and interactive timeline visualizations."
title="Running a notebooklet" height="600" />

### View extended help for a notebooklet

You can access detailed documentation from any notebooklet class or
instance using the show_help() method. This help includes a high-level
description and usage information (parameters, available methods,
options). It also describes the major output sections that will be
displayed and the the contents of the return results.

Note: the contents of this help are also displayed in the notebooklet browser
shown earlier.

<img src="https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-help.png"
alt="The notebooklet help displays a description, parameter and other usage information and available methods. It also describes the major output sections and the contents of the return results."
title="Notebooklet help" height="500" />

## Current Notebooklets

### AccountSummary

Retrieves account summary for the selected account.

Main operations:

- Searches for matches for the account name in Active Directory,
  Windows and Linux host logs.
- If one or more matches are found it will return a selection widget
  that you can use to pick the account.
- Selecting the account displays a summary of recent activity and
  retrieves any alerts and hunting bookmarks related to the account
- The alerts and bookmarks are browsable using the browse_alerts and
  browse_bookmarks methods
- You can call the find_additional_data method to retrieve and display
  more detailed activity information for the account (e.g. host logons,
  Azure and Office 365 activity)

### EnrichAlerts

Alert Enrichment Notebooklet Class.

Enriches Azure Sentinel alerts with Threat Intelligence and other data.

### HostLogonsSummary

Host Logons Summary Notebooklet class.

Queries and displays information about logons to a host including:

- Summary of successful logons
- Visualizations of logon event times
- Geolocation of remote logon sources
- Visualizations of various logon elements depending on host type
- Data on users with failed and successful logons

### HostSummary

HostSummary Notebooklet class.

Queries and displays information about a host including:

- IP address assignment
- Related alerts
- Related hunting/investigation bookmarks
- Azure subscription/resource data.

### WinHostEvents

Windows host Security Events Notebooklet class.

Queries and displays Windows Security Events including:

- All security events summary
- Extracting and displaying account management events
- Account management event timeline
- Optionally parsing packed event data into DataFrame columns

Process (4688) and Account Logon (4624, 4625) are not included in the
event types processed by this module.

### IpAddressSummary

Retrieves common data about an IP Address including:

- Tries to determine IP address is external or internal (i.e. owned by the organization)
- Azure Heartbeat, Network Analytics or VMComputer records
- Geo-IP and Whois data
- Threat intel reports
- Related alerts and hunting bookmarks
- Network flows involving IP address
- Azure activity (e.g. sign-ins) originating from IP address

### NetworkFlowSummary

Network Flow Summary Notebooklet class.

Queries network data and plots time lines for network traffic to/from a
host or IP address.

- Plot flows events by protocol and direction
- Plot flow count by protocol
- Display flow summary table
- Display flow summary by ASN
- Display results on map

### TemplateNB

Template Notebooklet class.

A code template for creating additional notebooklets.

## See Also

[msticpy documentation](https://msticpy.readthedocs.io/en/latest/)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/microsoft/msticnb",
    "name": "msticnb",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "security,cybersecurity,infosec,jupyter,notebook,azure,sentinel",
    "author": "Ian Hellen",
    "author_email": "ianhelle@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/f9/2f/2f415bebb06e39d728d4758bb7b64bd9367c75376429b66f6ad415b9ad3b/msticnb-1.1.0.tar.gz",
    "platform": null,
    "description": "# msticnb - Notebooklets for Jupyter Notebooks\r\n\r\nRead the full documentation at [msticnb.readthedocs](https://msticnb.readthedocs.io/en/latest/)\r\n\r\nmsticnb is a companion package to\r\n[msticpy](https://msticpy.readthedocs.io/en/latest/). It is designed to\r\nbe used in Jupyter notebooks by security operations engineers and analysts,\r\nto give them quick access to\r\ncommon notebook patterns such as retrieving summary information about\r\na host or IP address.\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-browser.png\"\r\nalt=\"Notebooklet browser showing list of notebooklets and some details of the user documentation for the selected notebooklet.\"\r\ntitle=\"Notebooklet browser\"\r\nheight=\"300\" />\r\n\r\nEach notebooklet is equivalent to multiple cells and many lines of code\r\nin a traditional notebook. You can import and run a notebooklet with two\r\nlines of code (or even 1 line, if you are impatient). Typically, the input\r\nparameters to a notebooklet will be an identifier (e.g. a host name) and\r\na time range (over which to query data). Some notebooklets (primarily\r\npackaged analytics) will take a pandas DataFrame as input.\r\n\r\n```python\r\n    host_summary = nb.nblts.azsent.host.HostSummary()\r\n    host_sum_rslt = host_summary.run(\r\n        value=\"Msticalertswin1\", timespan=time_span\r\n    )\r\n```\r\n\r\nYou can create your own notebooklets and use them in the same framework\r\nas the ones already in the package.\r\n\r\n---\r\n\r\n## Notebooklets\r\n\r\n### What are notebooklets?\r\n\r\nNotebooklets are collections of notebook cells that implement some\r\nuseful reusable sequence. They are extensions of, and build upon the\r\nmsticpy package and are design to streamline authoring of Jupyter\r\nnotebooks for CyberSec hunters and investigators. The goal of\r\nnotebooklets is to replace repetitive and lengthy boilerplate code in\r\nnotebooks for common operations.\r\n\r\nSome examples are:\r\n\r\n- Get a host summary for a named host (IP address, cloud registration\r\n  information, recent alerts)\r\n- Get account activity for an account (host and cloud logons and\r\n  failures, summary of recent activity)\r\n- Triage alerts with Threat Intel data (prioritize your alerts by\r\n  correlating with Threat intel sources)\r\n\r\n### Intended Audience\r\n\r\n- Cyber security investigators and hunters using Jupyter notebooks for\r\n  their work\r\n- Security Ops Center (SOC) engineers/SecDevOps building reusable\r\n  notebooks for SOC analysts\r\n\r\n### Why did we create notebooklets?\r\n\r\n- Notebook code can quickly become complex and lengthy:\r\n  - obscures the information you are trying to display\r\n  - can be intimidating to non-developers\r\n- Code in notebook code cells is not easily re-useable:\r\n  - You can copy and paste but how do you sync changes back to the\r\n    original notebook?\r\n  - Difficult to discover code snippets in notebooks\r\n- Notebook code is often fragile:\r\n  - Often not parameterized or modular\r\n  - Code blocks are frequently dependent on global values assigned\r\n    earlier\r\n  - Output data is not in any standard format\r\n  - Difficult to test\r\n\r\n### Why aren\\'t these part of msticpy?\r\n\r\n- Msticpy aims to be platform-independent, whereas most if not all\r\n  notebooklets assume a data schema that is specific to their data\r\n  provider/SIEM.\r\n- Msticpy is mostly for discrete functions such as data acquisition,\r\n  analysis and visualization. Msticnb implements common SOC scenarios\r\n  using this functionality.\r\n\r\n### Traditional Notebook vs. one using a Notebooklets\r\n\r\nThe notebook on the left is using mostly inline code (occupying more\r\nthan 50% of the notebook). The one on the right is using a single\r\nnotebooklet with only 3 or 4 lines of code.\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/NBComparison.png\"\r\nalt=\"Comparing a standard notebook with one using a notebooklet. The standard notebook on the left can require large amounts of code. The notebook on the right uses just 3 lines of code.\"\r\ntitle=\"With and without notebooklets\" height=\"500\" />\r\n\r\n\r\n### Characteristics of Notebooklets\r\n\r\n- They have one or small number of entry points/methods (typically a\r\n  \\\"run\\\" method)\r\n- They are parametrizable (e.g. you can supply hostname, IP Address,\r\n  time range, etc.) and they may have runtime options to allow to skip\r\n  unwanted processing or include optional processing\r\n- They can query, process or visualize data (or any combination)\r\n- They return a package of results that can be used later in the\r\n  notebook\r\n- The code can be imported into a notebook cell to be modified, if\r\n  needed.\r\n\r\n### Limitations\r\n\r\n- They are normally specific to a data backend/SIEM since the data\r\n  schema and layout varies between SIEM vendors.\r\n- Notebooklet code layout is typically more complex than standard\r\n  notebook code\r\n\r\n---\r\n\r\n## Using Notebooklets\r\n\r\nFor a more detailed explanation of these steps and illustration of other\r\nfeatures see the [Notebooklets\r\nnotebook](https://github.com/microsoft/msticnb/blob/master/docs/notebooks/NotebookletsDemo.ipynb)\r\n\r\n### Install the Package\r\n\r\n```bash\r\npip install msticnb\r\n```\r\n\r\n### Import and initialize\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-import.png\"\r\nalt=\"Python statement to import msticnb - 'import msticnb as nb'\"\r\ntitle=\"Importing\" height=\"70\" />\r\n\r\nThe init method loads data drivers and data providers relevant to the\r\nthe chosen data platform.\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-init.png\"\r\nalt=\"Python statement to initialize msticnb - nb.init('AzureSentinel')\"\r\ntitle=\"Initializing msticnb\" height=\"70\" />\r\n\r\n### Pick a notebooklet to use\r\n\r\nYou can pick a notebooklet from the commandline, using autocompletion.\r\nYou can also search for a notebooklet using keywords and text from the\r\nnotebooklet name and documentation.\r\n\r\nThe easiest way is using the nb.browse() method. This lists all of the\r\navailable notebooklets and displays documentation, usage information and\r\nsample code snippet for each.\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-browser.png\"\r\nalt=\"Notebooklet browser showing list of notebooklets and some details of the user documentation for the selected notebooklet.\"\r\ntitle=\"Notebooklet browser\" height=\"500\" />\r\n\r\n### Instantiate the notebooklet and execute \\\"run\\\"\r\n\r\nNotebooklets usually have a single `run` method, which is the entry\r\npoint for the notebooklet. A notebooklet might have additional methods\r\nto do further drill-down, data retrieval, visualization or other\r\noperations once the run method has completed. Run typically requires\r\nparameters such as a host or account identifier and a time range over\r\nwhich to perform the operations.\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-run-cell.png\"\r\nalt=\"Python code cell showing the creation of a notebooklet instance from the WinHostevents notebooklet class. The notebooklet 'run' method is called with parameters supplying the name of the host and a time range.\"\r\ntitle=\"Running a notebooklet\" height=\"100\" />\r\n\r\nThe notebooklet displays output directly to the notebook (although this\r\ncan be suppressed) - showing text, data tables and visualizations. This\r\ndata is all saved to a Results object. The data items are simple\r\nproperties of this results object, for example, DataFrames, plots, or\r\nsimple Python dictionaries. You can access these individually and you\r\ncan just display the results object using IPython display() or just\r\ntyping its name into and emtpy cell and running the cell.\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-run.png\"\r\nalt=\"The notebooklet displays output directly to th notebook. The output includes styled tables, text headings and descriptions and interactive timeline visualizations.\"\r\ntitle=\"Running a notebooklet\" height=\"600\" />\r\n\r\n### View extended help for a notebooklet\r\n\r\nYou can access detailed documentation from any notebooklet class or\r\ninstance using the show_help() method. This help includes a high-level\r\ndescription and usage information (parameters, available methods,\r\noptions). It also describes the major output sections that will be\r\ndisplayed and the the contents of the return results.\r\n\r\nNote: the contents of this help are also displayed in the notebooklet browser\r\nshown earlier.\r\n\r\n<img src=\"https://github.com/microsoft/msticnb/blob/master/docs/source/_static/msticnb-help.png\"\r\nalt=\"The notebooklet help displays a description, parameter and other usage information and available methods. It also describes the major output sections and the contents of the return results.\"\r\ntitle=\"Notebooklet help\" height=\"500\" />\r\n\r\n## Current Notebooklets\r\n\r\n### AccountSummary\r\n\r\nRetrieves account summary for the selected account.\r\n\r\nMain operations:\r\n\r\n- Searches for matches for the account name in Active Directory,\r\n  Windows and Linux host logs.\r\n- If one or more matches are found it will return a selection widget\r\n  that you can use to pick the account.\r\n- Selecting the account displays a summary of recent activity and\r\n  retrieves any alerts and hunting bookmarks related to the account\r\n- The alerts and bookmarks are browsable using the browse_alerts and\r\n  browse_bookmarks methods\r\n- You can call the find_additional_data method to retrieve and display\r\n  more detailed activity information for the account (e.g. host logons,\r\n  Azure and Office 365 activity)\r\n\r\n### EnrichAlerts\r\n\r\nAlert Enrichment Notebooklet Class.\r\n\r\nEnriches Azure Sentinel alerts with Threat Intelligence and other data.\r\n\r\n### HostLogonsSummary\r\n\r\nHost Logons Summary Notebooklet class.\r\n\r\nQueries and displays information about logons to a host including:\r\n\r\n- Summary of successful logons\r\n- Visualizations of logon event times\r\n- Geolocation of remote logon sources\r\n- Visualizations of various logon elements depending on host type\r\n- Data on users with failed and successful logons\r\n\r\n### HostSummary\r\n\r\nHostSummary Notebooklet class.\r\n\r\nQueries and displays information about a host including:\r\n\r\n- IP address assignment\r\n- Related alerts\r\n- Related hunting/investigation bookmarks\r\n- Azure subscription/resource data.\r\n\r\n### WinHostEvents\r\n\r\nWindows host Security Events Notebooklet class.\r\n\r\nQueries and displays Windows Security Events including:\r\n\r\n- All security events summary\r\n- Extracting and displaying account management events\r\n- Account management event timeline\r\n- Optionally parsing packed event data into DataFrame columns\r\n\r\nProcess (4688) and Account Logon (4624, 4625) are not included in the\r\nevent types processed by this module.\r\n\r\n### IpAddressSummary\r\n\r\nRetrieves common data about an IP Address including:\r\n\r\n- Tries to determine IP address is external or internal (i.e. owned by the organization)\r\n- Azure Heartbeat, Network Analytics or VMComputer records\r\n- Geo-IP and Whois data\r\n- Threat intel reports\r\n- Related alerts and hunting bookmarks\r\n- Network flows involving IP address\r\n- Azure activity (e.g. sign-ins) originating from IP address\r\n\r\n### NetworkFlowSummary\r\n\r\nNetwork Flow Summary Notebooklet class.\r\n\r\nQueries network data and plots time lines for network traffic to/from a\r\nhost or IP address.\r\n\r\n- Plot flows events by protocol and direction\r\n- Plot flow count by protocol\r\n- Display flow summary table\r\n- Display flow summary by ASN\r\n- Display results on map\r\n\r\n### TemplateNB\r\n\r\nTemplate Notebooklet class.\r\n\r\nA code template for creating additional notebooklets.\r\n\r\n## See Also\r\n\r\n[msticpy documentation](https://msticpy.readthedocs.io/en/latest/)\r\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "MSTIC Notebooklets",
    "version": "1.1.0",
    "split_keywords": [
        "security",
        "cybersecurity",
        "infosec",
        "jupyter",
        "notebook",
        "azure",
        "sentinel"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "922d024d2831ea1d1a45ac3ddd6bdd2c5768a1fc810e3501a7fa95975115b5e9",
                "md5": "fd709ccd00c98ce8e22f01a051b27736",
                "sha256": "e516e3caa9b3a760cf98308d28a08a22a159c22affeae7b16782e30efb548c09"
            },
            "downloads": -1,
            "filename": "msticnb-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fd709ccd00c98ce8e22f01a051b27736",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 121413,
            "upload_time": "2023-03-16T22:54:15",
            "upload_time_iso_8601": "2023-03-16T22:54:15.309384Z",
            "url": "https://files.pythonhosted.org/packages/92/2d/024d2831ea1d1a45ac3ddd6bdd2c5768a1fc810e3501a7fa95975115b5e9/msticnb-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f92f2f415bebb06e39d728d4758bb7b64bd9367c75376429b66f6ad415b9ad3b",
                "md5": "099ca85cf8170882543437b473a84d0a",
                "sha256": "ce611c998d3275b327a82d7e8ea2f3a5e2280d25b6e5d69be93b1823e106ccd1"
            },
            "downloads": -1,
            "filename": "msticnb-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "099ca85cf8170882543437b473a84d0a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 102319,
            "upload_time": "2023-03-16T22:54:16",
            "upload_time_iso_8601": "2023-03-16T22:54:16.993665Z",
            "url": "https://files.pythonhosted.org/packages/f9/2f/2f415bebb06e39d728d4758bb7b64bd9367c75376429b66f6ad415b9ad3b/msticnb-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-16 22:54:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "microsoft",
    "github_project": "msticnb",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "bokeh",
            "specs": [
                [
                    "<",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "defusedxml",
            "specs": [
                [
                    ">=",
                    "0.6.0"
                ]
            ]
        },
        {
            "name": "ipython",
            "specs": [
                [
                    ">=",
                    "7.23.1"
                ]
            ]
        },
        {
            "name": "ipywidgets",
            "specs": [
                [
                    ">=",
                    "7.5.1"
                ]
            ]
        },
        {
            "name": "lxml",
            "specs": [
                [
                    ">=",
                    "4.4.2"
                ]
            ]
        },
        {
            "name": "Markdown",
            "specs": [
                [
                    ">=",
                    "3.2.1"
                ]
            ]
        },
        {
            "name": "msticpy",
            "specs": [
                [
                    "==",
                    "2.3.1"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.17.3"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "0.25.3"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    ">=",
                    "2.8.1"
                ]
            ]
        },
        {
            "name": "tqdm",
            "specs": [
                [
                    ">=",
                    "4.41.1"
                ]
            ]
        },
        {
            "name": "python-whois",
            "specs": [
                [
                    ">=",
                    "0.7.3"
                ]
            ]
        },
        {
            "name": "tldextract",
            "specs": [
                [
                    ">=",
                    "3.3.0"
                ]
            ]
        }
    ],
    "lcname": "msticnb"
}
        
Elapsed time: 0.08456s