Django: How to handle file uploads securely and efficiently?
I'm working on a Django project and encountering an issue with Django REST API. Here's my current implementation:
# models.py
# views.py
from django.shortcuts import render
from .models import Article
def article_list(request):
articles = Article.objects.all()
for article in articles:
print(article.author.username) # N+1 problem here
return render(request, 'articles.html', {'articles': articles})
The specific error I'm getting is: "django.template.exceptions.TemplateDoesNotExist: articles/detail.html"
I've already tried the following approaches:
- Checked Django documentation and Stack Overflow
- Verified my database schema and migrations
- Added debugging prints to trace the issue
- Tested with different data inputs
Environment details:
- Django version: 5.0.1
- Python version: 3.11.0
- Database: PostgreSQL 15
- Operating system: Windows 11
Has anyone encountered this before? Any guidance would be greatly appreciated!
4 Answers
This Django error typically occurs when you're trying to save a model instance that violates a unique constraint. Here's how to handle it properly:
from django.db import IntegrityError
from django.http import JsonResponse
try:
user = User.objects.create(
username=username,
email=email
)
except IntegrityError as e:
if 'username' in str(e):
return JsonResponse({'error': 'Username already exists'}, status=400)
elif 'email' in str(e):
return JsonResponse({'error': 'Email already exists'}, status=400)
else:
return JsonResponse({'error': 'Data integrity error'}, status=400)
Always use get_or_create() when you want to avoid duplicates:
user, created = User.objects.get_or_create(
username=username,
defaults={'email': email, 'first_name': first_name}
)
The difference between threading and multiprocessing in Python is crucial for performance:
Threading (shared memory, GIL limitation):
import threading
import time
def io_bound_task(name):
print(f'Starting {name}')
time.sleep(2) # Simulates I/O operation
print(f'Finished {name}')
# Good for I/O-bound tasks
threads = []
for i in range(3):
t = threading.Thread(target=io_bound_task, args=(f'Task-{i}',))
threads.append(t)
t.start()
for t in threads:
t.join()
Multiprocessing (separate memory, no GIL):
import multiprocessing
import time
def cpu_bound_task(name):
# CPU-intensive calculation
result = sum(i * i for i in range(1000000))
return f'{name}: {result}'
# Good for CPU-bound tasks
if __name__ == '__main__':
with multiprocessing.Pool(processes=4) as pool:
tasks = [f'Process-{i}' for i in range(4)]
results = pool.map(cpu_bound_task, tasks)
print(results)
Concurrent.futures (unified interface):
from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor
# For I/O-bound tasks
with ThreadPoolExecutor(max_workers=4) as executor:
futures = [executor.submit(io_bound_task, f'Task-{i}') for i in range(4)]
results = [future.result() for future in futures]
# For CPU-bound tasks
with ProcessPoolExecutor(max_workers=4) as executor:
futures = [executor.submit(cpu_bound_task, f'Process-{i}') for i in range(4)]
results = [future.result() for future in futures]
To handle Django database transactions properly and avoid data inconsistency, use Django's transaction management:
from django.db import transaction
# Method 1: Decorator
@transaction.atomic
def transfer_money(from_account, to_account, amount):
from_account.balance -= amount
from_account.save()
to_account.balance += amount
to_account.save()
# Method 2: Context manager
def complex_operation():
with transaction.atomic():
# All operations in this block are atomic
user = User.objects.create(username='test')
profile = UserProfile.objects.create(user=user)
# If any operation fails, all are rolled back
For more complex scenarios with savepoints:
def nested_transactions():
with transaction.atomic():
# Outer transaction
user = User.objects.create(username='test')
try:
with transaction.atomic():
# Inner transaction (savepoint)
risky_operation()
except Exception:
# Inner transaction rolled back, outer continues
handle_error()
Here's how to optimize Python code performance using profiling tools:
1. Use cProfile for function-level profiling:
import cProfile
import pstats
# Profile your code
cProfile.run('your_function()', 'profile_output.prof')
# Analyze results
stats = pstats.Stats('profile_output.prof')
stats.sort_stats('cumulative')
stats.print_stats(10) # Top 10 functions
2. Use line_profiler for line-by-line analysis:
# Install: pip install line_profiler
# Add @profile decorator to functions
@profile
def slow_function():
# Your code here
pass
# Run: kernprof -l -v script.py
3. Memory profiling with memory_profiler:
# Install: pip install memory_profiler
from memory_profiler import profile
@profile
def memory_intensive_function():
# Your code here
pass
# Run: python -m memory_profiler script.py
4. Use timeit for micro-benchmarks:
import timeit
# Compare different approaches
time1 = timeit.timeit('sum([1,2,3,4,5])', number=100000)
time2 = timeit.timeit('sum((1,2,3,4,5))', number=100000)
print(f'List: {time1}, Tuple: {time2}')
Comments
michael_code: What about handling this in a Docker containerized environment? Any special considerations? 1 week, 4 days ago
michael_code: Could you elaborate on the select_related vs prefetch_related usage? When should I use each? 1 week, 4 days ago
Your Answer
You need to be logged in to answer questions.
Log In to Answer