diff --git a/httping.py b/httping.py index e588c8d..e4e5553 100755 --- a/httping.py +++ b/httping.py @@ -7,10 +7,10 @@ # v1.0 # Tobias Schmidl # schtobia -# Short description of what your plugin does. +# Simulates httping. # # python,requests -# https://github.com/schtobia/argos-httping/blob/master/httping.py +# https://gitlab.com/schtobia/argos-httping/blob/master/httping.py from __future__ import annotations @@ -22,9 +22,9 @@ from typing import Dict, List, Optional, Tuple import requests # for the central HTTP HEAD request __author__ = "Tobias Schmidl" -__copyright__ = "Copyright 2018, Tobias Schmidl" +__copyright__ = "Copyright 2021, Tobias Schmidl" __license__ = "MIT" -__version__ = "0.0.1" +__version__ = "1.0" __maintainer__ = "Tobias Schmidl" MAX_PING: datetime.timedelta = datetime.timedelta(milliseconds=1000) # in seconds