Sequence based identifiers are used for versioning (schema follows below):
major.minor[.revision]
- It's always safe to upgrade within the same minor version (for example, from 0.3 to 0.3.4).
- Minor version changes might be backwards incompatible. Read the release notes carefully before upgrading (for example, when upgrading from 0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.
2024-11-14
- Minor fixes.
2024-10-30
- Upgrade Pillow related code to work with Pillow>=9.1.0 (tested with 10.x and 11.x).
- Drop EOL Python 3.8 support.
2024-09-10
- Minor fixes.
2023-11-20
- Minor documentation fixes.
2023-11-19
- Make
text_extractor_cls
andtext_augmenter_cls
arguments of theAugmentFileFromDirProvider
provider access string values (to load requested class from path given). - Add
TextaugmentAugmenter
based on textaugment package (very lightweight) and make it a default text augmenter. - Minor documentation fixes.
- Optimized GitHub CI.
2023-10-10
- Improvements and fixes in the documentation.
- Announcing feature plans to change default PDF and Image generators to Pillow based ones, instead of wkhtmltopdf in version 0.18.
2023-09-21
Note
This release is dedicated to the victims of the war in Artsakh (Nagorno-Karabakh), a land now lost to its native inhabitants (Armenians). Following a grueling nine-month blockade, Azerbaijan initiated another military onslaught on September 19, 2023. The already weakened and outnumbered forces of Artsakh could no longer mount an effective resistance.
- Added support for
DynamicTemplate
to all non-graphic image providers. That means, that you can produce images with text, tables, various headings and other images. Correspondent snippets are implemented for all supported image generators; namely reportlab, WeasyPrint and Pillow.
2023-09-12
- Added
GTTS_MP3_GENERATOR
andEDGE_TTS_MP3_GENERATOR
to themp3_file
provider import options.
2023-09-09
- Added
add_paragraph
,add_picture
,add_heading_h1
and other heading helpers topil_snippets
contrib module.
2023-08-22
Note
This release might introduces minor backwards incompatible changes only
if you have written own- or customized existing- image providers and used
them in combination with WeasyPrint-based image generator. A new
property named image_format
has been added to all image-based
providers and the WeasyPrintImageGenerator
is using that instead
of formerly used extension
property.
- Added
PilImageGenerator
(for text-to-image). - Added
PilPdfGenerator
(for text-to-image).
2023-08-18
Note
Release is dedicated to the victims and de-facto hostages of the Blockade of the Republic of Artsakh. Have you ever heard of Armenian genocide? It's happening again. For more than 8 months, Azerbaijan has launched an illegal blockade of the Republic of Artsakh, including critical civilian infrastructure such as gas, electricity and roads connecting Armenia and Artaskh. Shortages of essential goods – including electricity, fuel, and water reserves – are widespread and emergency reserves are being rationed. The blockade has resulted in significant medical and food shortages in Artsakh, leading to increased health complications, as reported by Artsakh Healthcare ministry.
- Deaths due to cardiovascular diseases doubled in the first seven months of the year, with a particular surge in July-August.
- Deaths from malignant tumors rose by 15.9% over the same period due to lack of medications and medical aid.
- New cases of stroke and heart attacks increased by 26% and 9.7% respectively.
- Newly diagnosed cases of malignant tumors rose by 24.3%.
- Around 90% of monitored pregnant women developed anemia from poor nutrition and medication shortages.
- While overall abortion numbers remained stable, medically indicated abortions quadrupled in July due to factors like stress and inadequate nutrition.
- Reports of fainting surged by 91% in July-August.
- Emergency calls for high blood pressure saw a 5.6-fold increase in July-August.
The dire health outcomes are attributed to the blockade's impact, including medication shortages, stress, disrupted medical procedures, and restricted healthcare access. The Artsakh Health Ministry warns of further deterioration if the blockade continues, emphasizing the systemic challenges in healthcare delivery due to the blockade.
- Added
AugmentRandomImageFromDirProvider
andAugmentImageFromPathProvider
providers for basic image augmentation. - Added
storage
to metadata for all providers for easy clean-up of files. - Added
unlink
method to all storages for easy clean-up of files. - Added
FileRegistry
to keep track of all files created and introduce functionality for cleaning up the files. - Stop testing against Python 3.7.
2023-08-02
Note
In memory of Sinead O'Connor.
- Allow to pass
image
argument (bytes
) to the contribadd_picture
functions. - Documentation improvements.
2023-07-25
- Added
JSON
file provider.
2023-07-21
- Added
WeasyPrintImageGenerator
image generator class based on WeasyPrint and pdf2image packages. - Added
BMP
,TIFF
andGIF
file providers (both text-to-image and graphic ones). Note, that above mentioned text-to-image providers are usingWeasyPrintImageGenerator
as a default image generator class, sinceImagekitImageGenerator
class isn't capable of supporting the above mentioned file formats. - Added more helper functions for
DynamicTemplate
use for ODT, PDF and DOCX file providers to support h1, h2, h3, h4, h5 and h6 headings.
2023-07-12
Note
Release is dedicated to the victims and de-facto hostages of the Blockade of the Republic of Artsakh. Have you ever heard of Armenian genocide? It's happening again and the world silently watches.
- Introducing graphic image providers. Prior to this release, images have
been created using text-to-image solutions. Sometimes it's just handy to
have a graphic image. Therefore, a number of graphic image file providers
have been created (including inner functions support). The following graphic
file providers have been added:
GraphicIcoFileProvider
,GraphicJpegFileProvider
,GraphicPdfFileProvider
,GraphicPngFileProvider
andGraphicWebpFileProvider
to support creation of graphicICO
,JPEG
,PDF
,PNG
andWEBP
files. - The previously mentioned text-to-image rendering has been delegated to image generators. Default generator is still based on the imgkit, but the change makes it possible to use custom generators.
2023-07-01
- Documentation improvements. Added a dedicated section for creating ODT files.
- Adding
add_paragraph
andadd_page_break
toODT
contrib module.
2023-06-30
- Documentation improvements. Added a dedicated section for creating PDF files. Added a dedicated section for creating DOCX files.
- Adding
add_paragraph
andadd_page_break
toDOCX
contrib module.
2023-06-28
- Moving some of the snippets from tests to a
contrib
module to improve usability. The snippets are generic enough to be used in tests and if you don't like the way they work, you could always make a new one. New snippets to insert page breaks and paragraphs into PDF (using both pdfkit and reportlab generators) have been added.
2023-06-23
- Better error handling in CLI.
2023-06-21
Note
This release is dedicated to my beloved son - Tigran, who turned 11!
Note
This release introduces minor backwards incompatible changes.
Minor improvements in PDF generation. If you have been using
DynamicTemplate
to generate complex PDFs, you are likely affected by the change. Make sure to at least add an additional argument namedgenerator
to the functions passed to theDynamicTemplate
class. See the example below:Old:
def add_pb(provider, story, data, counter, **kwargs):
New:
def add_pb(provider, generator, story, data, counter, **kwargs):
Add code examples of how to generate a PDF with 100 pages with both
PdfkitPdfGenerator
andReportlabPdfGenerator
PDF generator classes.Add
version
CLI command.Add
generate-completion
andversion
commands to the CLI auto-completion.
2023-06-18
- Minor fixes and documentation improvements.
2023-06-15
- Improved
SFTPStorage
tests. - Stop testing against Python 3.7.
- Stop testing against Django 4.0.
2023-06-14
- Add
SFTPStorage
and correspondent tests.
2023-06-08
- Add optional
subject
argument to theEmlFileProvider
. Update tests accordingly. - Add data integrity tests.
2023-06-06
- Added
FileFromPathProvider
provider, which simply picks a file from path given. Add correspondentcreate_inner_file_from_path
inner function.
2023-06-05
- Added
format_func
argument to most of the providers. This allows to control which formatter function will be used as a default formatter. Previously it has beenfaker.provider.Python.pystr_format
, which has been changed tofaker.provider.Python.parse
, since the latter is more convenient (as it does not transform characters like?
,!
,#
into something else usingbothify
method). To revert this behaviour, make sure to pass a callable functionfaker_file.base.pystr_format_func
informat_func
argument to each correspondent provider or inner function. - Added
create_inner_random_file_from_dir
inner function. - Tested against Django 4.2.
- Stop testing against Django 2.2.
2023-05-11
- Minor fixes in
xml_file
provider.
2023-05-11
- Changed type of
data_columns
forxml_file
provider fromSequence[Tuple[str, str]]
toDict[str, str]
. - In the
pdf_file
provider, changed default value ofpdf_generator_cls
from concretePdfkitPdfGenerator
value to its' string representation faker_file.providers.pdf_file.generators.pdfkit_generator.PdfkitPdfGenerator. - In the
mp3_file
provider, changed default value ofmp3_generator_cls
from concreteGttsMp3Generator
value to its' string representation faker_file.providers.mp3_file.generators.gtts_generator.GttsMp3Generator.
2023-05-10
- Minor fixes in the
GenericFileProvider
.
2023-05-09
- Add
create_inner_generic_file
inner function. - Add
generic_file
support to CLI.
2023-05-08
- Add support for
list_create_inner_file
-like functions to theEML
file provider. If you are using CLI and CLI-completion, make sure to re-generate the completion file. - Add
GenericFileProvider
provider to support generic file types.
2023-05-07
Note
This release introduces minor backwards incompatible changes.
- A new argument
basename
has been added to all providers, inner functions and storage classes. If you have customized things or created your own providers, make sure to make appropriate changes in your code. See the source code for more implementation examples. If you are using CLI and CLI-completion, make sure to re-generate the completion file. - A new inner function
list_create_inner_file
has been added, using which it's possible to create just a list of given files (ignoringcount
value) using given arguments. The amount of files is determined by thefunc_list
(each pair(Callable, kwargs)
corresponds to a single file. BothZipFileProvider
andTarFileProvider
have been altered to reflect these changes. - Added to support for
XML
files throughXmlFileProvider
.
2023-05-05
Note
This release introduces minor backwards incompatible changes.
- Display full path to the created file in the CLI.
- Added
DynamicTemplate
support forPDF
file. Thegenerate
method of theBasePdfGenerator
and classes derived from it, got two new arguments:data
(Dict[str, Any]
), andprovider
(Union[Faker, Generator, Provider]
). If you have implemented custom generators forPDF
(pdf_file
provider), make sure to reflect mentioned changes in your code.
2023-05-02
- Added
DynamicTemplate
support forDOCX
andODT
files.
2023-04-24
Note
In memory of the victims of the Armenian Genocide.
- Expose
mp3_generator_cls
andpdf_generator_cls
CLI options formp3_file
andpdf_file
respectively. - Add
num_files
CLI option for all providers.
2023-04-22
- Make it possible to load classes from strings for passing as arguments
to
mp3_file
andpdf_file
providers.
2023-04-21
- Fixes in CLI options.
2023-04-20
- Fixes in CLI options.
2023-04-19
- Added CLI options.
2023-02-24
Note, that this release introduces breaking changes!
- Make it easy to use a different PDF library with
PdfFileProvider
by addingpdf_generator_cls
andpdf_generator_kwargs
optional arguments to thepdf_file
method. AddedReportlabPdfGenerator
class based on the famousreportlab
library. Default is stillPdfkitPdfGenerator
. Sinceencoding
was something specific forpdfkit
library, it was moved frompdf_file
method toPdfkitPdfGenerator
, to which it can be passed inpdf_generator_kwargs
. If you have passed theencoding
argument explicitly, make sure to make correspondent changes. Note, that using the newReportlabPdfGenerator
class could speed-up PDF generation by about 40 times.
2023-02-20
- Fixes in typing of
CsvFileProvider
.Tuple[str, str]
becomesTuple[str, ...]
.
2023-02-16
Note
Release dedicated to my dear valentine - Anahit.
- Added
filename
todata
property of values returned byMp3FileProvider
provider (StringValue
,BytesValue
).
2023-02-10
Moved several interface classes from one location to another. If you haven't implemented custom generators, this won't affect you. If you did, make sure to update your imports:
BaseTextAugmenter
has been moved fromfaker_file.providers.augment_file_from_dir.augmenters.base
tofaker_file.providers.base.text_augmenter
.BaseTextExtractor
has been moved fromfaker_file.providers.augment_file_from_dir.extractors.base
tofaker_file.providers.base.text_extractor
.BaseMp3Generator
has been moved fromfaker_file.providers.mp3_file.generators.base
tofaker_file.providers.base.mp3_generator
.
2023-02-07
- Add
filename
todata
property of values returned by providers (StringValue
,BytesValue
).
2023-01-31
- Documentation improvements.
- MyPy fixes.
2023-01-25
- Allow returning binary contents of the file by providing the
raw=True
argument (False
by default, works with all provider classes and inner functions). If you have subclassed or overriden provider classes or written custom inner functions, make sure to reflect the changes in your code.
2023-01-21
- Add
TarFileProvider
andcreate_inner_tar_file
function. - Add
OdpFileProvider
andcreate_inner_odp_file
function.
2023-01-20
- Improve
EPUB
document layout. - Improve
PDF
document layout. - Minor documentation improvements.
2023-01-19
- Allow passing
model_name
andaction
arguments to theContextualWordEmbeddingsAugmenter
. - Replace
bert-base-cased
withbert-base-multilingual-cased
as a default model forContextualWordEmbeddingsAugmenter
. - Improve
PPTX
document layout. - Minor fixes in documentation.
2023-01-18
- Add an installation directive
[common]
to install everything except ML libraries. - Added testing of UTF8 content.
2023-01-16
- Switch to PyPI releases of
gtts
. - Stop testing against Django 3.0 and 3.1.
- Documentation improvements.
- Tests improvements.
2023-01-13
- Add
OdtFileProvider
andcreate_inner_odt_file
function. - Documentation improvements.
- Async related deprecation fixes in
EdgeTtsMp3Generator
. - Optimize example factories.
2023-01-11
- Add
AugmentFileFromDirProvider
provider for making augmented copies of randomly picked files from given directory. - Documentation improvements.
- Fixes in setup.
2023-01-09
- Add
fuzzy_choice_create_inner_file
inner function for easy diversion of files within archives (ZIP
,EML
). - Documentation improvements.
- Add
MaryTTS
example (another MP3 generator forMp3FileProvider
).
2023-01-08
- Add missing
mp3_generator_kwargs
argument to thecreate_inner_mp3_file
function. - Clean-up.
2023-01-07
Improvements of the Mp3FileProvider
module:
- Pass active generator to the
Mp3FileProvider
in thegenerator
argument ifBaseMp3Generator
(and all implementations). - Introduce
handle_kwargs
method in theBaseMp3Generator
to handle arbitrary provider specific tuning. - Add
EdgeTtsMp3Generator
MP3 generator. - Add
mp3_generator_kwargs
argument to theMp3FileProvider.mp3_file
method.
2023-01-06
- Add
Mp3FileProvider
. - Add
create_inner_mp3_file
inner function.
2023-01-05
- Fixes in
ZipFileProvider
.
2023-01-04
Note, that this release introduces breaking changes!
- Move all
create_inner_*_file
functions fromfaker_file.providers.zip_file
tofaker_file.providers.helpers.inner
module. Adjust your imports accordingly. - Add
EmlFileProvider
. - Add
create_inner_eml_file
inner function.
2023-01-03
- Add
EpubFileProvider
provider.
2022-12-23
- Add
RrfFileProvider
. - Added
SQLAlchemy
factory example.
2022-12-19
- Fixes in cloud storage.
- Documentation fixes.
2022-12-17
- Add optional
encoding
argument toCsvFileProvider
andPdfFileProvider
providers. - Add
root_path
argument to cloud storages. - Moved all image related code (
IcoFileProvider
,JpegFileProvider
,PngFileProvider
,SvgFileProvider
,WebpFileProvider
) toImageMixin
. Moved all tabular data related code (OdsFileProvider
,XlsxFileProvider
) toTabularDataMixin
. - Documentation improvements.
2022-12-16
Note, that this release introduces breaking changes!
- All file system based operations are moved to a separate abstraction layer
of file storages. The following storages have been implemented:
FileSystemStorage
,PathyFileSystemStorage
,AWSS3Storage
,GoogleCloudStorage
andAzureStorage
. Theroot_path
andrel_path
params of the providers are deprecated in favour of storages. See the docs more usage examples.
2022-12-12
- Added
RandomFileFromDirProvider
which picks a random file from directory given. - Improved docs.
2022-12-11
- Pass optional
generator
argument to inner functions of theZipFileProvider
. - Added
create_inner_zip_file
inner function which allows to create nested ZIPs. - Reached test coverage of 100%.
2022-12-10
Note, that this release introduces breaking changes!
Added ODS file support.
Switched to
tablib
for easy, non-variant support of various formats (XLSX, ODS).Silence
imgkit
logging output.ZipFileProvider allows to pass arbitrary arguments to inner functions. Put all your inner function arguments into a dictionary and pass it in create_inner_file_args key inside options argument. See the example below.
zip_file = ZipFileProvider(None).file( prefix="zzz_archive_", options={ "count": 5, "create_inner_file_func": create_inner_docx_file, "create_inner_file_args": { "prefix": "zzz_file_", "max_nb_chars": 1_024, "content": "{{date}}\r\n{{text}}\r\n{{name}}", }, "directory": "zzz", } )
2022-12-09
Note, that this release introduces breaking changes!
- Remove the concept of content generators (and the
correspondent
content_generator
arguments in implemented providers). Instead, allow usage of dynamic fixtures in the providedcontent
argument. - Remove temporary files when creating ZIP archives.
- Various improvements and fixes in docs.
2022-12-08
- Add support for BIN, CSV and XLSX files.
- Better visual representation of generated images and PDFs.
2022-12-07
- Added support for ICO, JPEG, PNG, SVG and WEBP files.
- Documentation improvements.
2022-12-06
- Initial beta release.