Install & Compatibility
Where this runs
tested against v3.3.3 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 66.8MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 3.5s · import 0.000s · 67MB
66MB installed
● package 66MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Collectfasta
✓ import collectfasta
✗ from collectfasta import Collectfasta
Basic setup: add collectfasta to INSTALLED_APPS and configure your static files storage.
# settings.py
INSTALLED_APPS = [
# ...
'collectfasta',
]
# For S3 (using django-storages)
STORAGES = {
"default": {
"BACKEND": "storages.backends.s3.S3Storage",
},
"staticfiles": {
"BACKEND": "storages.backends.s3.S3Storage",
},
}
# Optional: enable two-pass strategy for performance
COLLECTFASTA_STRATEGY = "collectfasta.strategies.filesystem.FileSystemStrategy"
# or use in-memory:
# COLLECTFASTA_STRATEGY = "collectfasta.strategies.memory.MemoryStrategy"
Upgrade
Version history
3.3.3latest on PyPI · released Dec 25, 2025
Audit
Dependencies
djangorequiredRequired as it is a Django application.
django-storagesoptionalOften used together for cloud storage backends.