pallets-eco / flask-openid

Flask-OpenID adds openid support to flask applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python 3 migration

pythonmobile opened this issue · comments

Has anyone tried this codebase on python 3 yet? How much work is it to port it to 3?

I've made a fork which seems to be working: https://github.com/DennisGlindhart/flask-openid

You will have to build the pkg yourself after checking out the fork and installing the pacakge from local (until it will be merged)

Eventualy see: http://getpython3.com/diveintopython3/packaging.html

In short:

  • Make sure to remove old version of flask-openid and probably also python-openid (as this will install python3-openid instead which is required)
  • python setup.py sdist
  • pip install dist/Flask-OpenID-1.1.tar.gz

Thanks. Will give it a try.