Skip to content

Instantly share code, notes, and snippets.

@samdmarshall
Created March 13, 2015 19:09
Show Gist options
  • Save samdmarshall/43bc322b66812f571f23 to your computer and use it in GitHub Desktop.
Save samdmarshall/43bc322b66812f571f23 to your computer and use it in GitHub Desktop.
# my_module/
# __init__.py
# Helpers/
# __init__.py
# plist_helper.py
# Foo/
# __init__.py
# foo.py
# Bar/
# __init__.py
# bar.py
# Bazz/
# __init__.py
# bazz.py
#
# From 'bazz.py' I want to import 'plist_helper.py', how do i do this?
@pudquick
Copy link

from ....Helpers import plist_helper

(but already told you this on IRC :D)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment