DEV Community

Vicente G. Reyes
Vicente G. Reyes

Posted on

What modules can I use to ping a website in Django from the database?

I have model that takes a URL and prints the URL in the front end. How would I ping that website using Django? Is there any package/module that I can use? I've seen django-ping but it hasn't been updated in 7 years.

This is the model

class Table(models.Model):
    domain =

Top comments (0)