How import module as class?
I had a problem when I wanted to create my factory.
I have a directory that looks like that:
classes/
file_1.py
file_2.py
....
factory.py
In file_1
and file_2
, i have some classes definition in like this:
class A():
...
class B():
...
In factory.py
i want create a class on which I could use getattr
function.
I tried to do that:
from classes import file_1, file_2
class Factory(file_1, file_2):
"""doctring"""
def build(dic):
factory = Factory()
return getattr(dic['name'], factory)(**dic['params'])
But file_1
and file_2
are module, not a class.
So what are the other ways that I can use to make my factory ?
And if there are several, which is the best ?
Thank you.
python python-3.x python-import
add a comment |
I had a problem when I wanted to create my factory.
I have a directory that looks like that:
classes/
file_1.py
file_2.py
....
factory.py
In file_1
and file_2
, i have some classes definition in like this:
class A():
...
class B():
...
In factory.py
i want create a class on which I could use getattr
function.
I tried to do that:
from classes import file_1, file_2
class Factory(file_1, file_2):
"""doctring"""
def build(dic):
factory = Factory()
return getattr(dic['name'], factory)(**dic['params'])
But file_1
and file_2
are module, not a class.
So what are the other ways that I can use to make my factory ?
And if there are several, which is the best ?
Thank you.
python python-3.x python-import
add a comment |
I had a problem when I wanted to create my factory.
I have a directory that looks like that:
classes/
file_1.py
file_2.py
....
factory.py
In file_1
and file_2
, i have some classes definition in like this:
class A():
...
class B():
...
In factory.py
i want create a class on which I could use getattr
function.
I tried to do that:
from classes import file_1, file_2
class Factory(file_1, file_2):
"""doctring"""
def build(dic):
factory = Factory()
return getattr(dic['name'], factory)(**dic['params'])
But file_1
and file_2
are module, not a class.
So what are the other ways that I can use to make my factory ?
And if there are several, which is the best ?
Thank you.
python python-3.x python-import
I had a problem when I wanted to create my factory.
I have a directory that looks like that:
classes/
file_1.py
file_2.py
....
factory.py
In file_1
and file_2
, i have some classes definition in like this:
class A():
...
class B():
...
In factory.py
i want create a class on which I could use getattr
function.
I tried to do that:
from classes import file_1, file_2
class Factory(file_1, file_2):
"""doctring"""
def build(dic):
factory = Factory()
return getattr(dic['name'], factory)(**dic['params'])
But file_1
and file_2
are module, not a class.
So what are the other ways that I can use to make my factory ?
And if there are several, which is the best ?
Thank you.
python python-3.x python-import
python python-3.x python-import
edited Nov 22 '18 at 11:28
petezurich
3,50581734
3,50581734
asked Nov 22 '18 at 10:22
iEldeniElden
642317
642317
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You should do
from classes.file_1 import class_in_file_1
Note that if you're using python2
, then you need to create __init__.py
file in classes
directory. No problem if that file is empty
it's not what I want, I have a lot of classes in my files and i want to call it according to his name, but if i doclass Factory(A, B, C):
it does not put classes in attribute of the Factory object.
– iElden
Nov 22 '18 at 10:32
1
So you want to import allA, B, C
so yourFactory
can inherit all of them? I don't really get your point
– enamoria
Nov 22 '18 at 10:36
I do not wantFactory
to inherit from A, B, C, ... I would like A, B, C, ... to be aFactory
attribute, as if I had inherited the file
– iElden
Nov 22 '18 at 10:39
@iElden Could you explain what you mean by "inheriting" a file?
– Norrius
Nov 22 '18 at 10:47
@Norrius I would like classes that are in myfile
to work as attributes offile
. Which would allow me to use getattr to easily have the class I want.
– iElden
Nov 22 '18 at 10:50
|
show 4 more comments
after some research and discussions, I finally found a solution.
i added a __init__
in classes/
folder :
classes/
__init__.py
file_1.py
file_2.py
....
factory.py
And in this file i added a from classes.file_1 import *
for each file.
So, in factory.py
i just do:
import classes
def build(dic):
return getattr(classes, dic['name'])(**dic['params']))
I do not know if this is the best way but it's work fine.
Thanks to you two @enamoria and @Norrius
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428749%2fhow-import-module-as-class%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should do
from classes.file_1 import class_in_file_1
Note that if you're using python2
, then you need to create __init__.py
file in classes
directory. No problem if that file is empty
it's not what I want, I have a lot of classes in my files and i want to call it according to his name, but if i doclass Factory(A, B, C):
it does not put classes in attribute of the Factory object.
– iElden
Nov 22 '18 at 10:32
1
So you want to import allA, B, C
so yourFactory
can inherit all of them? I don't really get your point
– enamoria
Nov 22 '18 at 10:36
I do not wantFactory
to inherit from A, B, C, ... I would like A, B, C, ... to be aFactory
attribute, as if I had inherited the file
– iElden
Nov 22 '18 at 10:39
@iElden Could you explain what you mean by "inheriting" a file?
– Norrius
Nov 22 '18 at 10:47
@Norrius I would like classes that are in myfile
to work as attributes offile
. Which would allow me to use getattr to easily have the class I want.
– iElden
Nov 22 '18 at 10:50
|
show 4 more comments
You should do
from classes.file_1 import class_in_file_1
Note that if you're using python2
, then you need to create __init__.py
file in classes
directory. No problem if that file is empty
it's not what I want, I have a lot of classes in my files and i want to call it according to his name, but if i doclass Factory(A, B, C):
it does not put classes in attribute of the Factory object.
– iElden
Nov 22 '18 at 10:32
1
So you want to import allA, B, C
so yourFactory
can inherit all of them? I don't really get your point
– enamoria
Nov 22 '18 at 10:36
I do not wantFactory
to inherit from A, B, C, ... I would like A, B, C, ... to be aFactory
attribute, as if I had inherited the file
– iElden
Nov 22 '18 at 10:39
@iElden Could you explain what you mean by "inheriting" a file?
– Norrius
Nov 22 '18 at 10:47
@Norrius I would like classes that are in myfile
to work as attributes offile
. Which would allow me to use getattr to easily have the class I want.
– iElden
Nov 22 '18 at 10:50
|
show 4 more comments
You should do
from classes.file_1 import class_in_file_1
Note that if you're using python2
, then you need to create __init__.py
file in classes
directory. No problem if that file is empty
You should do
from classes.file_1 import class_in_file_1
Note that if you're using python2
, then you need to create __init__.py
file in classes
directory. No problem if that file is empty
answered Nov 22 '18 at 10:27
enamoriaenamoria
602521
602521
it's not what I want, I have a lot of classes in my files and i want to call it according to his name, but if i doclass Factory(A, B, C):
it does not put classes in attribute of the Factory object.
– iElden
Nov 22 '18 at 10:32
1
So you want to import allA, B, C
so yourFactory
can inherit all of them? I don't really get your point
– enamoria
Nov 22 '18 at 10:36
I do not wantFactory
to inherit from A, B, C, ... I would like A, B, C, ... to be aFactory
attribute, as if I had inherited the file
– iElden
Nov 22 '18 at 10:39
@iElden Could you explain what you mean by "inheriting" a file?
– Norrius
Nov 22 '18 at 10:47
@Norrius I would like classes that are in myfile
to work as attributes offile
. Which would allow me to use getattr to easily have the class I want.
– iElden
Nov 22 '18 at 10:50
|
show 4 more comments
it's not what I want, I have a lot of classes in my files and i want to call it according to his name, but if i doclass Factory(A, B, C):
it does not put classes in attribute of the Factory object.
– iElden
Nov 22 '18 at 10:32
1
So you want to import allA, B, C
so yourFactory
can inherit all of them? I don't really get your point
– enamoria
Nov 22 '18 at 10:36
I do not wantFactory
to inherit from A, B, C, ... I would like A, B, C, ... to be aFactory
attribute, as if I had inherited the file
– iElden
Nov 22 '18 at 10:39
@iElden Could you explain what you mean by "inheriting" a file?
– Norrius
Nov 22 '18 at 10:47
@Norrius I would like classes that are in myfile
to work as attributes offile
. Which would allow me to use getattr to easily have the class I want.
– iElden
Nov 22 '18 at 10:50
it's not what I want, I have a lot of classes in my files and i want to call it according to his name, but if i do
class Factory(A, B, C):
it does not put classes in attribute of the Factory object.– iElden
Nov 22 '18 at 10:32
it's not what I want, I have a lot of classes in my files and i want to call it according to his name, but if i do
class Factory(A, B, C):
it does not put classes in attribute of the Factory object.– iElden
Nov 22 '18 at 10:32
1
1
So you want to import all
A, B, C
so your Factory
can inherit all of them? I don't really get your point– enamoria
Nov 22 '18 at 10:36
So you want to import all
A, B, C
so your Factory
can inherit all of them? I don't really get your point– enamoria
Nov 22 '18 at 10:36
I do not want
Factory
to inherit from A, B, C, ... I would like A, B, C, ... to be a Factory
attribute, as if I had inherited the file– iElden
Nov 22 '18 at 10:39
I do not want
Factory
to inherit from A, B, C, ... I would like A, B, C, ... to be a Factory
attribute, as if I had inherited the file– iElden
Nov 22 '18 at 10:39
@iElden Could you explain what you mean by "inheriting" a file?
– Norrius
Nov 22 '18 at 10:47
@iElden Could you explain what you mean by "inheriting" a file?
– Norrius
Nov 22 '18 at 10:47
@Norrius I would like classes that are in my
file
to work as attributes of file
. Which would allow me to use getattr to easily have the class I want.– iElden
Nov 22 '18 at 10:50
@Norrius I would like classes that are in my
file
to work as attributes of file
. Which would allow me to use getattr to easily have the class I want.– iElden
Nov 22 '18 at 10:50
|
show 4 more comments
after some research and discussions, I finally found a solution.
i added a __init__
in classes/
folder :
classes/
__init__.py
file_1.py
file_2.py
....
factory.py
And in this file i added a from classes.file_1 import *
for each file.
So, in factory.py
i just do:
import classes
def build(dic):
return getattr(classes, dic['name'])(**dic['params']))
I do not know if this is the best way but it's work fine.
Thanks to you two @enamoria and @Norrius
add a comment |
after some research and discussions, I finally found a solution.
i added a __init__
in classes/
folder :
classes/
__init__.py
file_1.py
file_2.py
....
factory.py
And in this file i added a from classes.file_1 import *
for each file.
So, in factory.py
i just do:
import classes
def build(dic):
return getattr(classes, dic['name'])(**dic['params']))
I do not know if this is the best way but it's work fine.
Thanks to you two @enamoria and @Norrius
add a comment |
after some research and discussions, I finally found a solution.
i added a __init__
in classes/
folder :
classes/
__init__.py
file_1.py
file_2.py
....
factory.py
And in this file i added a from classes.file_1 import *
for each file.
So, in factory.py
i just do:
import classes
def build(dic):
return getattr(classes, dic['name'])(**dic['params']))
I do not know if this is the best way but it's work fine.
Thanks to you two @enamoria and @Norrius
after some research and discussions, I finally found a solution.
i added a __init__
in classes/
folder :
classes/
__init__.py
file_1.py
file_2.py
....
factory.py
And in this file i added a from classes.file_1 import *
for each file.
So, in factory.py
i just do:
import classes
def build(dic):
return getattr(classes, dic['name'])(**dic['params']))
I do not know if this is the best way but it's work fine.
Thanks to you two @enamoria and @Norrius
answered Nov 22 '18 at 11:43
iEldeniElden
642317
642317
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428749%2fhow-import-module-as-class%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown