Skip to content

Error on running very basic Ping command  #81

@jamiabailey

Description

@jamiabailey

Just using the basic ping example posted here: https://pypi.org/project/icmplib/

I get the error "ping() got an unexpected keyword argument 'count'"

I am running Python version 3.9 within Visual Studio Community within a Flask App.

The exact code that will not function:
hostname = "8.8.8.8"
host = ping('8.8.8.8', count=10, interval=0.2)
if host.is_alive == True:
color = "green"
pingresult = hostname + " is up"
else:
color = "red"
pingresult = hostname + " is down"

Not sure what the deal is. Documentation states it should work with Python 3.7+ and the app I am testing with is very very basic use of this. Multiping works fine.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions