diff --git a/prsw/__init__.py b/prsw/__init__.py index 62b6f69..5aba3f1 100644 --- a/prsw/__init__.py +++ b/prsw/__init__.py @@ -11,4 +11,4 @@ from .ripe_stat import RIPEstat -__version__ = "0.2.1" +__version__ = "0.3.0" diff --git a/prsw/stat/routing_history.py b/prsw/stat/routing_history.py index af46c43..567a4fa 100644 --- a/prsw/stat/routing_history.py +++ b/prsw/stat/routing_history.py @@ -72,8 +72,11 @@ def __init__( at the time. (default: false) .. code-block:: python + import prsw from datetime import datetime + ripe = prsw.RIPEstat() + start = datetime.fromisoformat("2021-01-01T12:00:00.000000") end = datetime.now() @@ -81,7 +84,7 @@ def __init__( 3333, # Autonomous System Number starttime=start, # datetime endtime=end, # datetime - min_peers_seeing=20, # int + min_peers=20 # int ) """ diff --git a/setup.py b/setup.py index 353adcf..501edb5 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( name=PACKAGE_NAME, author="Jonathan P. Voss", - author_email="jonathan@expbits.io", + author_email="jvoss@onvox.net", python_requires="~=3.7", classifiers=[ "Environment :: Console",