Skip to content Skip to sidebar Skip to footer

Widget HTML #1

I will do a python script to parse, extract, convert data from CSV, XML, json, HTML,txt


I will do a python script to parse, extract, convert data from CSV, XML, json, HTML,txt

I have been trying to extract only certain data from a JSON file. I managed to decode the JSON and get the wanted data into a python dict.

Get I will do a python script to parse, extract, convert data from CSV, XML, json, HTML,txt

If you need a python script that solves your tasks, whether it is data conversion, file parsing, data extraction from TXT, XML, JSON, HTML, or maybe something else, I'll create it for you! 

Here are some projects I recently have done: 

- A Python script for supermarket net, that extracts information from the cash registers logs about a certain transaction, finds video files from surveillance cameras, finds this transaction by timestamps in the video, and creates a single video file for this transaction along with the list of purchased products. 

- The Python script for uploading data to the Firebase Realtime Database from Excel file along with the uploading images to the Firebase storage The script compares uploaded content with the existing, creates new items in DB, updates or deletes existing if needed. 

- The Python script reads Excel files with zip codes and parcels measurements, gets prices from the TNT delivery company using their API for each address, and saves received data in the structured Excel table. 

Please contact me before ordering so that I can evaluate the complexity of your task, time, and cost.

That sounds like a great idea! Python is a great language for parsing and manipulating data from various file formats such as CSV, XML, JSON, HTML and TXT. You can use Python’s built-in libraries such as csv, json, xml.etree.ElementTree and BeautifulSoup to parse and extract data from these file formats.

Fiverr Course

For example, you can use the csv module to read and write CSV files in Python. Similarly, you can use the json module to read and write JSON files in Python. You can also use the xml.etree.ElementTree module to parse XML files in Python.

To parse HTML files in Python, you can use the BeautifulSoup library which provides a simple way to extract data from HTML and XML files.

Here’s an example of how you can use BeautifulSoup to extract data from an HTML file:

from bs4 import BeautifulSoup

with open("example.html") as fp:

    soup = BeautifulSoup(fp)

# Find all <a> tags

for link in soup.find_all('a'):

    print(link.get('href'))

Sure! Here are some examples of how you can use Python to parse data:

  • Parsing CSV files using Python’s built-in csv module
  • Parsing JSON files using Python’s built-in json module
  • Parsing XML files using Python’s built-in xml.etree.ElementTree module
  • Parsing HTML files using the BeautifulSoup library

Here’s an example of how you can use Python to parse a CSV file:

import csv

with open('data.csv', newline='') as csvfile:

    reader = csv.reader(csvfile, delimiter=' ', quotechar='|')

    for row in reader:

        print(', '.join(row))

Fiverr Free Coupon Discount

Here’s an example of how you can use Python to parse a JSON file:

import json

with open('data.json') as f:

    data = json.load(f)

print(data)

You can use Python’s built-in xml.etree.ElementTree module to parse XML files in Python. Here’s an example of how you can use it:

import xml.etree.ElementTree as ET

tree = ET.parse('filename.xml')

root = tree.getroot()

# Print the tag and text of each child element

for child in root:

    print(child.tag, child.text)

Fiverr Deals

In this example, we first import the xml.etree.ElementTree module and then use its parse() method to parse an XML file named ‘filename.xml’. We then get the root element of the XML file using the getroot() method and iterate over its child elements using a for loop.

My name is Serhii, I am a Software Engineer and I have many years of experience writing programs in Python, PHP, Javascript that helps to automate any routine daily tasks.

At the moment I specialize in the small Python scripts that help to manipulate the data. In my work, I use such libraries as Pandas, OpenCV, Scrapy, Numpy, BeautifulSoup, Pathlib, Argparse, etc.

Responsible for my work, I never let down customers and always treat customers politely. I don't take a task that I can not fulfill. But if I take the task - you can sleep easy, the job will be done and you'll be satisfied.

Basic script : $100

A script that solves one simple task such as extract data from XML/JSON to CSV

I will do a python script to parse, extract, convert data from CSV, XML, json, HTML,txt | Fiverr