Kozyarchuk

1,683
Reputation
139 views

Registered User

Name Kozyarchuk
Member for 1 year
Seen Sep 19 at 1:26
Website
Location New York, NY
Age 36
Developer/Project manager in Financial space. Using Python, C#, Slang and XP.
Nov
17
awarded  Notable Question
Nov
12
awarded  Notable Question
Oct
13
awarded  Yearling
Sep
22
awarded  Nice Answer
Sep
16
awarded  Nice Answer
Sep
15
awarded  Notable Question
Aug
4
comment Python: prefer several small modules or one larger module?
Well, import cost would generally be in seconds even for larger apps and is usually at startup, so may not be as much of an issue for a long running process. But it could make a big difference if you are building a user launchable application or creating a subprocess to perform certain tasks in parallel.
Aug
3
comment Python: prefer several small modules or one larger module?
Importing a module causes a file seek/read operation, which is quite expensive. So there is a non trivial application startup cost to having modules. Unless distributing you code in zipped mode, having several hundred modules will cost you on the order of 2-5 seconds to import. ( more if you import from the network).
Jul
21
answered Looking for Python gui
Jul
9
comment Why is Ruby more suitable for Rails than Python?
For me the fact that I need to put in lot's of space wasting "ends" in Ruby more than makes up for lack of obscure "nice" features.
Jun
9
awarded  Tumbleweed