python Programming Glossary: portable
How can I tail a log file in Python? http://stackoverflow.com/questions/12523044/how-can-i-tail-a-log-file-in-python python tail share improve this question The only portable way to tail f a file appears to be in fact to read from it and..
Should you always favor xrange() over range()? http://stackoverflow.com/questions/135041/should-you-always-favor-xrange-over-range not exist. Using range may make your Python 2.x code more portable going forward. range can actually be faster in some cases eg...
Force another program's standard output to be unbuffered using Python http://stackoverflow.com/questions/1544050/force-another-programs-standard-output-to-be-unbuffered-using-python the only solution I can think of is fairly convoluted non portable and probably fraught with problematic details. You can use LD_PRELOAD..
Why is numpy's einsum faster than numpy's built in functions? http://stackoverflow.com/questions/18365073/why-is-numpys-einsum-faster-than-numpys-built-in-functions while many of the older numpy functions focus on a easily portable implementation over a heavily optimized one. I'm just speculating..
What is the best way to open a file for exclusive access in Python? http://stackoverflow.com/questions/186202/what-is-the-best-way-to-open-a-file-for-exclusive-access-in-python need to use the win32file module. Fortunately there is a portable implementation portalocker using the platform appropriate method..
Getting method parameter names in python http://stackoverflow.com/questions/218616/getting-method-parameter-names-in-python of Python such as IronPython and Jython. One portable way to admit pass through arguments is to define your function..
How to limit Python heap size? http://stackoverflow.com/questions/2308091/how-to-limit-python-heap-size married to a pure Python solution it does not need to be portable so anything that works on Linux is fine. import resource rsrc..
Create directory if it doesn't exist for file write http://stackoverflow.com/questions/273192/create-directory-if-it-doesnt-exist-for-file-write the file exists it's not clear that that's even remotely portable but is explored in Is there a cross platform way of getting..
How to get current CPU and RAM usage in Python? http://stackoverflow.com/questions/276052/how-to-get-current-cpu-and-ram-usage-in-python running processes and system utilization CPU memory in a portable way by using Python implementing many functionalities offered..
Python datetime to Unix timestamp http://stackoverflow.com/questions/2775864/python-datetime-to-unix-timestamp return calendar.timegm future.utctimetuple It's also more portable than s flag to strftime which doesn't work on Windows . share..
Suggestions for a Cron like scheduler in Python? http://stackoverflow.com/questions/373335/suggestions-for-a-cron-like-scheduler-in-python Cron has been around for years but I'm trying to be as portable as possible. I cannot rely on its presence. python cron share..
Non-blocking read on a subprocess.PIPE in python http://stackoverflow.com/questions/375427/non-blocking-read-on-a-subprocess-pipe-in-python the stream before I invoke .readline I'd like this to be portable or at least work under Windows and Linux. here is how I do it..
Test if executable exists in Python? http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python if executable exists in Python In python is there a portable and simple way to test if an executable program exists By simple..
What cross-platform GUI libraries are simple, lightweight, and have minimal dependencies? http://stackoverflow.com/questions/426718/what-cross-platform-gui-libraries-are-simple-lightweight-and-have-minimal-depe the most commonly used one and almost the only one that is portable between Unix Mac and Windows. Since it's part of the standard..
how to print to stderr in python? http://stackoverflow.com/questions/5574702/how-to-print-to-stderr-in-python question I found this to be the only one short flexible portable readable from __future__ import print_function ... def warning..
How would you implement a basic event-loop? http://stackoverflow.com/questions/658403/how-would-you-implement-a-basic-event-loop from XConnectionNumber . X11 also provides a high level portable API for this XNextEvent but if you were to use that you wouldn't..
Python: Is explicitly closing files important? http://stackoverflow.com/questions/7395542/python-is-explicitly-closing-files-important collection implementation because it makes your code less portable. You might not have resource leaks if you use CPython but if..
Is there a portable way to get the current username in Python? http://stackoverflow.com/questions/842059/is-there-a-portable-way-to-get-the-current-username-in-python there a portable way to get the current username in Python Is there a portable.. way to get the current username in Python Is there a portable way to get the current user's username in Python i.e. one that..
Python: how do I install SciPy on 64 bit Windows? http://stackoverflow.com/questions/1517129/python-how-do-i-install-scipy-on-64-bit-windows tried it but you may want to download this version of Portable Python . It comes with Scipy 0.7.0b1 running on Python 2.5.4...
How to install external libraries with Portable Python? http://stackoverflow.com/questions/16171658/how-to-install-external-libraries-with-portable-python to install external libraries with Portable Python I can't install Python on my machine due to administrator.. due to administrator privileges but I did download open Portable Python successfully. I am on a Windows 7 64 bit machine. How..
How to deploy Python to Windows users? http://stackoverflow.com/questions/1646326/how-to-deploy-python-to-windows-users deployment lazarus share improve this question Copy a Portable Python folder out of your installer into the same folder as..
Did anyone try Portable Python? [closed] http://stackoverflow.com/questions/259160/did-anyone-try-portable-python anyone try Portable Python closed I have recently discovered Portable Python as.. try Portable Python closed I have recently discovered Portable Python as a very interesting tool. I am a linux user and I am..
Python OOP and lists http://stackoverflow.com/questions/2878499/python-oop-and-lists it outputs 10 20 44 4 . What am I missing here I'm using Portable Python 3.0.1. Thank you python class variables share improve..
Adding REST to Django [closed] http://stackoverflow.com/questions/308605/adding-rest-to-django functions in Django that return JSON results. Explicit Portable to other frameworks Doesn't require patching Django share..
Distributing Programs Written in Python [duplicate] http://stackoverflow.com/questions/4190635/distributing-programs-written-in-python gui2exe except freeze . Another approach would be to use Portable Python or in case of Linux BSD StaticPython Note Not all of..
fast, large-width, non-cryptographic string hashing in python http://stackoverflow.com/questions/5400275/fast-large-width-non-cryptographic-string-hashing-in-python the avalanche properties at least with my dumb examples. Portable. Given the same input string on two different machines I should..
|