Add values to the file from excel sheet with pyhon
I'm novice in python and trying to create a file by adding data from second column of an excel file
excel sheet looks like the one below,
DC_CODE APP_NAME HOST_NAME
APAC Tomcat host1.example.com
APAC Nginx host1.example.com
APAC Apache host1.example.com
I'm using this piece of code to print the values,
import xlrd
import os.path
wb = xlrd.open_workbook(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx'))
sheet = wb.sheet_by_index(0)
sheet.cell_value(0, 0)
for i in range(sheet.nrows):
print(sheet.cell_value(i, 2))
How can we print the output to a file with the heading HOST_NAME removed?
python xlrd
add a comment |
I'm novice in python and trying to create a file by adding data from second column of an excel file
excel sheet looks like the one below,
DC_CODE APP_NAME HOST_NAME
APAC Tomcat host1.example.com
APAC Nginx host1.example.com
APAC Apache host1.example.com
I'm using this piece of code to print the values,
import xlrd
import os.path
wb = xlrd.open_workbook(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx'))
sheet = wb.sheet_by_index(0)
sheet.cell_value(0, 0)
for i in range(sheet.nrows):
print(sheet.cell_value(i, 2))
How can we print the output to a file with the heading HOST_NAME removed?
python xlrd
add a comment |
I'm novice in python and trying to create a file by adding data from second column of an excel file
excel sheet looks like the one below,
DC_CODE APP_NAME HOST_NAME
APAC Tomcat host1.example.com
APAC Nginx host1.example.com
APAC Apache host1.example.com
I'm using this piece of code to print the values,
import xlrd
import os.path
wb = xlrd.open_workbook(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx'))
sheet = wb.sheet_by_index(0)
sheet.cell_value(0, 0)
for i in range(sheet.nrows):
print(sheet.cell_value(i, 2))
How can we print the output to a file with the heading HOST_NAME removed?
python xlrd
I'm novice in python and trying to create a file by adding data from second column of an excel file
excel sheet looks like the one below,
DC_CODE APP_NAME HOST_NAME
APAC Tomcat host1.example.com
APAC Nginx host1.example.com
APAC Apache host1.example.com
I'm using this piece of code to print the values,
import xlrd
import os.path
wb = xlrd.open_workbook(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx'))
sheet = wb.sheet_by_index(0)
sheet.cell_value(0, 0)
for i in range(sheet.nrows):
print(sheet.cell_value(i, 2))
How can we print the output to a file with the heading HOST_NAME removed?
python xlrd
python xlrd
asked Nov 26 '18 at 12:09
akbharathakbharath
15
15
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I guess you can use pandas
library for that, the following code might work:
import pandas as pd
df = pd.read_excel(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx')
writer = pd.ExcelWriter('PythonExport.xlsx')
df[['DC_CODE', 'APP_NAME']].to_excel(writer,'Sheet5')
writer.save()
Thanks for your time, but I'm looking to have the column HOST_NAME in a text file removing the row HOST_NAME: something like ` HOST_NAME host1.example.com host2.example.com host3.example.com`
– akbharath
Nov 26 '18 at 13:40
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%2f53480825%2fadd-values-to-the-file-from-excel-sheet-with-pyhon%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 guess you can use pandas
library for that, the following code might work:
import pandas as pd
df = pd.read_excel(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx')
writer = pd.ExcelWriter('PythonExport.xlsx')
df[['DC_CODE', 'APP_NAME']].to_excel(writer,'Sheet5')
writer.save()
Thanks for your time, but I'm looking to have the column HOST_NAME in a text file removing the row HOST_NAME: something like ` HOST_NAME host1.example.com host2.example.com host3.example.com`
– akbharath
Nov 26 '18 at 13:40
add a comment |
I guess you can use pandas
library for that, the following code might work:
import pandas as pd
df = pd.read_excel(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx')
writer = pd.ExcelWriter('PythonExport.xlsx')
df[['DC_CODE', 'APP_NAME']].to_excel(writer,'Sheet5')
writer.save()
Thanks for your time, but I'm looking to have the column HOST_NAME in a text file removing the row HOST_NAME: something like ` HOST_NAME host1.example.com host2.example.com host3.example.com`
– akbharath
Nov 26 '18 at 13:40
add a comment |
I guess you can use pandas
library for that, the following code might work:
import pandas as pd
df = pd.read_excel(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx')
writer = pd.ExcelWriter('PythonExport.xlsx')
df[['DC_CODE', 'APP_NAME']].to_excel(writer,'Sheet5')
writer.save()
I guess you can use pandas
library for that, the following code might work:
import pandas as pd
df = pd.read_excel(os.path.join('/home/akbharat/Documents/OCIC/deploy_fed_ocic','podhosts_test_file.xlsx')
writer = pd.ExcelWriter('PythonExport.xlsx')
df[['DC_CODE', 'APP_NAME']].to_excel(writer,'Sheet5')
writer.save()
answered Nov 26 '18 at 13:24
JerilJeril
2,6491937
2,6491937
Thanks for your time, but I'm looking to have the column HOST_NAME in a text file removing the row HOST_NAME: something like ` HOST_NAME host1.example.com host2.example.com host3.example.com`
– akbharath
Nov 26 '18 at 13:40
add a comment |
Thanks for your time, but I'm looking to have the column HOST_NAME in a text file removing the row HOST_NAME: something like ` HOST_NAME host1.example.com host2.example.com host3.example.com`
– akbharath
Nov 26 '18 at 13:40
Thanks for your time, but I'm looking to have the column HOST_NAME in a text file removing the row HOST_NAME: something like ` HOST_NAME host1.example.com host2.example.com host3.example.com`
– akbharath
Nov 26 '18 at 13:40
Thanks for your time, but I'm looking to have the column HOST_NAME in a text file removing the row HOST_NAME: something like ` HOST_NAME host1.example.com host2.example.com host3.example.com`
– akbharath
Nov 26 '18 at 13:40
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%2f53480825%2fadd-values-to-the-file-from-excel-sheet-with-pyhon%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