I am trying to future proof my Python code, which means I am trying to write code in Python 3. However, from what I understand Draft and the Deadline API were built using Python For .NET. According to the Python For .NET website:
Python for .NET is currently compatible and tested with Python releases 2.7, 3.3, 3.4, 3.5, and 3.6.
Does this mean I can use those packages with Python 3? If not, should I just try to write code that is compatible with Python 2 and 3? Or am I stuck using Python 2.7?