¡@

Home 

python Programming Glossary: activestate

Automatically determine the natural language of a website page given its URL

http://stackoverflow.com/questions/1167262/automatically-determine-the-natural-language-of-a-website-page-given-its-url

others have suggested see this Python Cookbook Recipe from ActiveState . The Google Natural Language Detection API works very well..

Python's CSV writer produces wrong line terminator

http://stackoverflow.com/questions/1170214/pythons-csv-writer-produces-wrong-line-terminator

my usage of csv.writer Python version ActivePython 2.6.2.2 ActiveState Software Inc. based on Python 2.6.2 r262 71600 Apr 21 2009 15..

How to connect a progress bar to a function?

http://stackoverflow.com/questions/15323574/how-to-connect-a-progress-bar-to-a-function

code is based on a full detailed example of this recipe on ActiveState . EDIT Since the original example is a bit messy IMO the ThreadedClient..

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

MEMORYSTATUS in ctypes.windll.kernel32 see this recipe on ActiveState for the Windows platform. One could put a Python class together..

No Module named django.core

http://stackoverflow.com/questions/312549/no-module-named-django-core

shell. There should be no output ActivePython 2.5.1.1 ActiveState Software Inc. based on Python 2.5.1 r251 54863 May 1 2007 17..

How to read lines from a file in python starting from the end

http://stackoverflow.com/questions/3568833/how-to-read-lines-from-a-file-in-python-starting-from-the-end

links on the net that shows how to do the third approach ActiveState Recipe 120686 Read a text file backwards ActiveState Recipe.. ActiveState Recipe 120686 Read a text file backwards ActiveState Recipe 439045 Read a text file backwards yet another implementation..

Dynamically importing Python module

http://stackoverflow.com/questions/3799545/dynamically-importing-python-module

foo.Foo.__module__ 'foo' Also as suggested in the ActiveState article you might want to add your new module to sys.modules..

how do i rewrite this function to implement OrderedDict?

http://stackoverflow.com/questions/4126348/how-do-i-rewrite-this-function-to-implement-ordereddict

able use Raymond Hettinger's Ordered Dictionary for Py2.4 ActiveState recipe as a base class instead. Minor update Added a __reduce__..

How to convert a python utc datetime to a local datetime using only python standard library?

http://stackoverflow.com/questions/4563272/how-to-convert-a-python-utc-datetime-to-a-local-datetime-using-only-python-stand

Timeout on a Python function call

http://stackoverflow.com/questions/492519/timeout-on-a-python-function-call

with a timeout using the following code borrowed from an ActiveState Cookbook recipe def timeout func args kwargs timeout_duration..

Probability distribution in Python

http://stackoverflow.com/questions/526255/probability-distribution-in-python

and complicated . The other suggestions all resemble the ActiveState recipe. I took it and modified it a little in the hope of making..

Intercepting stdout of a subprocess while it is running

http://stackoverflow.com/questions/527197/intercepting-stdout-of-a-subprocess-while-it-is-running

I used the following code inspired by some posts on ActiveState class FlushFile object Write only flushing wrapper for file..

Why is the value of __name__ changing after assignment to sys.modules[__name__]?

http://stackoverflow.com/questions/5365562/why-is-the-value-of-name-changing-after-assignment-to-sys-modules-name

While trying to do something similar to what's in the ActiveState recipe titled Constants in Python by Alex Martelli I ran into..

Python Config Parser (Duplicate Key Support)

http://stackoverflow.com/questions/5396144/python-config-parser-duplicate-key-support

could possibly find one written for you on PyPi or in the ActiveState recipes. Try looking for a bag or multiset class. I'd either..

numpy float: 10x slower than builtin in arithmetic operations?

http://stackoverflow.com/questions/5956783/numpy-float-10x-slower-than-builtin-in-arithmetic-operations

is Intel Core 2 Duo T9300 2.5GHz WinXP Professional 32 bit ActiveState Python 3.1.3.5 Numpy 1.5.1 END OF EDIT ORIGINAL QUESTION I am..

Ignore case in Python strings

http://stackoverflow.com/questions/62567/ignore-case-in-python-strings

to do case insensitive string comparisons. ~~~~~~~~~~~~~~ ActiveState Code Recipe 194371 Case Insensitive Strings is a recipe for..

Showing page count with ReportLab

http://stackoverflow.com/questions/637800/showing-page-count-with-reportlab

I was able to implement the NumberedCanvas approach from ActiveState. It was very easy to do and did not change much of my existing..

Using MultipartPostHandler to POST form-data with Python

http://stackoverflow.com/questions/680305/using-multipartposthandler-to-post-form-data-with-python

failed... EDIT1 Thanks for your response. I'm aware of the ActiveState httplib solution to this I linked to it above . I'd rather abstract..

Read Unicode characters from command-line arguments in Python 2.x on Windows

http://stackoverflow.com/questions/846850/read-unicode-characters-from-command-line-arguments-in-python-2-x-on-windows

Get sys.argv with Unicode characters under Windows from ActiveState But I've made several changes to simplify its usage and better..