Tagged Questions

14
votes
12answers
2k views

CSV File Imports in .Net

I realize this is a newbie question, but I'm looking for a simple solution - it seems like there should be one. What's the best way to import a CSV file into a strongly-typed data structure? Again …
11
votes
5answers
8k views

python: import a module from a folder

How do I import a python module given its relative path? For example, if dirFoo contains Foo.py and dirBar, and dirBar contains Bar.py, how do I import Bar.py into Foo.py? Here's a visual …
10
votes
5answers
3k 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 …
9
votes
9answers
399 views

good or bad practice in python: import in the middle of a file

Suppose I have a relatively long module, but need an external module or method only once. Is it considered ok to import that method or module in the middle of the module? Or should imports only be …
9
votes
7answers
2k views

How do I export (and then import) a Subversion repo?

I'm just about wrapped up on a project where I was using a commercial SVN provider to store the source code. The web host the customer ultimately picked includes a repository as part of the hosting …
8
votes
4answers
257 views

Quickly reading very large tables as dataframes in R

Hello, I have very large tables that I would like to load as a dataframes in R. read.table() has a lot of convenient features, but it seems like there is a lot of logic in the implementation that …
7
votes
7answers
1k views

Actionscript 3 import package.* vs import package.Class

In Actionscript 3, is there any reel overhead between importing a full package versus importing independant classes? E.g.: import flash.display.* vs. import flash.display.Sprite I know it's a good …
7
votes
7answers
384 views

Difference between @import and link in CSS

I'm learning some CSS to tweak my project template. I come to this problem and didn't find a clear answer on the web. Is there a difference between using @import or link in CSS? Use of @import …
7
votes
4answers
225 views

Tidier way of trying to import a module from multiple locations?

Is there a way to tidy-up the following code, rather than a series of nested try/except statements? try: import simplejson as json except ImportError: try: import json except …
7
votes
5answers
585 views

Python, unit-testing and mocking imports

Hello, I am in a project where we are starting refactoring some massive code base. One problem that immediately sprang up is that each file imports a lot of other files. How do I in an elegant way …
7
votes
4answers
3k views

C++ include and import difference

What is the difference between include and import in C++?
6
votes
3answers
164 views

Is `import module` better coding style than `from module import function`?

Let from module import function be called the FMIF coding style. Let import module be called the IM coding style. Let from package import module be called the FPIM coding style. Why is IM+FPIM …
6
votes
5answers
478 views

Any reason to clean up unused imports in Java, other than reducing clutter?

Is there any good reason to avoid unused import statements in Java? As I understand it, they are there for the compiler, so lots of unused imports won't have any impacts on the compiled code. Is it …
6
votes
2answers
239 views

How can I get Perl to give a warning message when a certain package/tag is imported?

I have a package that I just made and I have an "old-mode" that basically makes it work like it worked before: importing everything into the current namespace. One of the nice things about having …
6
votes
7answers
780 views

Import package.* vs import package.SpecificType

Would it suppose any difference regarding overhead to write an import loading all the types within one package (import java.*); than just a specific type (i.e. import java.lang.ClassLoader)? Would the …

1 2 3 4 5 31 next
15 30 50 per page