Skip to content

Instantly share code, notes, and snippets.

@tomdewildt
Created December 24, 2021 10:57
Show Gist options
  • Save tomdewildt/4d7fb36c2261c1bd14b9fbb5765d170e to your computer and use it in GitHub Desktop.
Save tomdewildt/4d7fb36c2261c1bd14b9fbb5765d170e to your computer and use it in GitHub Desktop.
Common import abbreviations for the python programming language
# Datetime
import datetime as dt
# Dear PyGui
import dearpygui.dearpygui as dpg
# Geopandas
import geopandas as gpd
# Matplotlib (pyplot)
import matplotlib.pyplot as plt
# Multiprocessing
import multiprocessing as mp
# Numba
import numba as nb
# Numpy
import numpy as np
# Pandas
import pandas as pd
# Pickle
import pickle as pkl
# Plotly (express)
import plotly.express as px
# Plotly (graph objects)
import plotly.graph_objects as go
# Seaborn
import seaborn as sns
# Tensorflow
import tensorflow as tf
# Theano (tensor)
import theano.tensor as tt
# Tkinter
import tkinter as tk
# Xarray
import xarray as xr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment