Jul-03-2020, 02:08 PM
Hi there - good day dear python-experts,
i am just trying to get more python-skills.
today i am working on the csv-saving of data.
while i am scraping unstructured data from a website using BeautifulSoup to pull out the data-chunks that I need. Afterwards i want to structure the dataset. I am aiming this coz i think it is best to added the values to a list. And then - afterwards i want to add them to a csv file.
I plan to do this so - with this method, bcause the list gets new values every time the the loop is called.
there is a loop: it is aimed to add permanently new values to the file so that my csv file has values from each turn in the loop.
regards yours apollo
i am just trying to get more python-skills.
today i am working on the csv-saving of data.
while i am scraping unstructured data from a website using BeautifulSoup to pull out the data-chunks that I need. Afterwards i want to structure the dataset. I am aiming this coz i think it is best to added the values to a list. And then - afterwards i want to add them to a csv file.
I plan to do this so - with this method, bcause the list gets new values every time the the loop is called.
there is a loop: it is aimed to add permanently new values to the file so that my csv file has values from each turn in the loop.
(the fetching part that i arrange with requests ) for i in range(1, 100): url = "https://my-website.com/webid={}".format(i) s = session.get(url, headers=headers, cookies=cookies) soup = bs(s.text, 'html.parser') data = soup.find_all('td') t = soup.find_all('td') a = t[0] b = t[1] c = t[2] d = t[3] e = t[4] f = t[5] g = t[4] info = [a, b, c, d, e, f, g and so on and so forth] <- [this is my list] print(info) df = pd.DataFrame(info) <- [here i am writing the stuff to the csv-file] df.to_csv('a.csv', mode='a', index=False, header=False)can this be done like so!?
regards yours apollo

Wordpress - super toolkits a. http://wpgear.org/ :: und b. https://github.com/miziomon/awesome-wordpress :: Awesome WordPress: A curated list of amazingly awesome WordPress resources and awesome python things https://github.com/vinta/awesome-python