The import tag has no wiki summary.
0
votes
0answers
54 views
Import data and modify
I should build an importer in PHP. So below you can see how it should work or how it currently works.
This is only a small example, the real importer is much bigger so the import() method is also ...
0
votes
2answers
477 views
Script/tool to import series of snapshots, each being a new edition, into GIT, populating source tree? [closed]
I've developed code locally and taken a fairly regular snapshot whenever I reach a significant point in development, e.g. a working build.
So I have a long-ish list of about 40 folders, each folder ...
3
votes
2answers
167 views
Python - defining exit method before importing
This breaks nothing (in my experience), but lots of things "don't break anything" and are still wrong.
#! /usr/bin/env python
"""Short description of this module."""
def ...
0
votes
1answer
71 views
Is it okay to check in changes to import statement on opensource projects on a commit? [duplicate]
There are some guidelines out there (eg scala guidelines) and I'm wondering if it's okay to do some tidying up when committing other changes or if the commits should be more focused and to the point?
...
2
votes
1answer
243 views
Python - Importing modules and visibility
Consider the following code:
a.py
import os
def print_rand():
print os.urandom()
And another module:
b.py
from a import *
In this code, I end up with an os variable getting imported from ...
8
votes
4answers
504 views
When to import names into the global namespace? (using x::y, from x import y etc.)
I've been programming in various languages for about 10 years now. And I still haven't figured out when it is a good idea to import something into the global namespace (using x::y in C++, from x ...
-1
votes
4answers
492 views
Importing java.awt.* does not automattically imports java.awt.event.*?
In the Java programming language, why does importing of java.awt.* does not automatically import java.awt.event.* too?
Now, you guys may say that it's because it's java.awt.* and not something like ...
0
votes
2answers
215 views
Ideal “intermediate” file format to use for structured/styled text?
I have files that I want to make available in an variety of formats:
HTML
PDF
EPUB
Plain Text (maybe)
Most of the files will be sourced in doc, docx, or rtf format, so that needs to be considered.
...
38
votes
4answers
5k views
Experience of Python's “PEP-302 New Import Hooks”
I'm one of the developers of Ruby (CRuby). We are working on Ruby 2.0 release (planned to release 2012/Feb).
Python has "PEP302: New Import Hooks" (2003):
This PEP proposes to add a new set of ...
5
votes
2answers
564 views
Development Patterns for dealing with Data Import / Export
I have a ASP.NET web based application that allows the end user to export data to a flat file format. (essentially taking a point-in-time backup of their work)
At a later date they can re-upload ...