Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1096669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:18:56+00:00 2026-05-17T00:18:56+00:00

I’m trying to setup a project that contains commons apps (projectA) to be shared

  • 0

I’m trying to setup a project that contains commons apps (projectA) to be shared by several other Django projects (projectB for the sake of this question). I have a directory structure like:

/django/projectA
/django/projectB

I have updated the PYTHONPATH to include “/django” and I can import files from both projectA and projectB in the python shell.

Everything used to be in projectB, and it worked, but now I’m creating projectC. The projectC needs a lot of the same functionality as projectB, so it seemed useful to break out common code. In case I later write other projects.

I have had some success importing URLs from the apps using:

urlpatterns = patterns('',
    ...
    (r'^appname/', include('common.appname.urls')),
    ...
)

But I am unable to import any files. For example I have a new zipcode form field I wrote:

from django.forms.fields import CharField
from django.utils.translation import ugettext_lazy as _
from contrib.core import validators

class ZipcodeField(CharField):
    default_error_messages = {
        'invalid': _(u'Enter a valid zipcode.'),
    }
    default_validators = [validators.validate_zipcode]

located at:

django/projectA/forms/forms.py

When I try to include it in projectB, I get an error that it is undefined:

‘module’ object has no attribute ‘forms’
or
“name ‘projectA’ is not defined”

depending on how I try to include it.

Can someone please help me understand what I am doing wrong and how I am supposed to be sharing code between projects. I’d really like to follow the DRY coding conventions.

thanks
-matt

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T00:18:57+00:00Added an answer on May 17, 2026 at 12:18 am

    I would guess that you are missing the __init__.py files. These indicate to python that a given folder is module which contains importable code. They don’t have to contain anything, just running touch __init__.py in the right folder would be sufficient, or you can save a blank text file using that name.

    If I create the following directory structure:

    projects/
        __init__.py
        projectA/
            __init__.py
            forms/
                forms.py
        projectB/
            __init__.py
            forms/
                forms.py
    

    Then I can execute the following python imports:

    from projects.projectB.forms.forms import MyClass
    from projects.projectB.forms.forms import AnotherClass
    

    The two forms.py files obviously contain MyClass and AnotherClass definitions.

    Also, I would suggest you use a name other than “django” for your top level folder. The actual code for the django framework is also in a module called “django”.

    As for your DRY question, I would move the common code into a third directory in projects/ called something like “shared_apps”.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I know there's a lot of other questions out there that deal with this
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.