imagej / imagej-server

A RESTful web server for ImageJ [EXPERIMENTAL]
Apache License 2.0
39 stars 17 forks source link

Python 2 and 3 interoperability #11

Closed mcquin closed 7 years ago

mcquin commented 7 years ago

This line prevents Python 3 use:

#! /usr/bin/env python2

Additionally, the Pythonic way of using urllib.parse in 2 and 3 environments is:

from six.moves.urllib.parse import urlparse

From: Cheat Sheet: Writing Python 2-3 compatible code

ctrueden commented 7 years ago

Thanks @mcquin. Would you care to file a PR?

mcquin commented 7 years ago

Sure. I can do that.