twisted.python.runtime.Platform class documentationtwisted.python.runtime
(View In Hierarchy)
Gives us information about the platform we're running on.
| Method | __init__ | Undocumented | 
| Method | isKnown | Do we know about this platform? | 
| Method | getType | Get platform type. | 
| Method | isMacOSX | Check if current platform is macOS. | 
| Method | isWinNT | Are we running in Windows NT? | 
| Method | isWindows | Are we running in Windows? | 
| Method | isVista | Check if current platform is Windows Vista or Windows Server 2008. | 
| Method | isLinux | Check if current platform is Linux. | 
| Method | isDocker | Check if the current platform is Linux in a Docker container. | 
| Method | supportsThreads | Can threads be created? | 
| Method | supportsINotify | Return Trueif we can use the inotify API on this 
platform. | 
| Method | _supportsSymlinks | Check for symlink support usable for Twisted's purposes. | 
Do we know about this platform?
| Returns | Boolean indicating whether this is a known platform or not. (type: bool) | |
Check if current platform is macOS.
| Returns | Trueif the current platform has been detected as macOS. (type:bool) | |
Are we running in Windows NT?
This is deprecated and always returns True on win32 because
Twisted only supports Windows NT-derived platforms at this point.
| Returns | Trueif the current platform has been detected as Windows NT. (type:bool) | |
Are we running in Windows?
| Returns | Trueif the current platform has been detected as Windows. (type:bool) | |
Check if current platform is Windows Vista or Windows Server 2008.
| Returns | Trueif the current platform has been detected as Vista (type:bool) | |
Check if current platform is Linux.
| Returns | Trueif the current platform has been detected as Linux. (type:bool) | |
Check if the current platform is Linux in a Docker container.
| Returns | Trueif the current platform has been detected as Linux inside
a Docker container. (type:bool) | |
Check for symlink support usable for Twisted's purposes.
| Returns | Trueif symlinks are supported on the current platform, 
otherwiseFalse. (type:bool) | |