How To Import Web Table Content Into Excel And Then Send It Through Email In Python
Although I tried to get this coding done using pandas, xlrd etc libraries, but not able to get success till now.
Problem Statement:
So I have a website that is having two tables and I need to import both the tables into Excel and then filter it on date column and send the output on an email address.
Can someone help on this...!!!
python-2.7 web excel-2007
add a comment |
Although I tried to get this coding done using pandas, xlrd etc libraries, but not able to get success till now.
Problem Statement:
So I have a website that is having two tables and I need to import both the tables into Excel and then filter it on date column and send the output on an email address.
Can someone help on this...!!!
python-2.7 web excel-2007
add a comment |
Although I tried to get this coding done using pandas, xlrd etc libraries, but not able to get success till now.
Problem Statement:
So I have a website that is having two tables and I need to import both the tables into Excel and then filter it on date column and send the output on an email address.
Can someone help on this...!!!
python-2.7 web excel-2007
Although I tried to get this coding done using pandas, xlrd etc libraries, but not able to get success till now.
Problem Statement:
So I have a website that is having two tables and I need to import both the tables into Excel and then filter it on date column and send the output on an email address.
Can someone help on this...!!!
python-2.7 web excel-2007
python-2.7 web excel-2007
asked Nov 22 '18 at 2:47
Nawin MallickNawin Mallick
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I see that you are a new contributor. Welcome, with this in mind I'll try to leave some nice resources that will give you a more holistic idea of solving the problem at hand.
For scraping the tables:
BeautifulSoup has already completed templates out there for parsing through tables. This is touched on in another question (python BeautifulSoup parsing table)
For manipulating excel data:
Openpyxl is a library that I have a small amount of experience with. It has at least limited functionality in manipulating excel spreadsheets. Here is a good resource for learning this (https://automatetheboringstuff.com/chapter12/)
For sending the files in an email:
Python has a library for Simple Mail Transfer Protocol, what email often uses. The smtp and email modules make this possible, although I haven't done it personally.
(https://docs.python.org/3.7/library/email.html#module-email)
(https://docs.python.org/3.7/library/smtplib.html#module-smtplib)
Best of luck!
I tried to read table content but got below error : import pandas as pd con = pd.read_html("confluence.hk.hsbc/display/cvit/Release+Calendar") con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) Error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-1bcb116dc3d4> in <module>() ----> 1 con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) AttributeError: 'list' object has no attribute 'to_csv'
– Nawin Mallick
Nov 22 '18 at 3:12
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%2f53423178%2fhow-to-import-web-table-content-into-excel-and-then-send-it-through-email-in-pyt%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I see that you are a new contributor. Welcome, with this in mind I'll try to leave some nice resources that will give you a more holistic idea of solving the problem at hand.
For scraping the tables:
BeautifulSoup has already completed templates out there for parsing through tables. This is touched on in another question (python BeautifulSoup parsing table)
For manipulating excel data:
Openpyxl is a library that I have a small amount of experience with. It has at least limited functionality in manipulating excel spreadsheets. Here is a good resource for learning this (https://automatetheboringstuff.com/chapter12/)
For sending the files in an email:
Python has a library for Simple Mail Transfer Protocol, what email often uses. The smtp and email modules make this possible, although I haven't done it personally.
(https://docs.python.org/3.7/library/email.html#module-email)
(https://docs.python.org/3.7/library/smtplib.html#module-smtplib)
Best of luck!
I tried to read table content but got below error : import pandas as pd con = pd.read_html("confluence.hk.hsbc/display/cvit/Release+Calendar") con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) Error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-1bcb116dc3d4> in <module>() ----> 1 con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) AttributeError: 'list' object has no attribute 'to_csv'
– Nawin Mallick
Nov 22 '18 at 3:12
add a comment |
I see that you are a new contributor. Welcome, with this in mind I'll try to leave some nice resources that will give you a more holistic idea of solving the problem at hand.
For scraping the tables:
BeautifulSoup has already completed templates out there for parsing through tables. This is touched on in another question (python BeautifulSoup parsing table)
For manipulating excel data:
Openpyxl is a library that I have a small amount of experience with. It has at least limited functionality in manipulating excel spreadsheets. Here is a good resource for learning this (https://automatetheboringstuff.com/chapter12/)
For sending the files in an email:
Python has a library for Simple Mail Transfer Protocol, what email often uses. The smtp and email modules make this possible, although I haven't done it personally.
(https://docs.python.org/3.7/library/email.html#module-email)
(https://docs.python.org/3.7/library/smtplib.html#module-smtplib)
Best of luck!
I tried to read table content but got below error : import pandas as pd con = pd.read_html("confluence.hk.hsbc/display/cvit/Release+Calendar") con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) Error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-1bcb116dc3d4> in <module>() ----> 1 con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) AttributeError: 'list' object has no attribute 'to_csv'
– Nawin Mallick
Nov 22 '18 at 3:12
add a comment |
I see that you are a new contributor. Welcome, with this in mind I'll try to leave some nice resources that will give you a more holistic idea of solving the problem at hand.
For scraping the tables:
BeautifulSoup has already completed templates out there for parsing through tables. This is touched on in another question (python BeautifulSoup parsing table)
For manipulating excel data:
Openpyxl is a library that I have a small amount of experience with. It has at least limited functionality in manipulating excel spreadsheets. Here is a good resource for learning this (https://automatetheboringstuff.com/chapter12/)
For sending the files in an email:
Python has a library for Simple Mail Transfer Protocol, what email often uses. The smtp and email modules make this possible, although I haven't done it personally.
(https://docs.python.org/3.7/library/email.html#module-email)
(https://docs.python.org/3.7/library/smtplib.html#module-smtplib)
Best of luck!
I see that you are a new contributor. Welcome, with this in mind I'll try to leave some nice resources that will give you a more holistic idea of solving the problem at hand.
For scraping the tables:
BeautifulSoup has already completed templates out there for parsing through tables. This is touched on in another question (python BeautifulSoup parsing table)
For manipulating excel data:
Openpyxl is a library that I have a small amount of experience with. It has at least limited functionality in manipulating excel spreadsheets. Here is a good resource for learning this (https://automatetheboringstuff.com/chapter12/)
For sending the files in an email:
Python has a library for Simple Mail Transfer Protocol, what email often uses. The smtp and email modules make this possible, although I haven't done it personally.
(https://docs.python.org/3.7/library/email.html#module-email)
(https://docs.python.org/3.7/library/smtplib.html#module-smtplib)
Best of luck!
answered Nov 22 '18 at 3:05
Lucas LeodlerLucas Leodler
534
534
I tried to read table content but got below error : import pandas as pd con = pd.read_html("confluence.hk.hsbc/display/cvit/Release+Calendar") con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) Error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-1bcb116dc3d4> in <module>() ----> 1 con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) AttributeError: 'list' object has no attribute 'to_csv'
– Nawin Mallick
Nov 22 '18 at 3:12
add a comment |
I tried to read table content but got below error : import pandas as pd con = pd.read_html("confluence.hk.hsbc/display/cvit/Release+Calendar") con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) Error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-1bcb116dc3d4> in <module>() ----> 1 con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) AttributeError: 'list' object has no attribute 'to_csv'
– Nawin Mallick
Nov 22 '18 at 3:12
I tried to read table content but got below error : import pandas as pd con = pd.read_html("confluence.hk.hsbc/display/cvit/Release+Calendar") con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) Error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-1bcb116dc3d4> in <module>() ----> 1 con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) AttributeError: 'list' object has no attribute 'to_csv'
– Nawin Mallick
Nov 22 '18 at 3:12
I tried to read table content but got below error : import pandas as pd con = pd.read_html("confluence.hk.hsbc/display/cvit/Release+Calendar") con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) Error: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-1bcb116dc3d4> in <module>() ----> 1 con.to_csv(r"C:Users44101400Release Comm Projectmydata.csv", index=False) AttributeError: 'list' object has no attribute 'to_csv'
– Nawin Mallick
Nov 22 '18 at 3:12
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%2f53423178%2fhow-to-import-web-table-content-into-excel-and-then-send-it-through-email-in-pyt%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