We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 2's end of life support happened last year, so it would be good to make this code run on modern versions of Python.
I'd be happy to submit a PR for this. There's a tool called 2to3 built in in python that can take care of this (https://docs.python.org/3/library/2to3.html)
2to3
It can be done with the following code (when there's a valid python3 installation available):
$ 2to3 -w predict.py $ 2to3 -w predict_enriched.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Python 2's end of life support happened last year, so it would be good to make this code run on modern versions of Python.
I'd be happy to submit a PR for this. There's a tool called
2to3
built in in python that can take care of this (https://docs.python.org/3/library/2to3.html)It can be done with the following code (when there's a valid python3 installation available):
The text was updated successfully, but these errors were encountered: