Get country data based on a standard code and a symbol
(field: str, symbol: str)
| 2500 | |
| 2501 | |
| 2502 | def get(field: str, symbol: str) -> Optional[Dict[str, Any]]: |
| 2503 | """ |
| 2504 | Get country data based on a standard code and a symbol |
| 2505 | """ |
| 2506 | return all_lookups[field].get(symbol.lower()) |