Add mc-db-unique as default single-(owner,repo) selector

This commit is contained in:
Michael Hohn
2024-07-26 14:18:14 -07:00
committed by =Michael Hohn
parent 92ca709458
commit 81c44ab14a
3 changed files with 60 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
# Experimental work with utils.py, to be merged into it.
from utils import *
from pprint import pprint
#* Reload gzipped CSV file to continue work
df2 = pd.read_csv('db-info-2.csv')
df_sorted = df2.sort_values(by=['owner', 'name', 'creationTime'])
df_unique = df_sorted.groupby(['owner', 'name']).first().reset_index()
#
# Local Variables:
# python-shell-virtualenv-root: "~/work-gh/mrva/mrvacommander/client/qldbtools/venv/"
# End:
#