Tagged Questions
A logical subdivision of a larger, more complex system.
68
votes
7answers
35k views
How do I unload (reload) a Python module?
I have a long-running python server and would like to be able to upgrade a service without restarting the server. What's the best way do do this?
if foo.py has changed:
unimport foo <-- how ...
58
votes
7answers
20k views
Best way to load module/class from lib folder in Rails 3?
Since the latest Rails 3 release is not auto-loading modules and classes from lib anymore,
what would be the best way to load them?
From github:
A few changes were done in this commit:
Do not ...
56
votes
6answers
42k views
How to get current time in Python
Can anybody tell what is the module/method used to get current time ???
47
votes
4answers
20k views
Retrieving python module path
I want to detect whether module has changed. Now, using inotify is simple, you just need to know the directory you want to get notifications from.
How do I retrieve a module's path in python?
38
votes
4answers
6k views
31
votes
3answers
19k views
Unable to get a list of installed Python modules
I would like to get a list of Python modules, which are in my Python installation (UNIX server).
How can you get a list of Python modules installed in your computer?
31
votes
8answers
14k views
How do I find the location of Python module sources?
How do I learn where the source file for a given Python module is installed? (Is the method is different on Windows than Linux?)
(I want to look at the datetime module sources, but I thought I'd ask ...
29
votes
8answers
3k views
__getattr__ on a module
How can implement the equivalent of a __getattr__ on a class, on a module?
Example
When calling a function that does not exist in a module's statically defined attributes, I wish to create an ...
24
votes
2answers
10k views
How can I install a specific version of a Perl module?
I'm tasked with replicating a production environment to create many test/sit environments.
One of the things I need to do is build up Perl, with all the modules which have been installed (including ...
22
votes
8answers
3k views
How do YOU manage Perl modules when using a package manager?
A recent question here on SO got me thinking.
On most Linux distributions that I tried, some Perl modules would be available through the package manager. Others, of course, not. For quite a while I ...
21
votes
17answers
2k views
Most useful Python modules from the standard library?
I am teaching a graduate level Python class at the University of Paris, and the students need to be introduced to the standard library. I want to discuss with them about some of the most important ...
21
votes
5answers
6k views
Python: import the containing package
In a module residing inside a package, i have the need to use a function defined within the __init__.py of that package. how can i import the package within the module that resides within the package, ...
21
votes
9answers
2k views
When should I write a Linux kernel module?
Some people want to move code from user space to kernel space in Linux for some reason. A lot of times the reason seems to be that the code should have particularly high priority or simply "kernel ...
20
votes
11answers
12k views
What is the most compatible way to install python modules on a Mac?
I'm starting to learn python and loving it. I work on a Mac mainly as well as Linux. I'm finding that on Linux (Ubuntu 9.04 mostly) when I install a python module using apt-get it works fine. I can ...
19
votes
3answers
2k views
What is the intention of Ninject modules?
I'm a complete newbie to nInject
I've been pulling apart someone else's code and found several instances of nInject modules - classes that derive from Ninject.Modules.Module, and have a load method ...
19
votes
8answers
15k views
Python: How to make a cross-module variable?
The __debug__ variable is handy in part because it affects every module. If I want to create another variable that works the same way, how would I do it?
The variable (let's be original and call it ...
18
votes
2answers
939 views
Modules in C++0x
I just discovered this old C++0x draft about modules in C++0x.
The idea was to get out of the current .h/.cpp system by writing only .cpp files which would then generate module files during ...
18
votes
2answers
21k views
Rails /lib modules and
I am writing a custom wrapper for open_flash_chart plugin. It's placed in /lib and load it as a module in ApplicationController.
However, I have some Class hierarchy or smth problem.
From any ...
18
votes
1answer
2k views
What the difference between a namespace and a module in F#?
I've just started learning F# (with little prior experience with .NET) so forgive me for what is probably a very simple question: What the difference between a namespace and a module in F#?
Thanks
...
18
votes
2answers
7k views
What is mattr_accessor in a Rails module?
I couldn't really find this in Rails documentation but it seems like 'mattr_accessor' is the Module corollary for 'attr_accessor' (getter & setter) in a normal Ruby class.
Eg. in a class
class ...
17
votes
1answer
4k views
Using the Underscore module with Node.js
I've been learning about node.js and modules, and can't seem to get the Underscore library to work properly... it seems that the first time I use a function from Underscore, it overwrites the _ object ...
17
votes
5answers
544 views
Why is Sun inventing another module system when everyone has standardised on OSGi?
Sun is putting a lot of effort behind modularising the JDK in the form of Jigsaw, and insinuating that it should be the module format of choice for other Java developers as well. The only notable ...
16
votes
7answers
1k views
How can I tell if a Perl module is core or part of the standard install?
How can I check if a Perl module is part of the core - i.e. it is part of the standard installation?
I'm looking for:
a command-line command:
a Perl subroutine/function to check within code
...
16
votes
4answers
593 views
What is the difference between new Some::Class and Some::Class->new() in Perl?
Many years ago I remember a fellow programmer counselling this:
new Some::Class; # bad! (but why?)
Some::Class->new(); # good!
Sadly now I cannot remember the/his reason why. :( Both forms ...
16
votes
7answers
5k views
Creating a module system (dynamic loading) in C
How would one go about loading compiled C code at run time, and then calling functions within it? Not like simply calling exec().
EDIT: The the program loading the module is in C.
16
votes
5answers
8k views
Can I invoke an instance method on a Ruby module without including it?
Background:
I have a module which declares a number of instance methods
module UsefulThings
def get_file; ...
def delete_file; ...
def format_text(x); ...
end
And I want to call some of ...
15
votes
2answers
175 views
What is a “dual-life” module?
What is a "dual-life" module? It's mentioned in the perldelta for Perl 5.14.
15
votes
3answers
631 views
What is __path__ useful for?
I had never noticed the __path__ attribute that gets defined on some of my packages before today. According to the documentation:
Packages support one more special
attribute, __path__. This is
...
15
votes
5answers
3k views
ruby inheritance vs mixins
In Ruby, since you can include multiple mixins but only extend one class, it seems like mixins would be preferred over inheritance.
My question: if you're writing code which must be extended/included ...
15
votes
13answers
859 views
How to efficiently manage multiple installations of a web application?
From my experience, one of the bigger problems we come across during our webdevelopment process is keeping different setups updated and secure across different servers.
My company has it's own CMS ...
15
votes
6answers
84k views
python ImportError No module named
I am very new at python and I am getting this error:
Traceback (most recent call last):
File "mountain.py", line 28, in ?
from toolkit.interface import interface
ImportError: No module named ...
14
votes
1answer
335 views
How to contribute modules in Play Framework 2.0?
The original Play Framework 1.x had an elegant and simple module management system. Coupled with the Play repository, it was a great way to quickly enhance an application with third party components ...
14
votes
4answers
2k views
How do I call setattr() on the current module?
What do I pass as the first parameter "object" to the function setattr(object, name, value), to set variables on the current module?
For example:
setattr(object, "SOME_CONSTANT", 42);
giving the ...
14
votes
4answers
11k views
How can I initialize a module's instance variables in Ruby?
I have some modules where I would like to use instance variables in. I'm currently initializing them like this:
module MyModule
def self.method_a(param)
@var ||= 0
# other logic goes here
...
14
votes
6answers
827 views
How do I choose a package name for a custom Perl module that does not collide with builtin or CPAN packages names?
I have read the perldoc on modules, but I don't see a recommendation on naming a package so it won't collide with builtin or CPAN module/package names.
In the past, to develop a local Session.pm ...
14
votes
3answers
2k views
Difference between a class and a module
I came from Java and now I am working more with ruby. One language feature I am not familiar with is the module. I am wondering what exactly is a module and when do you use one? Also why use a ...
14
votes
4answers
3k views
Python PostgreSQL modules. Which is best?
I've seen a number of postgresql modules for python like pygresql, pypgsql, psyco. Most of them are Python DB API 2.0 compliant, some are not being actively developed anymore.
Which module do you ...
13
votes
2answers
6k views
using __init__.py
I am not getting usage scenarios or design goals of python __init__.py in my projects.
Assume that I have 'model' directory (refers as a package) which I have kept the following files.
1. ...
13
votes
2answers
361 views
Can I create a Python extension module in D (instead of C)
I hear D is link-compatible with C. I'd like to use D to create an extension module for Python. Am I overlooking some reason why it's never going to work?
13
votes
6answers
9k views
How do I use constants from a Perl module?
If I define a constant in a Perl module, how do I use that constant in my main program? (Or how do I call that constant in the main program?)
13
votes
4answers
3k views
Why should I use Carp instead of warn in Perl?
People keep giving me examples with carp instead of warn. Why? What makes carp better than warn?
13
votes
9answers
5k views
How can I find the version of an installed Perl module?
How do you find the version of an installed Perl module?
This is in an answer down at the bottom, but I figure it important enough to live up here. With these suggestions, I create a function in my ...
12
votes
2answers
220 views
Why does “import module” and then “from package import module” load the module again?
I have a package in my PYTHONPATH that looks something like this:
package/
__init__.py
module.py
print 'Loading module'
If I'm running Python from the package/ directory (or writing ...
12
votes
1answer
309 views
What is the best way to check for infinity in a Perl module?
In one of my modules, I have to deal with the concept of infinity. To date, I have been using 9**9**9 as positive infinity, and this seems to work well, is fast, and seems to be what perl's internals ...
12
votes
2answers
437 views
Should a Perl module raise exceptions (die/croak)?
When writing a Perl module, is it a good practice to use croak/die inside the module?
After all, if the caller doesn't use an eval block, the module might crash the program calling it.
What is the ...
12
votes
2answers
2k views
How to import a .hs file in Haskell
Hi
I have made on file called time.hs which contains a single function for measuring the time another function takes to complete.
Is there a way to import this time.hs file into the other haskell ...
12
votes
8answers
469 views
Is reducing number of cpp translation units a good idea?
I find that if there are a lot of classes the compilation time is dramatically increased when I use one *.h and one *.cpp file per class. I already use precompiled headers and incremental linking, but ...
12
votes
3answers
8k views
Checking python module version at runtime
Many 3rd party python modules have an attribute which holds the version info for the module (usually something like module.VERSION or module.__version__), however some do not.
Particular examples of ...
12
votes
5answers
4k views
Is there a standard way to list names of Python modules in a package?
Is there a straightforward way to list the names of all modules in a package, without using __all__?
For example, given this package:
/testpkg
/testpkg/__init__.py
/testpkg/modulea.py
...
12
votes
12answers
2k views
Overriding functionality with modules in Linux kernel
Without getting into the details of why, I'm looking for a clean (as possible) way to replace kernel functions and system calls from a loadable module. My initial idea was to write some code to ...