the below holder have 100+ XML files. I have to open and read all those files.
F:\Process\Process_files\xmls
So far, I did the below code to open single XML file from the folder. What I need to change to open/read all the XML files from the folder.
from bs4 import BeautifulSoup
import lxml
import pandas as pd
infile = open("F:\\Process\\Process_files\\xmls\\ABC123.xml","r")
contents = infile.read()
soup = BeautifulSoup(contents,'html.parser')