KeyError | Python 3.7.3: /usr/bin/python3.7 Fri Nov 1 07:24:45 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/get-post.py in <module>() |
123 |
124 while offset == 0 or myCounter == 30: |
=> 125 myCounter = mainComments(offset) |
126 offset += 30 |
127 |
myCounter = 0, mainComments = <function mainComments>, offset = 0 |
/home/atdeso/public_html/python/get-post.py in mainComments(commentStart=0) |
60 Posts = desoPosts.getSinglePost(postHashHex,commentLimit=30,commentOffset=commentStart).json() |
61 if offset == 0: |
=> 62 myOps = Posts['PostFound']['PostExtraData']['BlogDeltaRtfFormat'] |
63 myLikes = Posts['PostFound']['LikeCount'] |
64 myDiamonds = Posts['PostFound']['DiamondCount'] |
myOps undefined, Posts = {'PostFound': {'AdditionalCoinRoyaltiesMap': {}, 'AdditionalDESORoyaltiesMap': {}, 'Body': 'Bank Users Not Money\n\n"Money Follows Consumers" ...s.com/a/bank-users-not-money?ref=ElizabethTubbs\n\n', 'CommentCount': 0, 'Comments': None, 'ConfirmationBlockHeight': 237915, 'CreatorBasisPoints': 1000, 'DiamondCount': 11, 'DiamondsFromSender': 0, 'HasUnlockable': False, ...}} |
KeyError: 'BlogDeltaRtfFormat'
args =
('BlogDeltaRtfFormat',)
with_traceback =
<built-in method with_traceback of KeyError object>