This file contains hidden or 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
from setuptools import setup, find_packages | |
setup( | |
name='scripts', | |
packages=find_packages(), | |
) |
This file contains hidden or 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
import os | |
import sys | |
from pathlib import Path | |
import joblib | |
import numpy as np | |
import pandas as pd | |
from IPython import get_ipython | |
from IPython.display import Markdown, display | |
from matplotlib import pyplot as plt |
This file contains hidden or 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
# Get attributes from contained class | |
class A: | |
def __init__(self, a, b, ): | |
self.a = a | |
self.b = b | |
class B: | |
def __init__(self, c, acls): | |
print("Y") |