This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PyDict: | |
| New reference: | |
| PyDict_New | |
| PyDict_Copy | |
| PyDict_SetItem | |
| PyDict_SetItemString | |
| PyDict_Items | |
| PyDict_Keys | |
| PyDict_Values | |
| Borrowed reference: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import re | |
| class Twitter: | |
| def __init__(self): | |
| self.s = requests.Session() | |
| self.get_tokens() | |
| def get_tokens(self): |