Implementation of Challenge #7 in StackOverflow: https://stackoverflow.com/beta/challenges/79767716/code-challenge-7-pangram-checker
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 collections import defaultdict, namedtuple | |
| from datetime import datetime | |
| import pandas as pd # type: ignore # "No library stub" for pandas | |
| import re | |
| import sys | |
| from timeit import timeit | |
| from typing import Any, Callable, Dict, Iterator, List, Tuple | |
| DictLog = Dict[str, str] | |
| ListLogs = List[DictLog] |
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 cmd import Cmd | |
| from glob import glob | |
| import pickle | |
| import re | |
| from time import time | |
| from typing import Dict, List | |
| fields = ["first_name", "last_name", "email"] |
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
| digraph unpackAI_progression { | |
| rankdir="LR"; | |
| graph [fontname = "Handlee"]; | |
| node [fontname = "Handlee"]; | |
| edge [fontname = "Handlee"]; | |
| bgcolor=transparent; | |
| subgraph cluster_ml { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
| from datetime import datetime | |
| import pandas as pd | |
| BREST = (48.39029, -4.4833) | |
| NANTES = (47.218371, -1.553621) | |
| DFLT_START = datetime(2018, 1, 1) | |
| DFLT_END = datetime.today() |
OlderNewer
