Python platform.architecture() Examples
The following are 30
code examples of platform.architecture().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
platform
, or try the search function
.
Example #1
Source File: L.E.S.M.A. - Fabrica de Noobs Speedtest.py From L.E.S.M.A with Apache License 2.0 | 8 votes |
def build_user_agent(): """Build a Mozilla/5.0 compatible User-Agent string""" global USER_AGENT if USER_AGENT: return USER_AGENT ua_tuple = ( 'Mozilla/5.0', '(%s; U; %s; en-us)' % (platform.system(), platform.architecture()[0]), 'Python/%s' % platform.python_version(), '(KHTML, like Gecko)', 'speedtest-cli/%s' % __version__ ) USER_AGENT = ' '.join(ua_tuple) printer(USER_AGENT, debug=True) return USER_AGENT
Example #2
Source File: gnu.py From lambda-packs with MIT License | 6 votes |
def _can_target(cmd, arch): """Return true if the architecture supports the -arch flag""" newcmd = cmd[:] fid, filename = tempfile.mkstemp(suffix=".f") os.close(fid) try: d = os.path.dirname(filename) output = os.path.splitext(filename)[0] + ".o" try: newcmd.extend(["-arch", arch, "-c", filename]) p = Popen(newcmd, stderr=STDOUT, stdout=PIPE, cwd=d) p.communicate() return p.returncode == 0 finally: if os.path.exists(output): os.remove(output) finally: os.remove(filename) return False
Example #3
Source File: test.py From debugger with MIT License | 6 votes |
def invoke_adb_gdb_listen(testbin_args, port=31337): global testbin if '_armv7-' in testbin: gdbserver = 'gdbserver_armv7' elif '_aarch64-' in testbin: gdbserver = 'gdbserver_aarch64' else: raise Exception('cannot determine gdbserver architecture from %s' % testbin) cmdline = [] cmdline.append('adb') cmdline.append('shell') cmdline.append('/data/local/tmp/%s :%d /data/local/tmp/%s' % (gdbserver, port, testbin)) cmdline.extend(testbin_args) print('invoke_adb() executing: %s' % ' '.join(cmdline)) shellout(cmdline) print('invoke_adb() done')
Example #4
Source File: filescfg.py From ungoogled-chromium with BSD 3-Clause "New" or "Revised" License | 6 votes |
def filescfg_generator(cfg_path, build_outputs, cpu_arch): """ Generator that yields pathlib.Path relative to the build outputs according to FILES.cfg cfg_path is a pathlib.Path to the FILES.cfg build_outputs is a pathlib.Path to the build outputs directory. cpu_arch is a platform.architecture() string """ resolved_build_outputs = build_outputs.resolve() exec_globals = {'__builtins__': None} with cfg_path.open() as cfg_file: exec(cfg_file.read(), exec_globals) # pylint: disable=exec-used for file_spec in exec_globals['FILES']: # Only include files for official builds if 'official' not in file_spec['buildtype']: continue # If a file has an 'arch' field, it must have cpu_arch to be included if 'arch' in file_spec and cpu_arch not in file_spec['arch']: continue # From chrome/tools/build/make_zip.py, 'filename' is actually a glob pattern for file_path in resolved_build_outputs.glob(file_spec['filename']): # Do not package Windows debugging symbols if file_path.suffix.lower() == '.pdb': continue yield file_path.relative_to(resolved_build_outputs)
Example #5
Source File: gnu.py From lambda-packs with MIT License | 6 votes |
def _can_target(cmd, arch): """Return true if the architecture supports the -arch flag""" newcmd = cmd[:] fid, filename = tempfile.mkstemp(suffix=".f") os.close(fid) try: d = os.path.dirname(filename) output = os.path.splitext(filename)[0] + ".o" try: newcmd.extend(["-arch", arch, "-c", filename]) p = Popen(newcmd, stderr=STDOUT, stdout=PIPE, cwd=d) p.communicate() return p.returncode == 0 finally: if os.path.exists(output): os.remove(output) finally: os.remove(filename) return False
Example #6
Source File: test_platform.py From BinderFilter with MIT License | 6 votes |
def test_uname_win32_ARCHITEW6432(self): # Issue 7860: make sure we get architecture from the correct variable # on 64 bit Windows: if PROCESSOR_ARCHITEW6432 exists we should be # using it, per # http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx try: with test_support.EnvironmentVarGuard() as environ: if 'PROCESSOR_ARCHITEW6432' in environ: del environ['PROCESSOR_ARCHITEW6432'] environ['PROCESSOR_ARCHITECTURE'] = 'foo' platform._uname_cache = None system, node, release, version, machine, processor = platform.uname() self.assertEqual(machine, 'foo') environ['PROCESSOR_ARCHITEW6432'] = 'bar' platform._uname_cache = None system, node, release, version, machine, processor = platform.uname() self.assertEqual(machine, 'bar') finally: platform._uname_cache = None
Example #7
Source File: gnu.py From recruit with Apache License 2.0 | 6 votes |
def _can_target(cmd, arch): """Return true if the architecture supports the -arch flag""" newcmd = cmd[:] fid, filename = tempfile.mkstemp(suffix=".f") os.close(fid) try: d = os.path.dirname(filename) output = os.path.splitext(filename)[0] + ".o" try: newcmd.extend(["-arch", arch, "-c", filename]) p = Popen(newcmd, stderr=STDOUT, stdout=PIPE, cwd=d) p.communicate() return p.returncode == 0 finally: if os.path.exists(output): os.remove(output) finally: os.remove(filename) return False
Example #8
Source File: gnu.py From Computable with MIT License | 6 votes |
def _can_target(cmd, arch): """Return true is the command supports the -arch flag for the given architecture.""" newcmd = cmd[:] fid, filename = tempfile.mkstemp(suffix=".f") try: d = os.path.dirname(filename) output = os.path.splitext(filename)[0] + ".o" try: newcmd.extend(["-arch", arch, "-c", filename]) p = Popen(newcmd, stderr=STDOUT, stdout=PIPE, cwd=d) p.communicate() return p.returncode == 0 finally: if os.path.exists(output): os.remove(output) finally: os.remove(filename) return False
Example #9
Source File: gnu.py From vnpy_crypto with MIT License | 6 votes |
def _can_target(cmd, arch): """Return true if the architecture supports the -arch flag""" newcmd = cmd[:] fid, filename = tempfile.mkstemp(suffix=".f") os.close(fid) try: d = os.path.dirname(filename) output = os.path.splitext(filename)[0] + ".o" try: newcmd.extend(["-arch", arch, "-c", filename]) p = Popen(newcmd, stderr=STDOUT, stdout=PIPE, cwd=d) p.communicate() return p.returncode == 0 finally: if os.path.exists(output): os.remove(output) finally: os.remove(filename) return False
Example #10
Source File: gnu.py From auto-alt-text-lambda-api with MIT License | 6 votes |
def _can_target(cmd, arch): """Return true if the architecture supports the -arch flag""" newcmd = cmd[:] fid, filename = tempfile.mkstemp(suffix=".f") try: d = os.path.dirname(filename) output = os.path.splitext(filename)[0] + ".o" try: newcmd.extend(["-arch", arch, "-c", filename]) p = Popen(newcmd, stderr=STDOUT, stdout=PIPE, cwd=d) p.communicate() return p.returncode == 0 finally: if os.path.exists(output): os.remove(output) finally: os.remove(filename) return False
Example #11
Source File: labview.py From python_labview_automation with MIT License | 6 votes |
def _open_windows_native_key(self, key, sub_key): """ Opens a windows registry key using the OS bitness-based version of the registry view. This method eventually calls the _winreg.OpenKey() method. This is useful because if we're running a 32-bit python interpreter, by default _winreg accesses the 32-bit registry view. This is a problem on 64-bit OSes as it limits us to registries of 32-bit applications. """ import _winreg python_bitness, linkage = platform.architecture() # If we're running 32-bit python, by default _winreg accesses the # 32-bit registry view. This is a problem on 64-bit OSes. if python_bitness == '32bit' and platform.machine().endswith('64'): # Force _winreg to access the 64-bit registry view with the access # map as _winreg.KEY_WOW64_64KEY return _winreg.OpenKey(key, sub_key, 0, _winreg.KEY_READ | _winreg.KEY_WOW64_64KEY) else: return _winreg.OpenKey(key, sub_key) return key
Example #12
Source File: gnu.py From Mastering-Elasticsearch-7.0 with MIT License | 6 votes |
def _can_target(cmd, arch): """Return true if the architecture supports the -arch flag""" newcmd = cmd[:] fid, filename = tempfile.mkstemp(suffix=".f") os.close(fid) try: d = os.path.dirname(filename) output = os.path.splitext(filename)[0] + ".o" try: newcmd.extend(["-arch", arch, "-c", filename]) p = Popen(newcmd, stderr=STDOUT, stdout=PIPE, cwd=d) p.communicate() return p.returncode == 0 finally: if os.path.exists(output): os.remove(output) finally: os.remove(filename) return False
Example #13
Source File: senna.py From razzy-spinner with GNU General Public License v3.0 | 6 votes |
def executable(self, base_path): """ The function that determines the system specific binary that should be used in the pipeline. In case, the system is not known the default senna binary will be used. """ os_name = system() if os_name == 'Linux': bits = architecture()[0] if bits == '64bit': return path.join(base_path, 'senna-linux64') return path.join(base_path, 'senna-linux32') if os_name == 'Windows': return path.join(base_path, 'senna-win32.exe') if os_name == 'Darwin': return path.join(base_path, 'senna-osx') return path.join(base_path, 'senna')
Example #14
Source File: test_platform.py From oss-ftp with MIT License | 6 votes |
def test_uname_win32_ARCHITEW6432(self): # Issue 7860: make sure we get architecture from the correct variable # on 64 bit Windows: if PROCESSOR_ARCHITEW6432 exists we should be # using it, per # http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx try: with test_support.EnvironmentVarGuard() as environ: if 'PROCESSOR_ARCHITEW6432' in environ: del environ['PROCESSOR_ARCHITEW6432'] environ['PROCESSOR_ARCHITECTURE'] = 'foo' platform._uname_cache = None system, node, release, version, machine, processor = platform.uname() self.assertEqual(machine, 'foo') environ['PROCESSOR_ARCHITEW6432'] = 'bar' platform._uname_cache = None system, node, release, version, machine, processor = platform.uname() self.assertEqual(machine, 'bar') finally: platform._uname_cache = None
Example #15
Source File: gnu.py From auto-alt-text-lambda-api with MIT License | 5 votes |
def _universal_flags(self, cmd): """Return a list of -arch flags for every supported architecture.""" if not sys.platform == 'darwin': return [] arch_flags = [] # get arches the C compiler gets. c_archs = self._c_arch_flags() if "i386" in c_archs: c_archs[c_archs.index("i386")] = "i686" # check the arches the Fortran compiler supports, and compare with # arch flags from C compiler for arch in ["ppc", "i686", "x86_64", "ppc64"]: if _can_target(cmd, arch) and arch in c_archs: arch_flags.extend(["-arch", arch]) return arch_flags
Example #16
Source File: parentpoller.py From Computable with MIT License | 5 votes |
def run(self): """ Run the poll loop. This method never returns. """ try: from _winapi import WAIT_OBJECT_0, INFINITE except ImportError: from _subprocess import WAIT_OBJECT_0, INFINITE # Build the list of handle to listen on. handles = [] if self.interrupt_handle: handles.append(self.interrupt_handle) if self.parent_handle: handles.append(self.parent_handle) arch = platform.architecture()[0] c_int = ctypes.c_int64 if arch.startswith('64') else ctypes.c_int # Listen forever. while True: result = ctypes.windll.kernel32.WaitForMultipleObjects( len(handles), # nCount (c_int * len(handles))(*handles), # lpHandles False, # bWaitAll INFINITE) # dwMilliseconds if WAIT_OBJECT_0 <= result < len(handles): handle = handles[result - WAIT_OBJECT_0] if handle == self.interrupt_handle: interrupt_main() elif handle == self.parent_handle: os._exit(1) elif result < 0: # wait failed, just give up and stop polling. warn("""Parent poll failed. If the frontend dies, the kernel may be left running. Please let us know about your system (bitness, Python, etc.) at ipython-dev@scipy.org""") return
Example #17
Source File: pupyimporter.py From mimipy with BSD 3-Clause "New" or "Revised" License | 5 votes |
def install(debug=None, trace=False): global __debug global __trace global modules #if debug: # __debug = True if trace: __trace = trace gc.set_threshold(128) if allow_system_packages: sys.path_hooks.append(PupyPackageFinder) sys.path.append('pupy://') else: sys.meta_path = [] sys.path = [] sys.path_hooks = [] sys.path_hooks = [PupyPackageFinder] sys.path.append('pupy://') sys.path_importer_cache.clear() import platform platform._syscmd_uname = lambda *args, **kwargs: '' platform.architecture = lambda *args, **kwargs: ( '32bit' if pupy.get_arch() == 'x86' else '64bit', '' ) try: if __trace: __trace = __import__('tracemalloc') if __debug and __trace: dprint('tracemalloc enabled') __trace.start(10) except Exception, e: dprint('tracemalloc init failed: {}'.format(e)) __trace = None
Example #18
Source File: test_platform.py From oss-ftp with MIT License | 5 votes |
def test_architecture_via_symlink(self): # issue3762 def get(python): cmd = [python, '-c', 'import platform; print platform.architecture()'] p = subprocess.Popen(cmd, stdout=subprocess.PIPE) return p.communicate() real = os.path.realpath(sys.executable) link = os.path.abspath(test_support.TESTFN) os.symlink(real, link) try: self.assertEqual(get(real), get(link)) finally: os.remove(link)
Example #19
Source File: test_platform.py From oss-ftp with MIT License | 5 votes |
def test_architecture(self): res = platform.architecture()
Example #20
Source File: __init__.py From LKD with BSD 3-Clause "New" or "Revised" License | 5 votes |
def bitness(): """Return 32 or 64""" import platform bits = platform.architecture()[0] return int(bits[:2]) # Use windows.current_process.bitness ? need to fix problem of this imported before the creation of windows.current_process
Example #21
Source File: winobject.py From LKD with BSD 3-Clause "New" or "Revised" License | 5 votes |
def bitness(self): """The bitness of the process :returns: int -- 32 or 64""" import platform bits = platform.architecture()[0] return int(bits[:2])
Example #22
Source File: native_function.py From LKD with BSD 3-Clause "New" or "Revised" License | 5 votes |
def get_int_size(cls): bits = platform.architecture()[0] if bits not in cls.int_size: raise ValueError("Unknow platform bits <{0}>".format(bits)) return cls.int_size[bits]
Example #23
Source File: cpuinfo.py From Mastering-Elasticsearch-7.0 with MIT License | 5 votes |
def __get_nbits(self): abits = platform.architecture()[0] nbits = re.compile(r'(\d+)bit').search(abits).group(1) return nbits
Example #24
Source File: cpuid.py From LKD with BSD 3-Clause "New" or "Revised" License | 5 votes |
def bitness(): """Return 32 or 64""" import platform bits = platform.architecture()[0] return int(bits[:2])
Example #25
Source File: cpuinfo.py From vnpy_crypto with MIT License | 5 votes |
def __get_nbits(self): abits = platform.architecture()[0] nbits = re.compile(r'(\d+)bit').search(abits).group(1) return nbits
Example #26
Source File: gnu.py From auto-alt-text-lambda-api with MIT License | 5 votes |
def is_win64(): return sys.platform == "win32" and platform.architecture()[0] == "64bit"
Example #27
Source File: cpuinfo.py From auto-alt-text-lambda-api with MIT License | 5 votes |
def __get_nbits(self): abits = platform.architecture()[0] nbits = re.compile('(\d+)bit').search(abits).group(1) return nbits
Example #28
Source File: gnu.py From vnpy_crypto with MIT License | 5 votes |
def _universal_flags(self, cmd): """Return a list of -arch flags for every supported architecture.""" if not sys.platform == 'darwin': return [] arch_flags = [] # get arches the C compiler gets. c_archs = self._c_arch_flags() if "i386" in c_archs: c_archs[c_archs.index("i386")] = "i686" # check the arches the Fortran compiler supports, and compare with # arch flags from C compiler for arch in ["ppc", "i686", "x86_64", "ppc64"]: if _can_target(cmd, arch) and arch in c_archs: arch_flags.extend(["-arch", arch]) return arch_flags
Example #29
Source File: gnu.py From vnpy_crypto with MIT License | 5 votes |
def is_win64(): return sys.platform == "win32" and platform.architecture()[0] == "64bit"
Example #30
Source File: configdefaults.py From D-VAE with MIT License | 5 votes |
def local_bitwidth(): """ Return 32 for 32bit arch, 64 for 64bit arch. By "architecture", we mean the size of memory pointers (size_t in C), *not* the size of long int, as it can be different. """ # Note that according to Python documentation, `platform.architecture()` is # not reliable on OS X with universal binaries. # Also, sys.maxsize does not exist in Python < 2.6. # 'P' denotes a void*, and the size is expressed in bytes. return struct.calcsize('P') * 8