Refers generally to the process of moving data from an external source into one's platform, program, or data set.
143
votes
11answers
69k views
Include JavaScript file inside JavaScript file?
Is there something similar to @import in CSS in JavaScript that allows you to include a JavaScript file inside a JavaScript file?
90
votes
15answers
105k 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 ...
67
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
6answers
20k views
What is the difference between #import and #include in Objective-C?
What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?
I was reading the following tutorial: ...
45
votes
4answers
4k views
Quickly reading very large tables as dataframes in R
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 would slow ...
32
votes
13answers
15k 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 ...
31
votes
13answers
10k views
How do you dynamically load a javascript file? (Think C's #include)
How can you reliably and dynamically load a javascript file? This will can be used to implement a module or component that when 'initialized' the component will dynamically load all needed javascript ...
29
votes
7answers
3k 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
...
29
votes
8answers
5k 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 ...
27
votes
10answers
26k 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 ...
26
votes
3answers
763 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 ...
26
votes
8answers
17k views
Dynamic module import in Python
I'm writing a Python application that takes as a command as an argument, for example:
$ python myapp.py command1
I want the application to be extensible, that is, to be able to add new modules that ...
21
votes
7answers
590 views
Why can't I “static import” an “equals” method in Java?
I like using this method here:
org.apache.commons.lang.ObjectUtils.equals(Object object1, Object object2)
The only drawback (compared to Google Guava, for instance), is that I cannot static import ...
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, ...
20
votes
3answers
13k views
Import Address Book from Gmail/Hotmail/Yahoo using C# and ASP.NET
Hi can somebody tell me how to import all of my contacts from gmail, yahoo, hotmail and so on.. and i want to send an invitation for all my contacts?
How can i achieve this?
Thank you,
Nagu
19
votes
10answers
2k 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 ...
18
votes
9answers
1k 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 ...
17
votes
1answer
3k views
ASP.net page gets error on import statement, but I do have the reference in place?
Any ideas why I am getting the below error in my MVC2 project, even through in the project itself I definitely have a reference to "system.Web.Entity"?
Compiler Error Message: CS0234: The type or ...
17
votes
4answers
6k views
Python graceful future feature (__future__) import
How do you gracefully handle failed future feature imports? If a user is running using Python 2.5 and the first statement in my module is:
from __future__ import print_function
Compiling this ...
17
votes
5answers
5k views
Python's __import__ doesn't work as expected
When using __import__ with a dotted name, something like: somepackage.somemodule, the module returned isn't somemodule, whatever is returned seems to be mostly empty! what's going on here?
16
votes
7answers
769 views
In python, why is “import *” bad?
It is recommended to not to use import * in python. Can anyone please share the reason for that, so that I can avoid it doing next time.
Thanks and Regards
16
votes
6answers
5k views
How do you run a 300mb+ MS SQL .sql file?
I use RedGate SQL data compare and generate a .sql file so i can run it on my local machine but the problem is the file is over 300mb and i can't do copy and paste because the clipboard won't able to ...
15
votes
6answers
904 views
Automatically remove explicit package declarations with import statements in Java
I have a project created by others that includes thousands of class files and has the package names explicitly typed out for every reference to any of their classes. It looks like the code was reverse ...
14
votes
5answers
11k views
13
votes
3answers
458 views
Importing Google Sketchup models in Mathematica
Google's Sketchup is a nice, simple 3D-object modeler. Moreover Google has an enormous warehouse of 3D objects so that you actually don't have to do much modeling yourself if you aren't particularly ...
13
votes
5answers
369 views
Import from web - set user agent in Mathematica
when I connect to my site with Mathermatica (Import["mysite","Data"]) and look at my Apache log I see:
99.XXX.XXX.XXX - - [22/May/2011:19:36:28 +0200] "GET / HTTP/1.1" 200 6268 "-" ...
13
votes
2answers
5k views
Circular import dependency in Python
Let's say I have the following directory structure:
a\
__init__.py
b\
__init__.py
c\
__init__.py
c_file.py
d\
__init__.py
...
13
votes
3answers
7k views
How to dynamically load a Python class
Given a string of a Python class, e.g. 'my_package.my_module.MyClass', what is the best possible way to load it?
In other words I am looking for a Class.forName() function in Python. It needs to work ...
13
votes
10answers
3k views
What are good rules of thumb for Python imports?
I am a little confused by the multitude of ways in which you can import modules in Python.
import X
import X as Y
from A import B
I have been reading up about scoping and namespaces, but I would ...
12
votes
2answers
219 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
243 views
Can I import from multiple packages all at once in Scala?
At the beginning of my Scala files in a particular project, I often have lines like these:
package com.mycompany
package subproject
import common._
import uiutils._
import databinding._
import ...
12
votes
2answers
12k views
Populate Android Database From CSV file?
Is it possible to take a csv file stored in the res/raw resource directory and use it to populate a table in the sqlite3 database?
My thought was that, if there was a way to do a bulk import for the ...
12
votes
2answers
826 views
Why does Python's __import__ require fromlist?
In Python, if you want to programmatically import a module, you can do:
module = __import__('module_name')
If you want to import a submodule, you would think it would be a simple matter of:
module ...
12
votes
8answers
11k 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 ...
12
votes
1answer
1k views
Python import with name conflicts
I have now bumped into this problem twice recently and am curious if there is a solution.
So I have a module that confilcts with a python builtin. For example, say I have a myapp.email module ...
11
votes
2answers
160 views
What does the '.' (dot or period) in a go import statement do?
In the Go tutorial, and most of the Go code I've looked at, packages are imported like this:
import (
"fmt"
"os"
"launchpad.net/lpad"
...
)
But in ...
11
votes
1answer
158 views
Python: what does “import” prefer - modules or packages?
Suppose in the current directory there is a file named somecode.py, and a directory named somecode which contains an __init__.py file. Now I run some other Python script from this directory which ...
11
votes
2answers
269 views
from <module> import … in __init__.py makes module name visible?
Take the following code example:
File package1/__init__.py:
from moduleB import foo
print moduleB.__name__
File package1/moduleB.py:
def foo(): pass
Then from the current directory:
...
11
votes
7answers
458 views
Should I use static import?
How important it is to convert all my import to static import? Why are people still reluctant to use static import?
11
votes
4answers
2k views
Should I use `import os.path` or `import os`?
According to the official documentation, os.path is a module. Thus, what is the preferred way of importing it?
# Should I always import it explicitly?
import os.path
Or...
# Is importing os ...
11
votes
4answers
575 views
Java import confusion
What is the difference between:
java.awt.*;
and:
java.awt.event.*;
I find both in many programs.
11
votes
4answers
8k views
Python: import a file from a subdirectory
I have a file called tester.py, located on /project.
/project has a subdirectory called lib, with has a file called BoxTime.py:
/project/tester.py
/project/lib/BoxTime.py
I want to import BoxTime ...
11
votes
6answers
595 views
How to find all child modules in Python?
While it is fairly trivial in Python to import a "child" module into another module and list its attributes, it becomes slightly more difficult when you want to import all child modules.
I'm building ...
11
votes
3answers
5k views
Importing “libraries” in powershell
I'm finding myself writing a bunch of related functions dealing with different nouns (clusters, sql servers, servers in general, files, etc.) and put each of these groups of functions in separate ...
10
votes
3answers
3k views
How to use OpenCV in Python?
I have just installed OpenCV on my Windows 7 machine. As a result I get a new directory:
C:\OpenCV2.2\Python2.7\Lib\site-packages
In this directory I have two files: cv.lib and cv.pyd.
Then I try ...
10
votes
1answer
1k views
how to force eclipse to auto import a class when more then one option
In eclipse if a class is used, and it's not imported, and there is only one class with that name...eclipse will automatically import it.
When there are two classes with the same name, eclipse will ...
10
votes
1answer
4k views
Groovy load .csv files
How to read and import .csv file in groovy on grails. I have .csv file with data and
need to import in to db using user interface .
thanks in advance,
srinath
10
votes
3answers
1k views
List all the modules that are part of a python package?
Is there a straightforward way to find all the modules that are part of a python package? I've found this old discussion, which is not really conclusive, but I'd love to have a definite answer before ...
10
votes
4answers
3k views
How can I make the PyDev editor selectively ignore errors?
I'm using PyDev under Eclipse to write some Jython code. I've got numerous instances where I need to do something like this:
import com.work.project.component.client.Interface.ISubInterface as ...
10
votes
9answers
17k views
Copy Image from Remote Server Over HTTP
I am looking for a simple way to import/copy images from remote server to a local folder using PHP. I have no FTP access to the server, but all remote images can be accessed via HTTP (i.e. ...