A django utility that creates unique file names for uploaded files via uuids.
conda install conda-forge::django-unique-upload
conda install conda-forge/label/cf201901::django-unique-upload
conda install conda-forge/label/cf202003::django-unique-upload
conda install conda-forge/label/gcc7::django-unique-upload
This eliminates the need to check if the a file already exists with the same name. Checking incurs overhead. Removing the need to check boosts performance. Popular pacakges like django storages don't check if a file already exists with the same name by default. They instead overwrite the file. Using unique file names ensures that no file is over written.