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 / prettify.py
Last active January 10, 2025 18:51
A collection of printing functions for terminal/notebook for Python!
# -*- encoding: utf-8 -*-
"""
A Set of Simple Function(s) to Emphasize Print Statements
A collection of functions that modifies the inbuilt ``print()``
statement of Python language. The code follows ``camelCasing`` and
provide features like aligning text, text colors, etc.
`More Information <http://ds-gringotts.readthedocs.io/>`_
@ZenithClown
ZenithClown / sqlparser.py
Last active August 13, 2024 11:43
A Set of Utility Functions for SQL Query File Parsing
# -*- encoding: utf-8 -*-
"""
A Set of Utility Commands for Parsing SQL Files
To interact with the database, one can use (I) 'Raw SQL Queries', or
(II) 'SQL Query Builder', or (III) an 'ORM'. The parser is focused to
provide functionalities for raw sql queries via python code.
`More Information <http://ds-gringotts.readthedocs.io/>`_
@ZenithClown
ZenithClown / Optimization Problems.md
Last active April 3, 2024 07:28
A set of utility functions related to linear programming using pulp and/or scipy library

Optimization Problems

Zenith Clown REPO:ADMIN CODE:DOCUMENTATION
utility function related to code and/or function optimizations

@ZenithClown
ZenithClown / MS-SQL NoSQL.md
Last active January 5, 2024 10:04
A simplified approach to store NoSQL object into MS-SQL Server, instead of using a Full-Fledged No-SQL DB like MongoDB

NoSQL in MS-SQL Server

usecases - saving ai/ml predictions without complications

Colab Notebook

⚠⚠⚠THIS CODE IS NOT FINALIZED, AND IS SUBJECT TO CHANGE⚠⚠⚠


@ZenithClown
ZenithClown / Automatic Email.md
Last active April 4, 2024 11:34
A set of utility functions for sending emails

Automatic Email Application

Zenith Clown REPO:ADMIN CODE:DOCUMENTATION
send email from python using defined clients

@ZenithClown
ZenithClown / tabulate_.py
Last active December 12, 2023 08:51
A single file utility function that works as a wrapper for the "tabulate" module in python to print a table fetched using a SQL query.
# -*- encoding: utf-8 -*-
"""
A Utility Function to Print Tables fetched using a SQL Query
SQL query is used to fetch records from a table, and the utility
function can be used to print the table in the terminal in a fancy
format using the `tabulate` library. The function simply works as a
wrapper and all other functionalities are controlled externally.
@ZenithClown
ZenithClown / stationarity.py
Last active August 14, 2024 09:53
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.
# -*- encoding: utf-8 -*-
"""
Stationarity Checking for Time Series Data
A functional approach to check stationarity using different models
and the function attrbutes are as defined below.
(`More Information <http://ds-gringotts.readthedocs.io/>`_)
"""
@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 / NLP Utilities.md
Last active August 20, 2024 09:31
A powerful collection library for feature extraction and text cleaning using Unicode translations, regular expressions, natural language processing, large language models and more.
@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