Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix export function #767

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions scrapegraphai/utils/data_export.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
"""
data_export module
This module provides functions to export data to various file formats.
"""
import json
import csv
import xml.etree.ElementTree as ET
from typing import List, Dict, Any

def export_to_json(data: List[Dict[str, Any]], filename: str) -> None:
"""
Export data to a JSON file.

:param data: List of dictionaries containing the data to export
:param filename: Name of the file to save the JSON data
"""
with open(filename, 'w', encoding='utf-8') as f:
json.dump(data, f, ensure_ascii=False, indent=4)
print(f"Data exported to {filename}")

def export_to_csv(data: List[Dict[str, Any]], filename: str) -> None:
"""
Export data to a CSV file.

:param data: List of dictionaries containing the data to export
:param filename: Name of the file to save the CSV data
"""
if not data:
print("No data to export")
return

keys = data[0].keys()
with open(filename, 'w', newline='', encoding='utf-8') as f:
writer = csv.DictWriter(f, fieldnames=keys)
writer.writeheader()
writer.writerows(data)
print(f"Data exported to {filename}")

def export_to_xml(data: List[Dict[str, Any]], filename: str, root_element: str = "data") -> None:
"""
Export data to an XML file.

:param data: List of dictionaries containing the data to export
:param filename: Name of the file to save the XML data
:param root_element: Name of the root element in the XML structure
"""
root = ET.Element(root_element)
for item in data:
element = ET.SubElement(root, "item")
for key, value in item.items():
sub_element = ET.SubElement(element, key)
sub_element.text = str(value)

tree = ET.ElementTree(root)
tree.write(filename, encoding='utf-8', xml_declaration=True)
print(f"Data exported to {filename}")

Loading