I'm trying to wrap my head around GUI development, with both tkinter and PySide I don't "grok" it yet. Will have to learn other parts of Python first.
How simple is web development (Django? Flask?) for Python?
Back to this once again.
I think I will re-write most of the code now that I've learned dictionaries, and, more importantly, OOP. With OOP, I can greatly simplify the horribly complicated worldgen loops and even create a dictionary of worlds, which might be useful for later projects. Saving a dictionary to file is another mental leap I'll have to go through, though.
I would recommend outputting JSON format to a straight text file. Pickle means only python people can use it. Another option would be SQLite, a file base database using mostly standard SQL.
Addendum: Python's JSON module. And a PHP based example of using SQLite.
I would recommend outputting JSON format to a straight text file. Pickle means only python people can use it. Another option would be SQLite, a file base database using mostly standard SQL.
Addendum: Python's JSON module. And a PHP based example of using SQLite.