Package nuke :: Module localization
[hide private]
[frames] | no frames]

Source Code for Module nuke.localization

 1  #!/usr/bin/env python 
 2  # -*- coding: utf-8 -*- 
 3   
 4  """ 
 5  APIs for Nuke's localization functionality. 
 6   
 7  Use help('_localization') to get detailed help on the classes exposed here. 
 8   
 9  This module provides the public interface to the localization module and will 
10  remain stable. It uses an underlying native module called _localization to 
11  provide this interface. While there is nothing stopping you from using the 
12  _localization module directly, it may change in a future release and break  
13  backwards compatibility. 
14  """ 
15   
16  # Import the internal module from C++ 
17  from _localization import * 
18