Skip to content
This repository was archived by the owner on Jun 11, 2022. It is now read-only.
David Tucker edited this page Oct 22, 2015 · 2 revisions

Development Considerations

Implement in Python 2 with interoperability with Python 3 in mind.

  • Use from __future__ import absolute_import before any imports.
  • Use from __future__ import print_function and print() instead of print.
  • Use .items() instead of .iteritems().

Clone this wiki locally