Problem with python croniter with all asterisksWhat does ** (double star/asterisk) and * (star/asterisk) do for parameters?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow do I list all files of a directory?Does Python have a string 'contains' substring method?
Did depressed people far more accurately estimate how many monsters they killed in a video game?
No Torah = Revert to Nothingness?
What could cause the sea level to massively decrease?
Computer name naming convention for security
Is there a method for differentiating informative comments from commented out code?
Non-Chromatic Orchestral Instruments?
What exactly is a "murder hobo"?
VHF 50 Ω Antenna Over 75 Ω TV Coax
Users forgetting to regenerate PDF before sending it
When do flights get cancelled due to fog?
When I press the space bar it deletes the letters in front of it
What do you call a situation where you have choices but no good choice?
Swapping "Good" and "Bad"
I make billions (#6)
Distinguish the explanations of Galadriel's test in LotR
What was the profession 芸者 (female entertainer) called in Germany?
What are the consequences for a developed nation to not accept any refugees?
Writing an ace/aro character?
What happens to unproductive professors?
Hail hit my roof. Do I need to replace it?
Can Jimmy hang on his rope?
Quoridor rules when faced the opponent
First Entry Member State schengen visa
Moving millions of files to a different directory with specfic name patterns
Problem with python croniter with all asterisks
What does ** (double star/asterisk) and * (star/asterisk) do for parameters?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow do I list all files of a directory?Does Python have a string 'contains' substring method?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have made a script in python to perform FTP transfers that will run in crontab every minute. The script queries the mysql database and translates the cron language with the croniter library. If the current date and time match the programmed date, the ftp transaction will be performed.
It seems to work correctly except when the programming is cron is minutes and hours in asterisks. With the date it seems that there is no problem.
The crontotime function receives in the variable "programmed" the time and date programmed in cron language: "* * * * *" or "05 17 * * *" and translates it to date and time.
https://crontab.guru/ for help
Thanks.
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
Results: If there are no defined minutes and hours, an error appears
========================================================
Now: 2019-03-25 16:56
Scheluded: #* 16 * * *# 2019-03-25 16:00
========================================================
Now: 2019-03-25 16:56
Scheluded: #56 16 * * *# 2019-03-25 16:56
========================================================
Now: 2019-03-25 17:05
Scheluded #* * * * *# 2019-03-25 16:06 ERROR
========================================================
Now: 2019-03-25 17:05
Scheluded: #05 17 * * *# 2019-03-25 17:05
========================================================
python cron-task
add a comment |
I have made a script in python to perform FTP transfers that will run in crontab every minute. The script queries the mysql database and translates the cron language with the croniter library. If the current date and time match the programmed date, the ftp transaction will be performed.
It seems to work correctly except when the programming is cron is minutes and hours in asterisks. With the date it seems that there is no problem.
The crontotime function receives in the variable "programmed" the time and date programmed in cron language: "* * * * *" or "05 17 * * *" and translates it to date and time.
https://crontab.guru/ for help
Thanks.
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
Results: If there are no defined minutes and hours, an error appears
========================================================
Now: 2019-03-25 16:56
Scheluded: #* 16 * * *# 2019-03-25 16:00
========================================================
Now: 2019-03-25 16:56
Scheluded: #56 16 * * *# 2019-03-25 16:56
========================================================
Now: 2019-03-25 17:05
Scheluded #* * * * *# 2019-03-25 16:06 ERROR
========================================================
Now: 2019-03-25 17:05
Scheluded: #05 17 * * *# 2019-03-25 17:05
========================================================
python cron-task
What is printingERROR
? Where is the code that callscrontotoime
?
– larsks
Mar 25 at 23:34
add a comment |
I have made a script in python to perform FTP transfers that will run in crontab every minute. The script queries the mysql database and translates the cron language with the croniter library. If the current date and time match the programmed date, the ftp transaction will be performed.
It seems to work correctly except when the programming is cron is minutes and hours in asterisks. With the date it seems that there is no problem.
The crontotime function receives in the variable "programmed" the time and date programmed in cron language: "* * * * *" or "05 17 * * *" and translates it to date and time.
https://crontab.guru/ for help
Thanks.
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
Results: If there are no defined minutes and hours, an error appears
========================================================
Now: 2019-03-25 16:56
Scheluded: #* 16 * * *# 2019-03-25 16:00
========================================================
Now: 2019-03-25 16:56
Scheluded: #56 16 * * *# 2019-03-25 16:56
========================================================
Now: 2019-03-25 17:05
Scheluded #* * * * *# 2019-03-25 16:06 ERROR
========================================================
Now: 2019-03-25 17:05
Scheluded: #05 17 * * *# 2019-03-25 17:05
========================================================
python cron-task
I have made a script in python to perform FTP transfers that will run in crontab every minute. The script queries the mysql database and translates the cron language with the croniter library. If the current date and time match the programmed date, the ftp transaction will be performed.
It seems to work correctly except when the programming is cron is minutes and hours in asterisks. With the date it seems that there is no problem.
The crontotime function receives in the variable "programmed" the time and date programmed in cron language: "* * * * *" or "05 17 * * *" and translates it to date and time.
https://crontab.guru/ for help
Thanks.
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
Results: If there are no defined minutes and hours, an error appears
========================================================
Now: 2019-03-25 16:56
Scheluded: #* 16 * * *# 2019-03-25 16:00
========================================================
Now: 2019-03-25 16:56
Scheluded: #56 16 * * *# 2019-03-25 16:56
========================================================
Now: 2019-03-25 17:05
Scheluded #* * * * *# 2019-03-25 16:06 ERROR
========================================================
Now: 2019-03-25 17:05
Scheluded: #05 17 * * *# 2019-03-25 17:05
========================================================
python cron-task
python cron-task
edited Mar 26 at 11:48
num3ri
5646 silver badges14 bronze badges
5646 silver badges14 bronze badges
asked Mar 25 at 23:25
LafayetteLafayette
163 bronze badges
163 bronze badges
What is printingERROR
? Where is the code that callscrontotoime
?
– larsks
Mar 25 at 23:34
add a comment |
What is printingERROR
? Where is the code that callscrontotoime
?
– larsks
Mar 25 at 23:34
What is printing
ERROR
? Where is the code that calls crontotoime
?– larsks
Mar 25 at 23:34
What is printing
ERROR
? Where is the code that calls crontotoime
?– larsks
Mar 25 at 23:34
add a comment |
1 Answer
1
active
oldest
votes
class Crontask(object):
def crontask(self,datoscron,ahora):
for row_task in datoscron:
programada = (' '.join(i for i in row_task[2:7]).strip())
nuevatarea = Crontask().crontotime(programada)
if nuevatarea == ahora:
FTPtask().ftptask(row_task)
LogTransfer().log_tareas(row_task)
else:
print("========================================================")
print("///////////////// NO TRANSFER /////////////////////////")
print("========================================================")
return
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
========================================================
Now: 2019-03-26 11:57
Scheluded: #* * * * *# 2019-03-26 10:58
For example: scheluded is * * * * * and time is 2019-03-26 11:57, croniter return 2019-03-26 10:58 1 more minute, then task never runs.
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%2f55347806%2fproblem-with-python-croniter-with-all-asterisks%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
class Crontask(object):
def crontask(self,datoscron,ahora):
for row_task in datoscron:
programada = (' '.join(i for i in row_task[2:7]).strip())
nuevatarea = Crontask().crontotime(programada)
if nuevatarea == ahora:
FTPtask().ftptask(row_task)
LogTransfer().log_tareas(row_task)
else:
print("========================================================")
print("///////////////// NO TRANSFER /////////////////////////")
print("========================================================")
return
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
========================================================
Now: 2019-03-26 11:57
Scheluded: #* * * * *# 2019-03-26 10:58
For example: scheluded is * * * * * and time is 2019-03-26 11:57, croniter return 2019-03-26 10:58 1 more minute, then task never runs.
add a comment |
class Crontask(object):
def crontask(self,datoscron,ahora):
for row_task in datoscron:
programada = (' '.join(i for i in row_task[2:7]).strip())
nuevatarea = Crontask().crontotime(programada)
if nuevatarea == ahora:
FTPtask().ftptask(row_task)
LogTransfer().log_tareas(row_task)
else:
print("========================================================")
print("///////////////// NO TRANSFER /////////////////////////")
print("========================================================")
return
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
========================================================
Now: 2019-03-26 11:57
Scheluded: #* * * * *# 2019-03-26 10:58
For example: scheluded is * * * * * and time is 2019-03-26 11:57, croniter return 2019-03-26 10:58 1 more minute, then task never runs.
add a comment |
class Crontask(object):
def crontask(self,datoscron,ahora):
for row_task in datoscron:
programada = (' '.join(i for i in row_task[2:7]).strip())
nuevatarea = Crontask().crontotime(programada)
if nuevatarea == ahora:
FTPtask().ftptask(row_task)
LogTransfer().log_tareas(row_task)
else:
print("========================================================")
print("///////////////// NO TRANSFER /////////////////////////")
print("========================================================")
return
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
========================================================
Now: 2019-03-26 11:57
Scheluded: #* * * * *# 2019-03-26 10:58
For example: scheluded is * * * * * and time is 2019-03-26 11:57, croniter return 2019-03-26 10:58 1 more minute, then task never runs.
class Crontask(object):
def crontask(self,datoscron,ahora):
for row_task in datoscron:
programada = (' '.join(i for i in row_task[2:7]).strip())
nuevatarea = Crontask().crontotime(programada)
if nuevatarea == ahora:
FTPtask().ftptask(row_task)
LogTransfer().log_tareas(row_task)
else:
print("========================================================")
print("///////////////// NO TRANSFER /////////////////////////")
print("========================================================")
return
def crontotime(self,programada):
crontask = croniter.croniter(programada)
nextcrontask = crontask.get_next(datetime.datetime).strftime("%Y-%m-%d %H:%M")
return nextcrontask
========================================================
Now: 2019-03-26 11:57
Scheluded: #* * * * *# 2019-03-26 10:58
For example: scheluded is * * * * * and time is 2019-03-26 11:57, croniter return 2019-03-26 10:58 1 more minute, then task never runs.
answered Mar 26 at 11:06
LafayetteLafayette
163 bronze badges
163 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55347806%2fproblem-with-python-croniter-with-all-asterisks%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
What is printing
ERROR
? Where is the code that callscrontotoime
?– larsks
Mar 25 at 23:34