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;








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
========================================================









share|improve this question
























  • What is printing ERROR? Where is the code that calls crontotoime?

    – larsks
    Mar 25 at 23:34

















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
========================================================









share|improve this question
























  • What is printing ERROR? Where is the code that calls crontotoime?

    – larsks
    Mar 25 at 23:34













0












0








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
========================================================









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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
















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












1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer






















    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    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.






    share|improve this answer



























      0














      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.






      share|improve this answer

























        0












        0








        0







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 26 at 11:06









        LafayetteLafayette

        163 bronze badges




        163 bronze badges


















            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.



















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript