I want to write a script that will execute on Linux and Solaris. Most of the logic will be identical on both OS, therefore I write just one script. But because some deployed structure will differ (file locations, file formats, syntax of commands), a couple of functions will be different on the two platforms.
This could be dealt with like
if 'linux' in sys.platform:
result = do_stuff_linux()
if 'sun' in sys.platform:
result = do_stuff_solaris()
more_stuf(result)
...
However it seems to cumbersome and unelegant to sprinkle these ifs throughout the code. Also I could register functions in some dict and then call functions via the dict. Probably a little nicer.
Any better ideas on how this could be done?
Solution 1:
You create separate files for each of the functions you need to duplicate and import the right one:
import sys
if 'linux' in sys.platform:
from .linux import prepare, cook
elif 'sun' in sys.platform:
from .sun import prepare, cook
else:
raise RuntimeError("Unsupported operating system: {}".format(sys.platform))
dinner = prepare('pork')
drink_wine()
result = cook(dinner)
Solution 1.5:
If you need to keep everything in a single file, or just don't like the conditional import, you can always just create aliases for the functions like so:
import sys
def prepare_linux(ingredient):
...
def prepare_sun(ingredient):
...
def cook_linux(meal):
...
def cook_sun(meal):
...
if 'linux' in sys.platform:
prepare = prepare_linux
cook = cook_linux
elif 'sun' in sys.platform:
prepare = prepare_sun
cook = cook_sun
else:
raise RuntimeError("Unsupported operating system: {}".format(sys.platform))
dinner = prepare('chicken')
drink_wine()
result = cook(dinner)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With