milestonexprotectwsPython


NamemilestonexprotectwsPython JSON
Version 1.0.2 PyPI version JSON
download
home_page
SummaryMilestone XProtect Web Services Python3 Library
upload_time2023-09-22 20:07:00
maintainer
docs_urlNone
authorTodd Lucas
requires_python>3.4.1
license
keywords python milestone xprotect surveillance camera security
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 class="modulename">
Milestone XProtect Web Services Python3 Library
</h1>

# Overview
This API provides Python programmers the ability to retrieve various configuration information for Milestone Systems XProtect Video Manegement Systems (VMS) products. 
It utilizes the Milestone Systems XProtect VMS Web-Services to retrieve the information.
More information on Milestone XProtect products can be found on the <a href="https://www.milestonesys.com/video-technology/platform/xprotect/" target="_blank">Milestone
XProtect Products page</a>.

# What this API *CAN* Do
This API provides an easy way to retrieve XProtect configuration details:  Hardware Devices (e.g. Cameras, Microphones, Speakers, etc), Recording Server information, Product License Information, Site information, etc.  It also allows you to retrieve JPEG image data from live camera and archived footage.  Check out the `milestonexprotectwspython.xpwservercommandservice.XPWServerCommandService`, `milestonexprotectwspython.xpwrecordercommandservice.XPWRecorderCommandService`, and `milestonexprotectwspython.xpwserviceregistrationservice.XPWServiceRegistrationService` class help documentation for more details.

# What this API *CANNOT* Do (yet anyway)
This API does not provide any functionality to ADD, UPDATE, or DELETE XProtect configurations.  

# Requirements and Dependencies
The following XProtect requirements must be met in order to utilize this API:

* Milestone Systems XProtect Management Server 2023 R2, Version 23.2a+.

    The XProtect Management Server provides web-services for various commands and configuration.
    The XProtect software products can be downloaded from the: <a href="https://www.milestonesys.com/video-technology/platform/try-xprotect/" target="_blank">
    Milestone XProtect Products download page</a>.

The following Python-related requirements must be met in order to utilize this API:

* Python 3.4 or greater (not tested with Python 2).

* smartinspectPython package (>= 3.0.20) - for diagnostics and logging support.

* requests package (>= 2.0).

* requests-ntlm package (>= 1.2.0).

# Documentation
Documentation is located in the package library under the 'docs' folder; use the index.html as your starting point. 

# Quick-Start Sample Code

The following code snippets will get you started with establishing a connection to the XProtect web-services and retrieving information.  

Check out the `milestonexprotectwspython.xpwservercommandservice.XPWServerCommandService`, `milestonexprotectwspython.xpwrecordercommandservice.XPWRecorderCommandService`, and `milestonexprotectwspython.xpwserviceregistrationservice.XPWServiceRegistrationService` class methods for more sample code.

<details>
  <summary>Get Management Server Configuration</summary>

``` python
# package imports.
from milestonexprotectwspython.xpwconfiguration import XPWConfiguration
from milestonexprotectwspython.xpwlogininfo import XPWLoginInfo
from milestonexprotectwspython.xpwservercommandservice import XPWServerCommandService

# create service instance and set server prefixes for our environment.
svc:XPWServerCommandService = XPWServerCommandService()
svc.ManagementServerUrlPrefix = "https://mymanagementserver.example.com"
svc.IsSslVerifyEnabled = False

# authenticate using xprotect basic auth credentials.
loginInfo:XPWLoginInfo = svc.LoginBasicUser("xpsampleadmin", "MyPassword&1")
print("** Login Details:\n{0}\n".format(loginInfo))

# get configuration info.
cfg:XPWConfiguration = svc.GetConfiguration()
print("** Configuration Info:\n{0}\n".format(cfg))
print("**   Camera Groups:\n{0}\n".format(cfg.CameraGroups))
print("**   Input Groups:\n{0}\n".format(cfg.InputGroups))
print("**   Output Groups:\n{0}\n".format(cfg.OutputGroups))
print("**   Recorders:\n{0}\n".format(cfg.Recorders))
print("**   Speaker Groups:\n{0}\n".format(cfg.SpeakerGroups))
print("**   Licenses:\n{0}\n".format(cfg.Licenses))
```
</details>

<details>
  <summary>Retrieve Live Camera JPEG Image and Save to a File</summary>

``` python
# package imports.
from milestonexprotectwspython.xpwjpegdata import XPWJpegData
from milestonexprotectwspython.xpwlogininfo import XPWLoginInfo
from milestonexprotectwspython.xpwrecordercommandservice import XPWRecorderCommandService

# create service instance and set server prefixes for our environment.
svc:XPWRecorderCommandService = XPWRecorderCommandService()
svc.ManagementServerUrlPrefix = "https://mymanagementserver.example.com"
svc.RecordingServerUrlPrefix =  "http://myrecordingserver.example.com:7563"
svc.IsSslVerifyEnabled = False

# authenticate using xprotect windows auth credentials.
loginInfo:XPWLoginInfo = svc.LoginWindowsUser("MYDOMAIN\XProtectSample", "MyPassword&1")
print("** Login Details:\n{0}\n".format(loginInfo))

# get live jpeg image in 1280 x 720 resolution.
item:XPWJpegData = svc.JPEGGetLive("71cab37e-8718-4383-8e86-146b38168e42", 1280, 720, "My Camera (1280x720)")
print("** JPEGGetLive Item Summary:\n{0}\n".format(item))

# save jpeg image to file.
if (item.HasData):
    item.SaveToFile("./tests/logfiles/TestCase_JPEGGetLive_{title}_{time}.jpg")
    print("** JPEGGetLive Item Saved:\n{0}\n".format(item.SaveToFilePath))

# get live jpeg image in 100 x 100 resolution.
item:XPWJpegData = svc.JPEGGetLive("71cab37e-8718-4383-8e86-146b38168e42", 100, 100, "My Camera (100x100)")
print("** JPEGGetLive Item Summary:\n{0}\n".format(item))

# save jpeg image to file.
if (item.HasData):
    item.SaveToFile("./tests/logfiles/TestCase_JPEGGetLive_{title}_{time}.jpg")
    print("** JPEGGetLive Item Saved:\n{0}\n".format(item.SaveToFilePath))
```
</details>

<details>
  <summary>Get List of Available Services</summary>

``` python
# package imports.
from milestonexprotectwspython.xpwcollection import XPWCollection
from milestonexprotectwspython.xpwlogininfo import XPWLoginInfo
from milestonexprotectwspython.xpwservice import XPWService
from milestonexprotectwspython.xpwserviceregistrationservice import XPWServiceRegistrationService

# create service instance and set server prefixes for our environment.
svc:XPWServiceRegistrationService = XPWServiceRegistrationService()
svc.ManagementServerUrlPrefix = "https://mymanagementserver.example.com"
svc.IsSslVerifyEnabled = False

# authenticate using xprotect basic auth credentials.
loginInfo:XPWLoginInfo = svc.LoginBasicUser("xpsampleadmin", "MyPassword&1")
print("** Login Details:\n{0}\n".format(loginInfo))

# get services info.
items:XPWCollection = svc.GetServices()
print("** Services Summary:\n{0}\n".format(items))
```
</details>


# Licensing
This project is licensed under the terms of the MIT End-User License Agreement (EULA) license.

# Logging / Tracing Support

The SmartInspectPython package (installed with this package) can be used to easily debug your applications that utilize this API.

The following topics and code samples will get you started on how to enable logging support.  
Note that logging support can be turned on and off without changing code or restarting the application.  
Click on the topics below to expand the section and reveal more information.  

<details>
  <summary>Configure Logging Support Settings File</summary>
  <br/>
  Add the following lines to a new file (e.g. "smartinspect.cfg") in your application startup / test directory.  
  Note the file name can be whatever you like, just specify it on the call to `SiAuto.Si.LoadConfiguration()` when initializing the logger.

``` ini
; smartinspect.cfg

; SmartInspect Logging Configuration General settings.
; - "Enabled" parameter to turn logging on (True) or off (False).
; - "Level" parameter to control the logging level (Debug|Verbose|Message|Warning|Error).
; - "AppName" parameter to control the application name.
Enabled = False 
Level = Verbose
DefaultLevel = Debug
AppName = My Application Name

; SmartInspect Logging Configuration Output settings.
; - Log to SmartInspect Console Viewer running on the specified network address.
Connections = tcp(host=192.168.1.1,port=4228,timeout=5000,reconnect=true,reconnect.interval=10s,async.enabled=true)
; - Log to a file, keeping 14 days worth of logs.
;Connections = "file(filename=\"./tests/logfiles/logfile.log\", rotate=daily, maxparts=14, append=true)"
; - Log to an encrypted file, keeping 14 days worth of logs.
;Connections = "file(filename=\"./tests/logfiles/logfileEncrypted.sil\", encrypt=true, key=""1234567890123456"", rotate=daily, maxparts=14, append=true)"
        
; set defaults for new sessions
; note that session defaults do not apply to the SiAuto.Main session, since
; this session was already added before a configuration file can be loaded. 
; session defaults only apply to newly added sessions and do not affect existing sessions.
SessionDefaults.Active = True
SessionDefaults.Level = Message
SessionDefaults.ColorBG = 0xFFFFFF

; configure some individual session properties.
; note that this does not add the session to the sessionmanager; it simply
; sets the property values IF the session name already exists.
Session.Main.Active = True
Session.Main.ColorBG = 0xFFFFFF
```

</details>

<details>
  <summary>Initialize Logging Support, MAIN module</summary>
  <br/>
  Add the following lines to your program startup module.  
  This will import the necessary package modules, and initialize logging support.  
  NOTE - This code should only be executed one time!  

``` python
# load SmartInspect settings from a configuration settings file.
from smartinspectpython.siauto import *
siConfigPath:str = "./tests/smartinspect.cfg"
SIAuto.Si.LoadConfiguration(siConfigPath)

# start monitoring the configuration file for changes, and reload it when it changes.
# this will check the file for changes every 60 seconds.
siConfig:SIConfigurationTimer = SIConfigurationTimer(SIAuto.Si, siConfigPath, 60)

# get smartinspect logger reference.
_logsi:SISession = SIAuto.Main

# log system environment and application startup parameters.
_logsi.LogSeparator(SILevel.Fatal)
_logsi.LogAppDomain(SILevel.Verbose)
_logsi.LogSystem(SILevel.Verbose)
```

</details>

<details>
  <summary>Initialize Logging Support, CLASS or sub-modules</summary>
  <br/>
  Add the following lines to your program supporting modules.  
  This will import the necessary package modules, and initialize the shared logging session.  

``` python
# get smartinspect logger reference.
from smartinspectpython.siauto import *
_logsi:SISession = SIAuto.Main
```

</details>

<details>
  <summary>More Information on SmartInspect</summary>
  <br/>
  You can use SmartInspectPython by itself to create log files for your own applications.  
  Use the following PIP command to install the SmartInspectPython package from PyPi.org:  
  `pip install smartinspectpython`
  <br/>
  <br/>
  The SmarrtInspect Redistributable Console Viewer (free) is required to view SmartInspect Log (.sil) formatted log files, as well capture packets via the TcpProtocol 
  or PipeProtocol connections.  The Redistributable Console Viewer can be downloaded from the <a href="https://code-partners.com/offerings/smartinspect/releases/" target="_blank">Code-Partners Software Downloads Page</a>. Note that the "Redistributable Console Viewer" is a free product, while the "SmartInspect Full Setup" is 
  the Professional level viewer that adds a few more bells and whistles for a fee.  Also note that a Console Viewer is NOT required to view plain text (non .sil) formatted 
  log files.
</details>

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "milestonexprotectwsPython",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">3.4.1",
    "maintainer_email": "",
    "keywords": "python,milestone,xprotect,surveillance,camera,security",
    "author": "Todd Lucas",
    "author_email": "<thlucas@yahoo.com>",
    "download_url": "",
    "platform": null,
    "description": "<h1 class=\"modulename\">\r\nMilestone XProtect Web Services Python3 Library\r\n</h1>\r\n\r\n# Overview\r\nThis API provides Python programmers the ability to retrieve various configuration information for Milestone Systems XProtect Video Manegement Systems (VMS) products. \r\nIt utilizes the Milestone Systems XProtect VMS Web-Services to retrieve the information.\r\nMore information on Milestone XProtect products can be found on the <a href=\"https://www.milestonesys.com/video-technology/platform/xprotect/\" target=\"_blank\">Milestone\r\nXProtect Products page</a>.\r\n\r\n# What this API *CAN* Do\r\nThis API provides an easy way to retrieve XProtect configuration details:  Hardware Devices (e.g. Cameras, Microphones, Speakers, etc), Recording Server information, Product License Information, Site information, etc.  It also allows you to retrieve JPEG image data from live camera and archived footage.  Check out the `milestonexprotectwspython.xpwservercommandservice.XPWServerCommandService`, `milestonexprotectwspython.xpwrecordercommandservice.XPWRecorderCommandService`, and `milestonexprotectwspython.xpwserviceregistrationservice.XPWServiceRegistrationService` class help documentation for more details.\r\n\r\n# What this API *CANNOT* Do (yet anyway)\r\nThis API does not provide any functionality to ADD, UPDATE, or DELETE XProtect configurations.  \r\n\r\n# Requirements and Dependencies\r\nThe following XProtect requirements must be met in order to utilize this API:\r\n\r\n* Milestone Systems XProtect Management Server 2023 R2, Version 23.2a+.\r\n\r\n    The XProtect Management Server provides web-services for various commands and configuration.\r\n    The XProtect software products can be downloaded from the: <a href=\"https://www.milestonesys.com/video-technology/platform/try-xprotect/\" target=\"_blank\">\r\n    Milestone XProtect Products download page</a>.\r\n\r\nThe following Python-related requirements must be met in order to utilize this API:\r\n\r\n* Python 3.4 or greater (not tested with Python 2).\r\n\r\n* smartinspectPython package (>= 3.0.20) - for diagnostics and logging support.\r\n\r\n* requests package (>= 2.0).\r\n\r\n* requests-ntlm package (>= 1.2.0).\r\n\r\n# Documentation\r\nDocumentation is located in the package library under the 'docs' folder; use the index.html as your starting point. \r\n\r\n# Quick-Start Sample Code\r\n\r\nThe following code snippets will get you started with establishing a connection to the XProtect web-services and retrieving information.  \r\n\r\nCheck out the `milestonexprotectwspython.xpwservercommandservice.XPWServerCommandService`, `milestonexprotectwspython.xpwrecordercommandservice.XPWRecorderCommandService`, and `milestonexprotectwspython.xpwserviceregistrationservice.XPWServiceRegistrationService` class methods for more sample code.\r\n\r\n<details>\r\n  <summary>Get Management Server Configuration</summary>\r\n\r\n``` python\r\n# package imports.\r\nfrom milestonexprotectwspython.xpwconfiguration import XPWConfiguration\r\nfrom milestonexprotectwspython.xpwlogininfo import XPWLoginInfo\r\nfrom milestonexprotectwspython.xpwservercommandservice import XPWServerCommandService\r\n\r\n# create service instance and set server prefixes for our environment.\r\nsvc:XPWServerCommandService = XPWServerCommandService()\r\nsvc.ManagementServerUrlPrefix = \"https://mymanagementserver.example.com\"\r\nsvc.IsSslVerifyEnabled = False\r\n\r\n# authenticate using xprotect basic auth credentials.\r\nloginInfo:XPWLoginInfo = svc.LoginBasicUser(\"xpsampleadmin\", \"MyPassword&1\")\r\nprint(\"** Login Details:\\n{0}\\n\".format(loginInfo))\r\n\r\n# get configuration info.\r\ncfg:XPWConfiguration = svc.GetConfiguration()\r\nprint(\"** Configuration Info:\\n{0}\\n\".format(cfg))\r\nprint(\"**   Camera Groups:\\n{0}\\n\".format(cfg.CameraGroups))\r\nprint(\"**   Input Groups:\\n{0}\\n\".format(cfg.InputGroups))\r\nprint(\"**   Output Groups:\\n{0}\\n\".format(cfg.OutputGroups))\r\nprint(\"**   Recorders:\\n{0}\\n\".format(cfg.Recorders))\r\nprint(\"**   Speaker Groups:\\n{0}\\n\".format(cfg.SpeakerGroups))\r\nprint(\"**   Licenses:\\n{0}\\n\".format(cfg.Licenses))\r\n```\r\n</details>\r\n\r\n<details>\r\n  <summary>Retrieve Live Camera JPEG Image and Save to a File</summary>\r\n\r\n``` python\r\n# package imports.\r\nfrom milestonexprotectwspython.xpwjpegdata import XPWJpegData\r\nfrom milestonexprotectwspython.xpwlogininfo import XPWLoginInfo\r\nfrom milestonexprotectwspython.xpwrecordercommandservice import XPWRecorderCommandService\r\n\r\n# create service instance and set server prefixes for our environment.\r\nsvc:XPWRecorderCommandService = XPWRecorderCommandService()\r\nsvc.ManagementServerUrlPrefix = \"https://mymanagementserver.example.com\"\r\nsvc.RecordingServerUrlPrefix =  \"http://myrecordingserver.example.com:7563\"\r\nsvc.IsSslVerifyEnabled = False\r\n\r\n# authenticate using xprotect windows auth credentials.\r\nloginInfo:XPWLoginInfo = svc.LoginWindowsUser(\"MYDOMAIN\\XProtectSample\", \"MyPassword&1\")\r\nprint(\"** Login Details:\\n{0}\\n\".format(loginInfo))\r\n\r\n# get live jpeg image in 1280 x 720 resolution.\r\nitem:XPWJpegData = svc.JPEGGetLive(\"71cab37e-8718-4383-8e86-146b38168e42\", 1280, 720, \"My Camera (1280x720)\")\r\nprint(\"** JPEGGetLive Item Summary:\\n{0}\\n\".format(item))\r\n\r\n# save jpeg image to file.\r\nif (item.HasData):\r\n    item.SaveToFile(\"./tests/logfiles/TestCase_JPEGGetLive_{title}_{time}.jpg\")\r\n    print(\"** JPEGGetLive Item Saved:\\n{0}\\n\".format(item.SaveToFilePath))\r\n\r\n# get live jpeg image in 100 x 100 resolution.\r\nitem:XPWJpegData = svc.JPEGGetLive(\"71cab37e-8718-4383-8e86-146b38168e42\", 100, 100, \"My Camera (100x100)\")\r\nprint(\"** JPEGGetLive Item Summary:\\n{0}\\n\".format(item))\r\n\r\n# save jpeg image to file.\r\nif (item.HasData):\r\n    item.SaveToFile(\"./tests/logfiles/TestCase_JPEGGetLive_{title}_{time}.jpg\")\r\n    print(\"** JPEGGetLive Item Saved:\\n{0}\\n\".format(item.SaveToFilePath))\r\n```\r\n</details>\r\n\r\n<details>\r\n  <summary>Get List of Available Services</summary>\r\n\r\n``` python\r\n# package imports.\r\nfrom milestonexprotectwspython.xpwcollection import XPWCollection\r\nfrom milestonexprotectwspython.xpwlogininfo import XPWLoginInfo\r\nfrom milestonexprotectwspython.xpwservice import XPWService\r\nfrom milestonexprotectwspython.xpwserviceregistrationservice import XPWServiceRegistrationService\r\n\r\n# create service instance and set server prefixes for our environment.\r\nsvc:XPWServiceRegistrationService = XPWServiceRegistrationService()\r\nsvc.ManagementServerUrlPrefix = \"https://mymanagementserver.example.com\"\r\nsvc.IsSslVerifyEnabled = False\r\n\r\n# authenticate using xprotect basic auth credentials.\r\nloginInfo:XPWLoginInfo = svc.LoginBasicUser(\"xpsampleadmin\", \"MyPassword&1\")\r\nprint(\"** Login Details:\\n{0}\\n\".format(loginInfo))\r\n\r\n# get services info.\r\nitems:XPWCollection = svc.GetServices()\r\nprint(\"** Services Summary:\\n{0}\\n\".format(items))\r\n```\r\n</details>\r\n\r\n\r\n# Licensing\r\nThis project is licensed under the terms of the MIT End-User License Agreement (EULA) license.\r\n\r\n# Logging / Tracing Support\r\n\r\nThe SmartInspectPython package (installed with this package) can be used to easily debug your applications that utilize this API.\r\n\r\nThe following topics and code samples will get you started on how to enable logging support.  \r\nNote that logging support can be turned on and off without changing code or restarting the application.  \r\nClick on the topics below to expand the section and reveal more information.  \r\n\r\n<details>\r\n  <summary>Configure Logging Support Settings File</summary>\r\n  <br/>\r\n  Add the following lines to a new file (e.g. \"smartinspect.cfg\") in your application startup / test directory.  \r\n  Note the file name can be whatever you like, just specify it on the call to `SiAuto.Si.LoadConfiguration()` when initializing the logger.\r\n\r\n``` ini\r\n; smartinspect.cfg\r\n\r\n; SmartInspect Logging Configuration General settings.\r\n; - \"Enabled\" parameter to turn logging on (True) or off (False).\r\n; - \"Level\" parameter to control the logging level (Debug|Verbose|Message|Warning|Error).\r\n; - \"AppName\" parameter to control the application name.\r\nEnabled = False \r\nLevel = Verbose\r\nDefaultLevel = Debug\r\nAppName = My Application Name\r\n\r\n; SmartInspect Logging Configuration Output settings.\r\n; - Log to SmartInspect Console Viewer running on the specified network address.\r\nConnections = tcp(host=192.168.1.1,port=4228,timeout=5000,reconnect=true,reconnect.interval=10s,async.enabled=true)\r\n; - Log to a file, keeping 14 days worth of logs.\r\n;Connections = \"file(filename=\\\"./tests/logfiles/logfile.log\\\", rotate=daily, maxparts=14, append=true)\"\r\n; - Log to an encrypted file, keeping 14 days worth of logs.\r\n;Connections = \"file(filename=\\\"./tests/logfiles/logfileEncrypted.sil\\\", encrypt=true, key=\"\"1234567890123456\"\", rotate=daily, maxparts=14, append=true)\"\r\n        \r\n; set defaults for new sessions\r\n; note that session defaults do not apply to the SiAuto.Main session, since\r\n; this session was already added before a configuration file can be loaded. \r\n; session defaults only apply to newly added sessions and do not affect existing sessions.\r\nSessionDefaults.Active = True\r\nSessionDefaults.Level = Message\r\nSessionDefaults.ColorBG = 0xFFFFFF\r\n\r\n; configure some individual session properties.\r\n; note that this does not add the session to the sessionmanager; it simply\r\n; sets the property values IF the session name already exists.\r\nSession.Main.Active = True\r\nSession.Main.ColorBG = 0xFFFFFF\r\n```\r\n\r\n</details>\r\n\r\n<details>\r\n  <summary>Initialize Logging Support, MAIN module</summary>\r\n  <br/>\r\n  Add the following lines to your program startup module.  \r\n  This will import the necessary package modules, and initialize logging support.  \r\n  NOTE - This code should only be executed one time!  \r\n\r\n``` python\r\n# load SmartInspect settings from a configuration settings file.\r\nfrom smartinspectpython.siauto import *\r\nsiConfigPath:str = \"./tests/smartinspect.cfg\"\r\nSIAuto.Si.LoadConfiguration(siConfigPath)\r\n\r\n# start monitoring the configuration file for changes, and reload it when it changes.\r\n# this will check the file for changes every 60 seconds.\r\nsiConfig:SIConfigurationTimer = SIConfigurationTimer(SIAuto.Si, siConfigPath, 60)\r\n\r\n# get smartinspect logger reference.\r\n_logsi:SISession = SIAuto.Main\r\n\r\n# log system environment and application startup parameters.\r\n_logsi.LogSeparator(SILevel.Fatal)\r\n_logsi.LogAppDomain(SILevel.Verbose)\r\n_logsi.LogSystem(SILevel.Verbose)\r\n```\r\n\r\n</details>\r\n\r\n<details>\r\n  <summary>Initialize Logging Support, CLASS or sub-modules</summary>\r\n  <br/>\r\n  Add the following lines to your program supporting modules.  \r\n  This will import the necessary package modules, and initialize the shared logging session.  \r\n\r\n``` python\r\n# get smartinspect logger reference.\r\nfrom smartinspectpython.siauto import *\r\n_logsi:SISession = SIAuto.Main\r\n```\r\n\r\n</details>\r\n\r\n<details>\r\n  <summary>More Information on SmartInspect</summary>\r\n  <br/>\r\n  You can use SmartInspectPython by itself to create log files for your own applications.  \r\n  Use the following PIP command to install the SmartInspectPython package from PyPi.org:  \r\n  `pip install smartinspectpython`\r\n  <br/>\r\n  <br/>\r\n  The SmarrtInspect Redistributable Console Viewer (free) is required to view SmartInspect Log (.sil) formatted log files, as well capture packets via the TcpProtocol \r\n  or PipeProtocol connections.  The Redistributable Console Viewer can be downloaded from the <a href=\"https://code-partners.com/offerings/smartinspect/releases/\" target=\"_blank\">Code-Partners Software Downloads Page</a>. Note that the \"Redistributable Console Viewer\" is a free product, while the \"SmartInspect Full Setup\" is \r\n  the Professional level viewer that adds a few more bells and whistles for a fee.  Also note that a Console Viewer is NOT required to view plain text (non .sil) formatted \r\n  log files.\r\n</details>\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Milestone XProtect Web Services Python3 Library",
    "version": "1.0.2",
    "project_urls": null,
    "split_keywords": [
        "python",
        "milestone",
        "xprotect",
        "surveillance",
        "camera",
        "security"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "919b9a92a18b63e0b675b2d63c8d2f71d9b588c4277f280858d8c7e050a2348e",
                "md5": "278ccaddd0dc3937b21e31a0b54ce3cd",
                "sha256": "038b809b2be1edb9b4f340189b2945661e78cfcc43c7302e5765362b11091565"
            },
            "downloads": -1,
            "filename": "milestonexprotectwsPython-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "278ccaddd0dc3937b21e31a0b54ce3cd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">3.4.1",
            "size": 1160779,
            "upload_time": "2023-09-22T20:07:00",
            "upload_time_iso_8601": "2023-09-22T20:07:00.072055Z",
            "url": "https://files.pythonhosted.org/packages/91/9b/9a92a18b63e0b675b2d63c8d2f71d9b588c4277f280858d8c7e050a2348e/milestonexprotectwsPython-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-22 20:07:00",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "milestonexprotectwspython"
}
        
Elapsed time: 0.14010s