Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:question': 0.08; 'scripts': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'splitting': 0.09; 'sub': 0.09; 'subject:modules': 0.09; '"import': 0.16; 'modules,': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'subject:Move': 0.16; 'wrote:': 0.17; 'module': 0.19; 'import': 0.21; 'example': 0.23; 'sets': 0.23; "i've": 0.23; 'header:User-Agent:1': 0.26; 'skip:" 20': 0.26; 'wondering': 0.26; 'correct': 0.28; 'header:X -Complaints-To:1': 0.28; 'folder': 0.30; 'point': 0.31; 'utility': 0.33; 'to:addr:python-list': 0.33; 'there': 0.35; 'received:org': 0.36; 'skip:u 20': 0.36; 'but': 0.36; 'modules': 0.36; 'too': 0.36; 'maintaining': 0.37; 'subject:: ': 0.38; 'nothing': 0.38; 'to:addr:python.org': 0.39; 'called': 0.39; 'short': 0.39; 'header:Received:5': 0.40; 'skip:u 10': 0.60; 'containing': 0.61; 'email addr:gmail.com': 0.63; 'hoping': 0.72; 'goal': 0.74; 'grew': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Move modules to submodules question Date: Fri, 11 Jan 2013 21:33:51 +0100 Organization: None References: <697510fc-4048-47fc-9104-41b845283011@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p50849bce.dip.t-dialin.net User-Agent: KNode/4.7.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1357936445 news.xs4all.nl 6845 [2001:888:2000:d::a6]:43617 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:36643 joshua.kimball@gmail.com wrote: > I have a set of utility modules that were all added to a folder called > (util_mods). Recently the set of modules grew to be too large and I've > been working on splitting it up into sets of sub modules, for example, > util_mods\set_a. The issue is that if I start moving modules to sub > folders I have to go through and update literally thousands of scripts > that import the module from util_mods. I was wondering if there was a way > to move these modules into submodules while still maintaining the imports. > For example "import util_mods.moda " would actually import as > "util_mods.set_a.moda". > > My longterm goal is to update the scripts to point to the correct > submodule/module however I was hoping for a short term solution to this so > I can make the change immediately and update the other scripts over time. Put from .set_a import moda into util_mods/__init__.py Alternatively create an additional util_mods/moda.py containing nothing but from .set_a.moda import *