How to construct a list as (key,value) pairs with PyMySQL and Python?
I have the following code:
connection = pymysql.connect(...)
try:
with connection.cursor() as cursor:
sql = "select cola,colb from ...."
result = cursor.fetchall()
How to build a list from the result?
finally:
connection.close()
The query returns data as:
cola colb
-----------
123 abc
124 abd
140 ghf
cola
is the key
colb
is the value
I know it should be something like:
list =
for i in range (0, ????):
cola_value = result[0][i].get('cola')
colb_value = result[1][i].get('colb')
list.append((cola_value, colb_value))
I'm wondering what is the correct syntax and if this is the correct approach?
I want to be able to search the list by key and access the value by key.
I'll need 2-3 lists each one with around 900000 (key,value) pairs.
Is it smart to manage it in memory or better to write it to file and process it on disk?
python pymysql
add a comment |
I have the following code:
connection = pymysql.connect(...)
try:
with connection.cursor() as cursor:
sql = "select cola,colb from ...."
result = cursor.fetchall()
How to build a list from the result?
finally:
connection.close()
The query returns data as:
cola colb
-----------
123 abc
124 abd
140 ghf
cola
is the key
colb
is the value
I know it should be something like:
list =
for i in range (0, ????):
cola_value = result[0][i].get('cola')
colb_value = result[1][i].get('colb')
list.append((cola_value, colb_value))
I'm wondering what is the correct syntax and if this is the correct approach?
I want to be able to search the list by key and access the value by key.
I'll need 2-3 lists each one with around 900000 (key,value) pairs.
Is it smart to manage it in memory or better to write it to file and process it on disk?
python pymysql
add a comment |
I have the following code:
connection = pymysql.connect(...)
try:
with connection.cursor() as cursor:
sql = "select cola,colb from ...."
result = cursor.fetchall()
How to build a list from the result?
finally:
connection.close()
The query returns data as:
cola colb
-----------
123 abc
124 abd
140 ghf
cola
is the key
colb
is the value
I know it should be something like:
list =
for i in range (0, ????):
cola_value = result[0][i].get('cola')
colb_value = result[1][i].get('colb')
list.append((cola_value, colb_value))
I'm wondering what is the correct syntax and if this is the correct approach?
I want to be able to search the list by key and access the value by key.
I'll need 2-3 lists each one with around 900000 (key,value) pairs.
Is it smart to manage it in memory or better to write it to file and process it on disk?
python pymysql
I have the following code:
connection = pymysql.connect(...)
try:
with connection.cursor() as cursor:
sql = "select cola,colb from ...."
result = cursor.fetchall()
How to build a list from the result?
finally:
connection.close()
The query returns data as:
cola colb
-----------
123 abc
124 abd
140 ghf
cola
is the key
colb
is the value
I know it should be something like:
list =
for i in range (0, ????):
cola_value = result[0][i].get('cola')
colb_value = result[1][i].get('colb')
list.append((cola_value, colb_value))
I'm wondering what is the correct syntax and if this is the correct approach?
I want to be able to search the list by key and access the value by key.
I'll need 2-3 lists each one with around 900000 (key,value) pairs.
Is it smart to manage it in memory or better to write it to file and process it on disk?
python pymysql
python pymysql
asked Nov 12 '18 at 13:10
Luis
949
949
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I did not try this, but you should be able to use a list comprehension:
list = [(r['cola'], r['colb']) for r in result]
If you plan to do lookups by key, using a dictionary would be even better:
map = {r['cola']: r['colb'] for r in result}
Then if you want to find the value corresponding with they key 123
:
value = map[123]
Regarding whether or not it makes sense to hold 900,000 pairs depends on your hardware resources - there are probably more memory efficient ways to do it, but you might need to install some additional dependencies.
just edited your answer to .get('cola')
– Luis
Nov 12 '18 at 13:51
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%2f53262906%2fhow-to-construct-a-list-as-key-value-pairs-with-pymysql-and-python%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 did not try this, but you should be able to use a list comprehension:
list = [(r['cola'], r['colb']) for r in result]
If you plan to do lookups by key, using a dictionary would be even better:
map = {r['cola']: r['colb'] for r in result}
Then if you want to find the value corresponding with they key 123
:
value = map[123]
Regarding whether or not it makes sense to hold 900,000 pairs depends on your hardware resources - there are probably more memory efficient ways to do it, but you might need to install some additional dependencies.
just edited your answer to .get('cola')
– Luis
Nov 12 '18 at 13:51
add a comment |
I did not try this, but you should be able to use a list comprehension:
list = [(r['cola'], r['colb']) for r in result]
If you plan to do lookups by key, using a dictionary would be even better:
map = {r['cola']: r['colb'] for r in result}
Then if you want to find the value corresponding with they key 123
:
value = map[123]
Regarding whether or not it makes sense to hold 900,000 pairs depends on your hardware resources - there are probably more memory efficient ways to do it, but you might need to install some additional dependencies.
just edited your answer to .get('cola')
– Luis
Nov 12 '18 at 13:51
add a comment |
I did not try this, but you should be able to use a list comprehension:
list = [(r['cola'], r['colb']) for r in result]
If you plan to do lookups by key, using a dictionary would be even better:
map = {r['cola']: r['colb'] for r in result}
Then if you want to find the value corresponding with they key 123
:
value = map[123]
Regarding whether or not it makes sense to hold 900,000 pairs depends on your hardware resources - there are probably more memory efficient ways to do it, but you might need to install some additional dependencies.
I did not try this, but you should be able to use a list comprehension:
list = [(r['cola'], r['colb']) for r in result]
If you plan to do lookups by key, using a dictionary would be even better:
map = {r['cola']: r['colb'] for r in result}
Then if you want to find the value corresponding with they key 123
:
value = map[123]
Regarding whether or not it makes sense to hold 900,000 pairs depends on your hardware resources - there are probably more memory efficient ways to do it, but you might need to install some additional dependencies.
answered Nov 12 '18 at 13:30
shevron
1,7191323
1,7191323
just edited your answer to .get('cola')
– Luis
Nov 12 '18 at 13:51
add a comment |
just edited your answer to .get('cola')
– Luis
Nov 12 '18 at 13:51
just edited your answer to .get('cola')
– Luis
Nov 12 '18 at 13:51
just edited your answer to .get('cola')
– Luis
Nov 12 '18 at 13:51
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53262906%2fhow-to-construct-a-list-as-key-value-pairs-with-pymysql-and-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