Writing data on separate rows in csv file in python
I want to extract news headlines from Hindustantimes.com. I have the following code but i get the data in different columns in the same row. I want each news on separate line. Can anyone please help me. Thanks in advance. Here is my code:
import requests
import bs4
import csv
res=requests.get('https://www.hindustantimes.com')
soup=bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text)
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text)
for i in x:
print(i)
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
wr.writerow(x)
python csv beautifulsoup python-requests
add a comment |
I want to extract news headlines from Hindustantimes.com. I have the following code but i get the data in different columns in the same row. I want each news on separate line. Can anyone please help me. Thanks in advance. Here is my code:
import requests
import bs4
import csv
res=requests.get('https://www.hindustantimes.com')
soup=bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text)
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text)
for i in x:
print(i)
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
wr.writerow(x)
python csv beautifulsoup python-requests
add a comment |
I want to extract news headlines from Hindustantimes.com. I have the following code but i get the data in different columns in the same row. I want each news on separate line. Can anyone please help me. Thanks in advance. Here is my code:
import requests
import bs4
import csv
res=requests.get('https://www.hindustantimes.com')
soup=bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text)
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text)
for i in x:
print(i)
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
wr.writerow(x)
python csv beautifulsoup python-requests
I want to extract news headlines from Hindustantimes.com. I have the following code but i get the data in different columns in the same row. I want each news on separate line. Can anyone please help me. Thanks in advance. Here is my code:
import requests
import bs4
import csv
res=requests.get('https://www.hindustantimes.com')
soup=bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text)
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text)
for i in x:
print(i)
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
wr.writerow(x)
python csv beautifulsoup python-requests
python csv beautifulsoup python-requests
edited Nov 21 '18 at 23:48
user3471881
1,2042720
1,2042720
asked Nov 21 '18 at 20:58
Shubh9718Shubh9718
1
1
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
writerow
takes an iterable to write:
writerow(['a', 'b', 'c'])
-> a,b,c
Also, you don't need to append the data to a list before you write.
stories = soup.select('div.subhead4') + soup.select('div.bigstory-mid-h3')
with open('output.csv', 'w') as f:
writer = csv.writer(f)
for headline in stories:
writer.writerow([headline.text.strip()])
This makes more sense than doing the other code. Nice work!
– Kamikaze_goldfish
Nov 21 '18 at 21:37
add a comment |
res = requests.get('https://www.hindustantimes.com')
soup = bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text.strip())
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text.strip())
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
for i in x:
wr.writerow([i])
add a comment |
it simple .csv file, here without using csv module
with open('newz.csv','w') as cF:
for x in soup.select('.subhead4 a'):
cF.write(x.text + 'n')
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420393%2fwriting-data-on-separate-rows-in-csv-file-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
writerow
takes an iterable to write:
writerow(['a', 'b', 'c'])
-> a,b,c
Also, you don't need to append the data to a list before you write.
stories = soup.select('div.subhead4') + soup.select('div.bigstory-mid-h3')
with open('output.csv', 'w') as f:
writer = csv.writer(f)
for headline in stories:
writer.writerow([headline.text.strip()])
This makes more sense than doing the other code. Nice work!
– Kamikaze_goldfish
Nov 21 '18 at 21:37
add a comment |
writerow
takes an iterable to write:
writerow(['a', 'b', 'c'])
-> a,b,c
Also, you don't need to append the data to a list before you write.
stories = soup.select('div.subhead4') + soup.select('div.bigstory-mid-h3')
with open('output.csv', 'w') as f:
writer = csv.writer(f)
for headline in stories:
writer.writerow([headline.text.strip()])
This makes more sense than doing the other code. Nice work!
– Kamikaze_goldfish
Nov 21 '18 at 21:37
add a comment |
writerow
takes an iterable to write:
writerow(['a', 'b', 'c'])
-> a,b,c
Also, you don't need to append the data to a list before you write.
stories = soup.select('div.subhead4') + soup.select('div.bigstory-mid-h3')
with open('output.csv', 'w') as f:
writer = csv.writer(f)
for headline in stories:
writer.writerow([headline.text.strip()])
writerow
takes an iterable to write:
writerow(['a', 'b', 'c'])
-> a,b,c
Also, you don't need to append the data to a list before you write.
stories = soup.select('div.subhead4') + soup.select('div.bigstory-mid-h3')
with open('output.csv', 'w') as f:
writer = csv.writer(f)
for headline in stories:
writer.writerow([headline.text.strip()])
edited Nov 21 '18 at 21:39
answered Nov 21 '18 at 21:26
user3471881user3471881
1,2042720
1,2042720
This makes more sense than doing the other code. Nice work!
– Kamikaze_goldfish
Nov 21 '18 at 21:37
add a comment |
This makes more sense than doing the other code. Nice work!
– Kamikaze_goldfish
Nov 21 '18 at 21:37
This makes more sense than doing the other code. Nice work!
– Kamikaze_goldfish
Nov 21 '18 at 21:37
This makes more sense than doing the other code. Nice work!
– Kamikaze_goldfish
Nov 21 '18 at 21:37
add a comment |
res = requests.get('https://www.hindustantimes.com')
soup = bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text.strip())
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text.strip())
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
for i in x:
wr.writerow([i])
add a comment |
res = requests.get('https://www.hindustantimes.com')
soup = bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text.strip())
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text.strip())
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
for i in x:
wr.writerow([i])
add a comment |
res = requests.get('https://www.hindustantimes.com')
soup = bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text.strip())
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text.strip())
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
for i in x:
wr.writerow([i])
res = requests.get('https://www.hindustantimes.com')
soup = bs4.BeautifulSoup(res.text,'lxml')
x=
for i in soup.select('div.subhead4'):
x.append(i.text.strip())
for i in soup.select('div.bigstory-mid-h3'):
x.append(i.text.strip())
with open('newz.csv','w') as cF:
wr = csv.writer(cF)
for i in x:
wr.writerow([i])
answered Nov 21 '18 at 21:11
Kamikaze_goldfishKamikaze_goldfish
493311
493311
add a comment |
add a comment |
it simple .csv file, here without using csv module
with open('newz.csv','w') as cF:
for x in soup.select('.subhead4 a'):
cF.write(x.text + 'n')
add a comment |
it simple .csv file, here without using csv module
with open('newz.csv','w') as cF:
for x in soup.select('.subhead4 a'):
cF.write(x.text + 'n')
add a comment |
it simple .csv file, here without using csv module
with open('newz.csv','w') as cF:
for x in soup.select('.subhead4 a'):
cF.write(x.text + 'n')
it simple .csv file, here without using csv module
with open('newz.csv','w') as cF:
for x in soup.select('.subhead4 a'):
cF.write(x.text + 'n')
answered Nov 21 '18 at 23:11
ewwinkewwink
12.2k22440
12.2k22440
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420393%2fwriting-data-on-separate-rows-in-csv-file-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown