This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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/>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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/>`_ |
usecases - saving ai/ml predictions without complications
Colab Notebook
⚠⚠⚠THIS CODE IS NOT FINALIZED, AND IS SUBJECT TO CHANGE⚠⚠⚠
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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/>`_) | |
""" |
[](https://pyp
NewerOlder