PasswordField & PickledField on 3?
See original GitHub issuehttp://docs.peewee-orm.com/en/latest/peewee/changes.html#fields
What are the alternatives for PasswordField
and PickledField
on 3.x ?.
What are you using if you need PasswordField
and PickledField
on 3.x ?.
The Documentation dont mention alternatives. 🤔
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Changes in 3.0 — peewee 3.15.3 documentation
This document describes changes to be aware of when switching from 2.x to 3.x. ... the extension fields PasswordField , PickledField and AESEncryptedField...
Read more >How to create Password Field in Model Django - Stack Overflow
Use widget as PasswordInput from django import forms class UserForm(forms.ModelForm): password = forms.CharField(widget=forms.
Read more >Changes in 3.0 - 《Peewee 3.5.0 Documentation》 - 书栈网 ...
This document describes changes to be aware of when switching from 2.x to 3.x. ... the extension fields PasswordField , PickledField and AESEncryptedField...
Read more >peewee Documentation - Read the Docs
Now we have stored 3 people in the database. ... Removed the extension fields PasswordField, PickledField and AESEncryptedField. Querying.
Read more >peewee — Debian unstable
Now we have stored 3 people in the database. Let's give them some pets. ... Removed the extension fields PasswordField, PickledField and AESEncryptedField....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you very much!.
Field now lives here, in case someone still need it, or to ease migration to 3.x: https://github.com/juancarlospaco/peewee-extra-fields#pickledfield 😃
So should we use https://github.com/juancarlospaco/peewee-extra-fields#simplepasswordfield instead?