Posts by Ytalo Martins • 21 points
2 posts
-
1
votes1
answer178
viewsA: How to ignore Django.contrib.auth Migrations?
Before giving migrate give the following command python manage.py migrate auth --fake Or just give in the Migrations you don’t want to create python manage.py migrate auth nome_da_migration --fake…
-
1
votes2
answers2615
viewsA: Password Validation with Python
For these cases you should use regular expressions. Check out this website later. https://docs.python.org/3/library/re.html import re from django.forms import forms def test_password(password):…