1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-3.git synced 2024-11-22 07:54:21 +00:00
bda-3-steffo/unimore_bda_3/prelude.py

42 lines
703 B
Python
Raw Normal View History

2022-11-25 08:23:40 +00:00
"""
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",
)