django-login-history icon indicating copy to clipboard operation
django-login-history copied to clipboard

Results 4 django-login-history issues
Sort by recently updated
recently updated
newest added

The package is incredibly useful, however it is polluting my shell. Can we remove these prints?

web_1 | File "/usr/local/lib/python3.10/site-packages/django_login _history/models.py", line 47, in get_location_data__from_ip web_1 | print(ipaddress.ip_address(ip).is_private) web_1 | File "/usr/local/lib/python3.10/ipaddress.py", line 54, in ip_address web_1 | raise ValueError(f'{address!r} does not appear to be an...

Love the project guys! I'm unable to test without it giving the error message: ```python from django.test import Client, TestCase self.client = Client() user_login = self.client.login(username=self.user.username, password="test3") self.assertTrue(user_login) ``` ```...