Python Forum
How can i store a refreshing data
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can i store a refreshing data
#1
I am scraping the number of a counter from a website, my code will check the counter every 30 sec or so, what i want to do is check if the current value of the counter is greater than the last value then store the value as actual value and do something else just pass
I have no idea how to do this.
Reply
#2
If your able to extract the value of the counter convert it to an int and keep checking it.

then = 0
while 1:
    now = int(check_timer())
    if now > then:
        then = now
        # do stuff now.
   
Reply
#3
Well that is so obvious, what troubled me is that i have a bigger code, and i wanted to create a def and call this counter_check def inside that code, but i was wondering how do i keep the now from keep setting itself up as then if i call it inside the _main_ that keeps looping, well the solution that you provided was simple, bring it outside the main loop Thank you.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Store variable data and display sum after 60 seconds the_dude 11 3,460 Dec-16-2021, 07:07 PM
Last Post: deanhystad
  Regex text file to store data in list TheSithSiggi 1 1,534 Dec-03-2020, 04:46 PM
Last Post: bowlofred
  refreshing imports seandepagnier 4 2,741 Sep-20-2020, 11:51 PM
Last Post: seandepagnier
  How do I store the data in another txt file blacklight 1 1,941 Jun-26-2020, 11:09 AM
Last Post: Larz60+
  Read csv file, parse data, and store in a dictionary markellefultz20 4 4,585 Nov-26-2019, 03:33 PM
Last Post: DeaD_EyE
  Reading blob data from database by python and store it in .zip format Adityasi 2 6,615 Nov-18-2019, 05:22 PM
Last Post: ibreeden
  a contact book - a class made to store data apollo 2 1,953 Jun-12-2019, 04:33 PM
Last Post: apollo
  Receive Serial Data and store in different Variables in Python jenkins43 5 5,616 Dec-28-2018, 01:33 PM
Last Post: snippsat
  how to parse multipart/form-data for xls or jpeg stream into python code and store v71017 0 3,315 Mar-20-2018, 01:09 PM
Last Post: v71017
  Where to store data? mcmxl22 4 4,034 Feb-13-2017, 10:08 AM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020