Tagged Questions

2
votes
2answers
756 views

How do you import your own convenience function modules in Python?

Python can only import files from the current working directory, or from its path, I guess, but this means that if I'm working in a subdirectory on a certain project, I can't import stuff from a ...
1
vote
1answer
35 views

Proper layout of python packages for a Graphical User Interface (GUI)

On the project I'm currently working on (a GUI for a testing system) I'm required to write base classes for all graphical objects and inherit these objects into the class which utilises the graphical ...
0
votes
2answers
92 views

Python: How to loop a process

I'm working on making a small app/script for putting my mp3's in a folder hierarchy the way I want it, as I haven't found a solution for Unix that is just quite right. So I decided to work on my own. ...