Skip to content

Instantly share code, notes, and snippets.

View ZenithClown's full-sized avatar
📔
learning

Debmalya Pramanik ZenithClown

📔
learning
View GitHub Profile
@ZenithClown
ZenithClown / SQLServer.py
Last active April 10, 2021 08:00
Connecting to SQL Server using python-pyodbc
# -*- encoding: utf-8 -*-
"""Connecting to SQL Server using python3
Microsoft SQL Server is Proprietary to Microsoft, and connecting
to SQL Server using Python is explored in this code.
By default, connecting to SQL Driver requires installation of an
appropriate driver, and using the `pyodbc` module. More information
is available at
@ZenithClown
ZenithClown / timer_decorator.py
Created July 1, 2021 07:55
A Simple Python Decorator Function to Print the Runtime of a Function
# -*- encoding: utf-8 -*-
__author__ = "Debmalya Pramanik"
__status__ = "production"
__version__ = "1.0"
__docformat__ = "camelCasing"
__copyright__ = "Copyright (c) 2020 Debmalya Pramanik | Indian Institute of Technology (IIT), Dhanbad"
__affiliation__ = "Reliance Industries Ltd."
@ZenithClown
ZenithClown / README.md
Last active July 15, 2022 08:50
A Python Function to Generate Badge Link for Shields.IO

Badges Generator

@ZenithClown
ZenithClown / Correlation Visualizations.md
Last active April 13, 2023 07:08
A set of Utility Function(s) to Visualize Correlation of a Data Frame

Correlation Visualization

better understand correlation with bar-charts and heatmaps

Colab Notebook

@ZenithClown
ZenithClown / Date-Time Utility Functions.md
Last active October 31, 2023 08:52
An Extension of datetime Module to Provide additional Functionalities

Date-Time Utility Functions

a set of utility functions extended from datetime module

Colab Notebook

@ZenithClown
ZenithClown / Geometric Objects.md
Last active April 18, 2023 17:53
Codes for Manipulating Geometric Objects

Geometric Objects

a set of utility functions for manipulating shapely.geometry objects

Colab Notebook

@ZenithClown
ZenithClown / Scaler Functions.md
Last active April 12, 2023 07:27
Custom Built Scaler Functionality

Scaler Functions

a custom built object-oriented approach to scale a data series

Colab Notebook

@ZenithClown
ZenithClown / NLP Utilities.md
Last active July 10, 2023 10:28
A set of utility functions related to natural language processing.

NLP Utilities

a set of functions that extends from pandas to reduce code duplicacy

Colab Notebook

@ZenithClown
ZenithClown / Web Scrappers.md
Last active February 29, 2024 09:52
Simple Web-Scrapping Utility Functions

Web Scrappers (webscrappers)

a set of functions that uses the BeautifulSoup module to scrap data from various websites


@ZenithClown
ZenithClown / Time Series Utilities.md
Last active October 20, 2023 13:18
Time Series utility functions includes data analysis, featurization, n-dimensional sequence generation, baseline model development etc. In addition, do check the Time Series Utilities.md for theories/study materials/external code snippets for time series data.

Time Series Utilities

object oriented process to create time series sequence features for AI/ML model development

Colab Notebook