--> -->
DateContentLikesDiamondsCommentsRepostsQuoteRepostsQuote RepostsImpact
 
 
KeyError
Python 3.7.3: /usr/bin/python3.7
Sat Sep 7 22:57:44 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /home/atdeso/public_html/python/whoswho-analytics.py in <module>()
    137         pMonth = '0' + pMonth
    138 
=>  139     mPosts[pYear][pMonth]['total'] += 1
    140     nPosts['total'] =  nPosts['total'] +1
    141 
mPosts = {'2021': {'01': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '02': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '03': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '04': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '05': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '06': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '07': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '08': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '09': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '10': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, ...}, '2022': {'01': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '02': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '03': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '04': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '05': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '06': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '07': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '08': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '09': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '10': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, ...}, '2023': {'01': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '02': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '03': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '04': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '05': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '06': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '07': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '08': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '09': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, '10': {'comments': 0, 'diamonds': 0, 'likes': 0, 'qreposts': 0, 'reposts': 0, 'total': 0}, ...}}, pYear = '2024', pMonth = '07'

KeyError: '2024'
      args = ('2024',)
      with_traceback = <built-in method with_traceback of KeyError object>