Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions DAmonitor/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ def query_data(data, meta_exclude=None):
print(text.rstrip(","))


def query_obj(obj):
return [attr for attr in dir(obj) if not callable(getattr(obj, attr)) and not attr.startswith("__")]


def to_dataframe(obsDF):
obsDF = obsDF
if obsDF.data:
Expand Down
11 changes: 11 additions & 0 deletions notebooks/etc/Untitled.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "5b039970-39eb-4d48-a3c3-16515ff29500",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Image\n",
"Image('../../docs/logo.png')"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down
Loading