Zapier gives error: `'unicode' object has no attribute 'copy'` for Python script
The script is simple:
import datetime
import json
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return json.dumps({'date': str(next_third_thursday)})
How do I get this code to run? What's the issue here?
python json python-2.7 datetime zapier
add a comment |
The script is simple:
import datetime
import json
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return json.dumps({'date': str(next_third_thursday)})
How do I get this code to run? What's the issue here?
python json python-2.7 datetime zapier
add a comment |
The script is simple:
import datetime
import json
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return json.dumps({'date': str(next_third_thursday)})
How do I get this code to run? What's the issue here?
python json python-2.7 datetime zapier
The script is simple:
import datetime
import json
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return json.dumps({'date': str(next_third_thursday)})
How do I get this code to run? What's the issue here?
python json python-2.7 datetime zapier
python json python-2.7 datetime zapier
edited Jan 20 at 16:45
Evan Cory Levine
asked Jan 20 at 14:29
Evan Cory LevineEvan Cory Levine
257
257
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Zapier expects the output of the script to be a JSON-serializable object (h/t to Michael Case from the comments section).
Furthermore, the script is not indented properly. Python is an indentation-sensitive language, i.e. indentation matters.
Try something like this:
import datetime
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return {'date': str(next_third_thursday)}
Ah. Unfortunately that returned the same error. :(
– Evan Cory Levine
Jan 20 at 14:55
1
I've updated the answer. I think you might also need to indent the code properly.
– Milan Cermak
Jan 20 at 15:24
silly me. I did indent the code but pasted it without the indentations by mistake. unfortunately... your updated answer still returns the same error. :( ugh. so frustrating.
– Evan Cory Levine
Jan 20 at 16:43
oh, and the error return just shows the code unindented, but it is properly indented when run.
– Evan Cory Levine
Jan 21 at 15:59
Milan's answer is close. The issue here is that json.dumps serializes your object converting it into a string. So in this example you are still returning a string which is why you are receiving the same error. With Zapier's code module you need to return a dictionary object which Zapier automatically maps to JSON format for use in later steps. In this case remove the json.dumps line and simply return the dictionary object.
– Michael Case
Jan 23 at 0:35
|
show 2 more comments
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%2f54277462%2fzapier-gives-error-unicode-object-has-no-attribute-copy-for-python-script%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
Zapier expects the output of the script to be a JSON-serializable object (h/t to Michael Case from the comments section).
Furthermore, the script is not indented properly. Python is an indentation-sensitive language, i.e. indentation matters.
Try something like this:
import datetime
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return {'date': str(next_third_thursday)}
Ah. Unfortunately that returned the same error. :(
– Evan Cory Levine
Jan 20 at 14:55
1
I've updated the answer. I think you might also need to indent the code properly.
– Milan Cermak
Jan 20 at 15:24
silly me. I did indent the code but pasted it without the indentations by mistake. unfortunately... your updated answer still returns the same error. :( ugh. so frustrating.
– Evan Cory Levine
Jan 20 at 16:43
oh, and the error return just shows the code unindented, but it is properly indented when run.
– Evan Cory Levine
Jan 21 at 15:59
Milan's answer is close. The issue here is that json.dumps serializes your object converting it into a string. So in this example you are still returning a string which is why you are receiving the same error. With Zapier's code module you need to return a dictionary object which Zapier automatically maps to JSON format for use in later steps. In this case remove the json.dumps line and simply return the dictionary object.
– Michael Case
Jan 23 at 0:35
|
show 2 more comments
Zapier expects the output of the script to be a JSON-serializable object (h/t to Michael Case from the comments section).
Furthermore, the script is not indented properly. Python is an indentation-sensitive language, i.e. indentation matters.
Try something like this:
import datetime
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return {'date': str(next_third_thursday)}
Ah. Unfortunately that returned the same error. :(
– Evan Cory Levine
Jan 20 at 14:55
1
I've updated the answer. I think you might also need to indent the code properly.
– Milan Cermak
Jan 20 at 15:24
silly me. I did indent the code but pasted it without the indentations by mistake. unfortunately... your updated answer still returns the same error. :( ugh. so frustrating.
– Evan Cory Levine
Jan 20 at 16:43
oh, and the error return just shows the code unindented, but it is properly indented when run.
– Evan Cory Levine
Jan 21 at 15:59
Milan's answer is close. The issue here is that json.dumps serializes your object converting it into a string. So in this example you are still returning a string which is why you are receiving the same error. With Zapier's code module you need to return a dictionary object which Zapier automatically maps to JSON format for use in later steps. In this case remove the json.dumps line and simply return the dictionary object.
– Michael Case
Jan 23 at 0:35
|
show 2 more comments
Zapier expects the output of the script to be a JSON-serializable object (h/t to Michael Case from the comments section).
Furthermore, the script is not indented properly. Python is an indentation-sensitive language, i.e. indentation matters.
Try something like this:
import datetime
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return {'date': str(next_third_thursday)}
Zapier expects the output of the script to be a JSON-serializable object (h/t to Michael Case from the comments section).
Furthermore, the script is not indented properly. Python is an indentation-sensitive language, i.e. indentation matters.
Try something like this:
import datetime
today = datetime.date.today()
next_thursday = today + datetime.timedelta(((3 - today.weekday()) % 7))
while True:
if 15 <= next_thursday.day <= 21:
next_third_thursday = next_thursday
break
else:
next_date = next_thursday + datetime.timedelta(days=1)
next_thursday = next_date + datetime.timedelta(((3 - next_date.weekday()) % 7))
return {'date': str(next_third_thursday)}
edited Jan 23 at 13:12
answered Jan 20 at 14:40
Milan CermakMilan Cermak
1,78611524
1,78611524
Ah. Unfortunately that returned the same error. :(
– Evan Cory Levine
Jan 20 at 14:55
1
I've updated the answer. I think you might also need to indent the code properly.
– Milan Cermak
Jan 20 at 15:24
silly me. I did indent the code but pasted it without the indentations by mistake. unfortunately... your updated answer still returns the same error. :( ugh. so frustrating.
– Evan Cory Levine
Jan 20 at 16:43
oh, and the error return just shows the code unindented, but it is properly indented when run.
– Evan Cory Levine
Jan 21 at 15:59
Milan's answer is close. The issue here is that json.dumps serializes your object converting it into a string. So in this example you are still returning a string which is why you are receiving the same error. With Zapier's code module you need to return a dictionary object which Zapier automatically maps to JSON format for use in later steps. In this case remove the json.dumps line and simply return the dictionary object.
– Michael Case
Jan 23 at 0:35
|
show 2 more comments
Ah. Unfortunately that returned the same error. :(
– Evan Cory Levine
Jan 20 at 14:55
1
I've updated the answer. I think you might also need to indent the code properly.
– Milan Cermak
Jan 20 at 15:24
silly me. I did indent the code but pasted it without the indentations by mistake. unfortunately... your updated answer still returns the same error. :( ugh. so frustrating.
– Evan Cory Levine
Jan 20 at 16:43
oh, and the error return just shows the code unindented, but it is properly indented when run.
– Evan Cory Levine
Jan 21 at 15:59
Milan's answer is close. The issue here is that json.dumps serializes your object converting it into a string. So in this example you are still returning a string which is why you are receiving the same error. With Zapier's code module you need to return a dictionary object which Zapier automatically maps to JSON format for use in later steps. In this case remove the json.dumps line and simply return the dictionary object.
– Michael Case
Jan 23 at 0:35
Ah. Unfortunately that returned the same error. :(
– Evan Cory Levine
Jan 20 at 14:55
Ah. Unfortunately that returned the same error. :(
– Evan Cory Levine
Jan 20 at 14:55
1
1
I've updated the answer. I think you might also need to indent the code properly.
– Milan Cermak
Jan 20 at 15:24
I've updated the answer. I think you might also need to indent the code properly.
– Milan Cermak
Jan 20 at 15:24
silly me. I did indent the code but pasted it without the indentations by mistake. unfortunately... your updated answer still returns the same error. :( ugh. so frustrating.
– Evan Cory Levine
Jan 20 at 16:43
silly me. I did indent the code but pasted it without the indentations by mistake. unfortunately... your updated answer still returns the same error. :( ugh. so frustrating.
– Evan Cory Levine
Jan 20 at 16:43
oh, and the error return just shows the code unindented, but it is properly indented when run.
– Evan Cory Levine
Jan 21 at 15:59
oh, and the error return just shows the code unindented, but it is properly indented when run.
– Evan Cory Levine
Jan 21 at 15:59
Milan's answer is close. The issue here is that json.dumps serializes your object converting it into a string. So in this example you are still returning a string which is why you are receiving the same error. With Zapier's code module you need to return a dictionary object which Zapier automatically maps to JSON format for use in later steps. In this case remove the json.dumps line and simply return the dictionary object.
– Michael Case
Jan 23 at 0:35
Milan's answer is close. The issue here is that json.dumps serializes your object converting it into a string. So in this example you are still returning a string which is why you are receiving the same error. With Zapier's code module you need to return a dictionary object which Zapier automatically maps to JSON format for use in later steps. In this case remove the json.dumps line and simply return the dictionary object.
– Michael Case
Jan 23 at 0:35
|
show 2 more comments
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%2f54277462%2fzapier-gives-error-unicode-object-has-no-attribute-copy-for-python-script%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