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

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현