Description:
The Python computer language.
|
|
|
Modules list-tool
|
| |
Are anyone aware of a tool that can show me at run-time
which modules (pyd/dll) are loaded into a Python program at a specific time (or over time)?
To clarify, e.g. when running a sample from PyQt4
(examples\tutorials\addressboo k\part1.pyw) and using Process Explorer [1],
I can launch WinDbg from it and get this list of modules:... more »
|
|
More general way of generating PyODBC queries as a dict?
|
| |
Here are my averagely general class methods for creating a dictionary from the result of database queries:
def make_schema_dict(self):
schema = [i[2] for i in self.cursor.tables()
if i[2].startswith('tbl_') or i[2].startswith('vw_')]
self.schema = {table: {'scheme': [row.column_name for row... more »
|
|
@staticmethods called more than once
|
| |
Hi,
i'm somewhat confused working with @staticmethods. My logger and configuration methods are called n times, but I have only one call. n is number of classes which import the loger and configuration class
in the subfolder mymodule. What might be my mistake mistake?
Many thanks
Christian... more »
|
|
Static Maps from Lat Long data in XLS file
|
| |
Hello,
I'm new to Python, but I think it can solve my problem and I am looking for a someone to point me to tutorial or give me some tips here.
I have an xls file that has about 1,000 latitude and longitude points. I want to do one of two things: 1) Save a static maps and street view image from the coordinates, or 2) create an html file with the map and street view image side by side.... more »
|
|
64-bit Python for Solaris
|
| |
Hello python-list,
I'm looking into creating a 32/64-bit Python (2.x and/or 3.x) package
for Solaris. The specificity of that package is that I need to include
both 32-bit and 64-bit binaries in it. The exact way in which the
32/64 support is done is described at [1].
There currently is a Python package that I maintain, which is 32-bit only[2].... more »
|
|
please help
|
| |
WAP in python to accept a list of words on STDIN and searches for a line containing all five vowels(a,e,i,o,u)
|
|
|