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 base58 | |
| import base64 | |
| from pprint import pprint | |
| ADDRESS = "T....your address" | |
| PRIV_KEY = 'hex private key' | |
| CONTRACT = "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t" # USDT |
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
| from kivy.app import App | |
| from kivy.lang import Builder | |
| from kivy.uix.widget import Widget | |
| from kivy.properties import ListProperty, NumericProperty | |
| from kivy.metrics import dp | |
| KV = ''' | |
| #:import chain itertools.chain | |
| FloatLayout: |
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
| ''' | |
| Bezier AnimLabel | |
| ============== | |
| Use AnimLabel to make letters of a Label follow an user-defined Bezier | |
| curve during an animation. | |
| The example allows to draw a bezier curve, define animation parameters, | |
| and export the points to csv for integration into programs. | |
| ''' |