OpenSNA
OpenSNA copied to clipboard
Code written in a Python Version which isn't Up to date
One of the issues that I encountered on the way of exploring the code is that the program isn't written in Python3, which is the latest, and used by a majority of people in today's World. As we know, Python 3.0 is not backward-compatible and there is a difference between print "Hello World !" and print("Hello World !")
The output would be the same, but the people using python 3 (Including me) will have to install python2 separately, to be able to explore code.
Find this task on my website: http://itsrohan.com/gci/gcitasks
This is a valid concern. Perhaps you'll be able to send a PR migrating the codebase to python3?
https://docs.python.org/2/library/2to3.html
@malithsen sure, Thanks for acknowledging.