django-faker icon indicating copy to clipboard operation
django-faker copied to clipboard

Django-faker uses fake-factory to generate test data for Django models and templates

Results 21 django-faker issues
Sort by recently updated
recently updated
newest added

I did a fresh install and was actually able to generate some Users, but then after trying to run a python script outside of the console, something went wrong and...

fake-factory moved to Faker on Pypi, with a minimum version of 0.7.3: https://github.com/joke2k/faker/issues/331

Is it safe to assume this project has been abandoned? If so, would you be open to giving others contributor status (or even transferring ownership of the repo)?

This fixes an import error encountered in django 1.10

When trying to initiate the faker (via `populator = Faker.getPopulator()`) it fails: ``` ImportError: The ``fake-factory`` package is now called ``Faker``. Please update your requirements. ``` Any idea when this...

This error is raised when the following code is called in a Django test case: ```python from django_faker import Faker populator = Faker.getPopulator() populator.addEntity(User, 2) # Task contains a foreign...

Hi all, I get this error when installing django-faker: ``` Step 19 : RUN pip install -r requirements.txt ---> Running in 82fdb2379bfe Downloading/unpacking Django (from -r requirements.txt (line 1)) Downloading/unpacking...

hi thanks for the great project(s)! found a small issue with this project; if the user has not got django installed yet. django-faker will fail also `pip install django django-faker`...

because pip hasn't installed django yet, which is referenced by the `django_faker/__init__.py` adding setup_requires as an 'abstract' dependency in addition to install_requires, as according to the documentation: "...projects listed in...

**Warning - this is a major revision** Things fixed: - Relational field population now works properly - Constraints (unique/unique together) are now taken into consideration - Added a lot more...