(dictionary, key, default_value=None)
| 756 | |
| 757 | @staticmethod |
| 758 | def safe_float(dictionary, key, default_value=None): |
| 759 | try: |
| 760 | return float(dictionary[key]) |
| 761 | except Exception: |
| 762 | return default_value |
| 763 | |
| 764 | @staticmethod |
| 765 | def safe_string(dictionary, key, default_value=None): |
no outgoing calls