mirror of
https://github.com/Steffo99/unimore-bda-3.git
synced 2024-11-21 23:44:21 +00:00
41 lines
703 B
Python
41 lines
703 B
Python
"""
|
|
This package is to be imported in all other packages with a wildcard import::
|
|
|
|
from unimore_bda_3.prelude import *
|
|
|
|
"""
|
|
|
|
import typing as t
|
|
import matplotlib as mpl
|
|
import matplotlib.ticker as tick
|
|
import matplotlib.pyplot as plt
|
|
import matplotlib.dates as mpld
|
|
import matplotlib.container as mplc
|
|
import numpy as np
|
|
import scipy as sp
|
|
import pandas as pd
|
|
import sortedcontainers as sc
|
|
import seaborn as sb
|
|
import seaborn.objects as so
|
|
from pathlib import Path
|
|
from datetime import datetime
|
|
from . import utils
|
|
|
|
|
|
__all__ = (
|
|
"t",
|
|
"tick",
|
|
"mpl",
|
|
"plt",
|
|
"mplc",
|
|
"mpld",
|
|
"np",
|
|
"sp",
|
|
"pd",
|
|
"sc",
|
|
"sb",
|
|
"so",
|
|
"Path",
|
|
"datetime",
|
|
"utils",
|
|
)
|