Closed lk-geimfari closed 6 years ago
Would this be something similar to the faker module - factory.faker
for factory_boy? I've read #199 but am still a bit unsure.
That was my original idea. 👍
Aha ok thank you 👍 , factory.faker
is part of factory_boy, so this would be PR to factory_boy? Otherwise we'd need to pull in factory_boy as a dependency and add the functionality here - which would go against the claim in mimesis README that no other modules are required. Or am I missing something? I'd love to have a go at this but I don't want to get it wrong! 😕
@sobolevn What do you suggest? Something like this?
try:
from module import something
except ImportError:
raise ImportError("You should install factory_boy for using this feature")
or maybe just PR to factory_boy?
Also i have created this issue in the repository of factory_boy.
This issue is based on suggestion of @sobolevn from issue #199.
Quote:
If you want to take solve this issue, please read #199.