Skip to content

Commit

Permalink
Adding ip_summary notebooklet
Browse files Browse the repository at this point in the history
Multiple updates and fixes to account_summary
Multiple fixes to network_flow_summary
Updating version to 0.2.0
Added some utility functions to common.py and notebooklet.py
- check_valid_result_data
- check_table_exists
- get_methods/list_methods (lists only methods defined on subclasses, not Notebooklet class)
Split NotebooketResult into separate module notebooklet_result.py
Added ability to invoke notebooklet functions from results class
Fixes/regularization to host.host.py and iptools.py. Added VPS lookup
Added alert.py alert browser
Added several test data sets such as azure_activity_df, az_net_df (interface), vmcomputer_df, host_hb_df
Added mock classes for TILookup and GeoIP for testing
Switched several test modules to native pytest format.
  • Loading branch information
ianhelle committed Mar 24, 2021
1 parent 5d1554c commit 3d619cb
Show file tree
Hide file tree
Showing 40 changed files with 2,916 additions and 847 deletions.
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
sys.path.insert(0, os.path.abspath("../.."))

# -- Project information -----------------------------------------------------

# pylint: disable=redefined-builtin, invalid-name
project = "msticnb"
# pylint: disable=redefined-builtin

copyright = "2020, (c) Microsoft Corporation."
author = "Ian Hellen, Pete Bryan"

Expand Down Expand Up @@ -78,7 +78,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = []
exclude_patterns: list = []

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = None
Expand Down Expand Up @@ -127,7 +127,7 @@

# -- Options for LaTeX output ------------------------------------------------

latex_elements = {
latex_elements: dict = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
Expand Down
Loading

0 comments on commit 3d619cb

Please sign in to comment.