feat: export (WIP)

This commit is contained in:
Herculino Trotta
2025-02-18 19:55:12 -03:00
parent ebc41a8049
commit 3080df9b66
17 changed files with 105 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
from django.shortcuts import render
from apps.export_app.resources.transactions import TransactionResource
# Create your views here.
def export(request):
dataset = TransactionResource().export()
print(dataset.csv)