updating doc collection with from oldest instead

This commit is contained in:
Matthew Gaughan 2025-01-31 11:34:20 -06:00
parent da8e1c0e45
commit 6d851731af
4 changed files with 1472 additions and 1392 deletions

View File

@ -2,6 +2,7 @@ import pandas as pd
import os import os
import datetime as dt import datetime as dt
import json import json
import shutil
def repo_id_from_upstream(vcs_link): def repo_id_from_upstream(vcs_link):
if 'github' in vcs_link: if 'github' in vcs_link:
@ -44,12 +45,85 @@ def check_collected_files(dirpath):
return unmatched_files, matched_repo_ids return unmatched_files, matched_repo_ids
def hard_codes(vcs_link, filename):
if vcs_link == "https://github.com/df7cb/pg_filedump.git" and filename == "pg_filedump.git_README.pg_filedump":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/sleuthkit/sleuthkit" and filename == "sleuthkit_README_win32.txt":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/metlov/cycle.git" and filename == "cycle.git_README_ru.html":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/winchen/engauge_debian" and filename == "engauge_debian_README_for_osx":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/babelouest/yder" and filename == "yder_README_8md.html":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/SebWouters/CheMPS2" and filename == "CheMPS2_README_8md_source.html":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/TACC/Lmod" and filename == "Lmod_README_lua_modulefiles.txt":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/hunspell/hyphen.git" and filename == "hyphen.git_README_hyph_en_US.txt":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/greenbone/openvas" and filename == "openvas_UPGRADE_README":
rel_filename = filename
return True, rel_filename
if vcs_link == "https://github.com/MightyCreak/diffuse.git" and filename == "diffuse.git_README_ru":
rel_filename = filename
return True, rel_filename
return False, ""
def cp_existing_docs(matched_repo_ids, is_readme): def cp_existing_docs(matched_repo_ids, is_readme):
if not is_readme: if not is_readme:
existing_dir = "/data/users/mgaughan/kkex/time_specific_files/contributing4/"
dest_dir = "/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/existing_contributing/"
manifest = pd.read_csv('012925_contributing_manifest.csv') manifest = pd.read_csv('012925_contributing_manifest.csv')
else: else:
existing_dir = "/data/users/mgaughan/kkex/time_specific_files/readme4/"
dest_dir = "/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/existing_readme/"
manifest = pd.read_csv('012925_readme_manifest.csv') manifest = pd.read_csv('012925_readme_manifest.csv')
# match the ids to the upstream vcs links filtered_df = manifest[manifest['repo_id'].isin(matched_repo_ids)]
print(len(filtered_df))
successes = 0
failures = []
for index,row in filtered_df.iterrows():
vcs_link = row['upstream_vcs_link']
project = row['upstream_vcs_link'].split("/")[-1]
rel_filename = ""
#print(project)
is_success = False
for filename in os.listdir(existing_dir):
if filename.startswith(project):
rel_filename = filename
#print(rel_filename)
target_path = existing_dir + rel_filename
dest_path = os.path.join(dest_dir, f"{row['repo_id']}_hullabaloo_{rel_filename.split('_')[-1]}")
#print(dest_path)
successes+= 1
is_success = True
shutil.copy(target_path, dest_path)
break
'''
if rel_filename != "":
target_path = existing_dir + rel_filename
#print(target_path)
dest_path = os.path.join(dest_dir, f"{row['repo_id']}_hullabaloo_{rel_filename}")
#print(target_path, full_temp_path[:-4], filename, destination_path)
shutil.copy(target_path, dest_path)
return filename
else:
print("error!")
print(project)
'''
if not is_success:
failures.append(project)
print(successes)
print(failures)
# match those to the files in "/data/users/mgaughan/time_specific_files/{doctype}3" # match those to the files in "/data/users/mgaughan/time_specific_files/{doctype}3"
# copy matched files to "/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/{doctype}/" # copy matched files to "/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/{doctype}/"
@ -65,7 +139,7 @@ def get_doc_publication(dirpath, file, doc_name):
unmatched_df = pd.read_csv(dirpath + file) unmatched_df = pd.read_csv(dirpath + file)
# because we only care about the date, not going to un-flatten the timezones # because we only care about the date, not going to un-flatten the timezones
unmatched_df['commit_date'] = pd.to_datetime(unmatched_df['commit_date'], utc=True) unmatched_df['commit_date'] = pd.to_datetime(unmatched_df['commit_date'], utc=True)
unmatched_df = unmatched_df.sort_values(by='commit_date', ascending=False) unmatched_df = unmatched_df.sort_values(by='commit_date', ascending=True)
#print(unmatched_df.head()) #print(unmatched_df.head())
unmatched_df['diff_contains_document'] = unmatched_df['diff_info'].apply(lambda diffs: document_in_diffs(diffs, doc_name)) unmatched_df['diff_contains_document'] = unmatched_df['diff_info'].apply(lambda diffs: document_in_diffs(diffs, doc_name))
first_instance = unmatched_df[unmatched_df['diff_contains_document']].head(1) first_instance = unmatched_df[unmatched_df['diff_contains_document']].head(1)
@ -145,7 +219,8 @@ if __name__ == "__main__":
#get_contributing_licsv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')] #get_contributing_licsv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')]
is_readme = False is_readme = False
unmatched_files, matched_repo_ids = check_collected_files("/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing") unmatched_files, matched_repo_ids = check_collected_files("/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing")
print(len(unmatched_files)) print(len(matched_repo_ids))
#cp_existing_docs(matched_repo_ids, is_readme)
list_for_doc_collection(unmatched_files, is_readme) list_for_doc_collection(unmatched_files, is_readme)
#print(len(unmatched_files)) #print(len(unmatched_files))
#print(len(matched_repo_ids)) #print(len(matched_repo_ids))

View File

@ -1,202 +1,202 @@
commit_hash,author_name,author_email,authored_date,committer_name,committer_email,commit_date,is_merge,author_org,committer_org,branches,diff_contains_document,repo_id,project_handle,upstream_vcs_link commit_hash,author_name,author_email,authored_date,committer_name,committer_email,commit_date,is_merge,author_org,committer_org,branches,diff_contains_document,repo_id,project_handle,upstream_vcs_link
ef42007d965871ecab0cfcb7d7c7c3fdcbc6e97f,Richard Schwab,gitrichardschwab-7a2qxq42kj@central-intelligence.agency,2022-04-10 09:25:58+02:00,GitHub,noreply@github.com,2022-04-10 07:25:58+00:00,False,central-intelligence,github,* master,True,aio-libs_aiomysql.git,aio-libs/aiomysql.git,https://github.com/aio-libs/aiomysql.git 9b5ae2ba1c1e2fe20ae555212ef9a6b1f50957cf,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 13:11:06+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 10:11:06+00:00,False,gmail,gmail,* master,True,aio-libs_aiomysql.git,aio-libs/aiomysql.git,https://github.com/aio-libs/aiomysql.git
fffc4338837d4474cc7a05cc80c645fd8ffae153,patchback[bot],45432694+patchback[bot]@users.noreply.github.com,2023-11-09 19:33:38+00:00,GitHub,noreply@github.com,2023-11-09 19:33:38+00:00,False,users,github,* master,True,aio-libs_aiohttp.git,aio-libs/aiohttp.git,https://github.com/aio-libs/aiohttp.git f8d94662015fa4ced56a4d2d11875b91b7284666,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 12:08:56+03:00,Andrew Svetlov,andrew.svetlov@gmail.com,2015-07-11 09:08:56+00:00,False,gmail,gmail,* master,True,aio-libs_aiohttp.git,aio-libs/aiohttp.git,https://github.com/aio-libs/aiohttp.git
679bf7de5aa77e34f534ce31ce33ea7ff0707317,Peter Potrebic,ppotrebic@box.com,2014-03-23 20:47:09-07:00,Peter Potrebic,ppotrebic@box.com,2014-03-24 03:47:09+00:00,False,box,box,* master,True,box_genty.git,box/genty.git,https://github.com/box/genty.git 679bf7de5aa77e34f534ce31ce33ea7ff0707317,Peter Potrebic,ppotrebic@box.com,2014-03-23 20:47:09-07:00,Peter Potrebic,ppotrebic@box.com,2014-03-24 03:47:09+00:00,False,box,box,* master,True,box_genty.git,box/genty.git,https://github.com/box/genty.git
a0b321f7a1ae658ee62899b776416c8eceb6db61,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 14:31:18+01:00,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 13:31:18+00:00,False,hackebrot,hackebrot,* main,True,hackebrot_jinja2-time,hackebrot/jinja2-time,https://github.com/hackebrot/jinja2-time a0b321f7a1ae658ee62899b776416c8eceb6db61,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 14:31:18+01:00,Raphael Pierzina,raphael@hackebrot.de,2015-12-04 13:31:18+00:00,False,hackebrot,hackebrot,* main,True,hackebrot_jinja2-time,hackebrot/jinja2-time,https://github.com/hackebrot/jinja2-time
2ee1c673046fe673a377943d9bbb4d9c1404dc9c,Daniel Manila,dmv@springwater7.org,2016-12-29 08:47:02+06:00,Daniel Manila,dmv@springwater7.org,2016-12-29 02:50:39+00:00,False,springwater7,springwater7,* master,True,DonyorM_weresync.git,DonyorM/weresync.git,https://github.com/DonyorM/weresync.git cf31482daf25df12bd718e00ae92fd50dfc4eb37,Daniel Manila,dmv@springwater7.org,2016-11-18 10:09:10+06:00,Daniel Manila,dmv@springwater7.org,2016-11-18 04:12:06+00:00,False,springwater7,springwater7,* master,True,DonyorM_weresync.git,DonyorM/weresync.git,https://github.com/DonyorM/weresync.git
9a565ce98423b526b96088bda648f17fae4b264b,Brendan Gregg,brendan.d.gregg@gmail.com,2018-10-10 09:49:20-07:00,GitHub,noreply@github.com,2018-10-10 16:49:20+00:00,True,gmail,github,* master,True,iovisor_bpftrace,iovisor/bpftrace,https://github.com/iovisor/bpftrace f4d7c1a628411df9c818ac57c7bdc67e66177585,Brendan Gregg,bgregg@netflix.com,2018-09-09 03:24:16+00:00,Brendan Gregg,bgregg@netflix.com,2018-09-09 18:23:21+00:00,False,netflix,netflix,* master,True,iovisor_bpftrace,iovisor/bpftrace,https://github.com/iovisor/bpftrace
8eaf930ba595fb9f3e124ec1d17ef469c9ab01f6,Michael Howitz,mh@gocept.com,2023-02-28 07:57:40+01:00,GitHub,noreply@github.com,2023-02-28 06:57:40+00:00,False,gocept,github,* master,True,zopefoundation_roman,zopefoundation/roman,https://github.com/zopefoundation/roman 8eaf930ba595fb9f3e124ec1d17ef469c9ab01f6,Michael Howitz,mh@gocept.com,2023-02-28 07:57:40+01:00,GitHub,noreply@github.com,2023-02-28 06:57:40+00:00,False,gocept,github,* master,True,zopefoundation_roman,zopefoundation/roman,https://github.com/zopefoundation/roman
1ae029a963ffa4d0e5daeea83206c38a5b883f0c,Peter Boling,peter.boling@gmail.com,2022-09-16 11:03:13+07:00,Peter Boling,peter.boling@gmail.com,2022-09-16 04:03:13+00:00,False,gmail,gmail,* migrated,True,intridea_oauth2,intridea/oauth2,https://github.com/intridea/oauth2 4f3144d6bc05a74f24aa4e94e5dc4e6a461b87b7,Erik Michaels-Ober,sferik@gmail.com,2013-01-26 00:40:04-08:00,Erik Michaels-Ober,sferik@gmail.com,2013-01-26 08:40:13+00:00,False,gmail,gmail,* migrated,True,intridea_oauth2,intridea/oauth2,https://github.com/intridea/oauth2
1172a8764cd03240d114ad1a3b0ef797e4343fe5,Jason Tyler,jmtyler@gmail.com,2020-02-11 23:02:15-08:00,GitHub,noreply@github.com,2020-02-12 07:02:15+00:00,True,gmail,github,* develop,True,timothycrosley_hug.git,timothycrosley/hug.git,https://github.com/timothycrosley/hug.git 8f793f86ce59ef393b3f7c6d93130dedb8d79fc8,Timothy Crosley,timothy.crosley@gmail.com,2016-02-07 12:17:36-08:00,Timothy Crosley,timothy.crosley@gmail.com,2016-02-07 20:17:36+00:00,False,gmail,gmail,* develop,True,timothycrosley_hug.git,timothycrosley/hug.git,https://github.com/timothycrosley/hug.git
65b749ba98fa29531ca7e281f2d2295ea5bb5644,Angelo Paparazzi,angelo.paparazzi@ibm.com,2023-03-02 10:47:57-06:00,Angelo Paparazzi,apaparazzi0329@gmail.com,2023-03-16 21:52:55+00:00,False,ibm,gmail,* master,True,watson-developer-cloud_python-sdk.git,watson-developer-cloud/python-sdk.git,https://github.com/watson-developer-cloud/python-sdk.git 0fc9e32a0296ba399f216878c305fd83d7f115a9,Jeffrey Stylos,jsstylos@gmail.com,2015-10-08 10:09:23-04:00,Jeffrey Stylos,jsstylos@gmail.com,2015-10-08 14:09:23+00:00,False,gmail,gmail,* master,True,watson-developer-cloud_python-sdk.git,watson-developer-cloud/python-sdk.git,https://github.com/watson-developer-cloud/python-sdk.git
bf8e1b08f4a847dcd97f54c5115c9db59796f410,Matt Brictson,matt@mattbrictson.com,2023-10-19 22:54:28-07:00,GitHub,noreply@github.com,2023-10-20 05:54:28+00:00,False,mattbrictson,github,* master,True,vcr_vcr,vcr/vcr,https://github.com/vcrhonek/hwdata.git 7b9bf81a172eaccb55f282c39480161f73edf8f8,Flaviu Simihaian,flsimihaian@gmail.com,2011-11-21 21:33:27-05:00,Flaviu Simihaian,flsimihaian@gmail.com,2011-11-22 02:33:27+00:00,False,gmail,gmail,* master,True,vcr_vcr,vcr/vcr,https://github.com/vcrhonek/hwdata.git
f1d872bee4efa4d03cf136488379968002d139c1,Karen Etheridge,ether@cpan.org,2016-03-12 16:41:03-08:00,Karen Etheridge,ether@cpan.org,2016-03-13 00:41:03+00:00,False,cpan,cpan,* master,True,moose_MooseX-Runnable,moose/MooseX-Runnable,https://github.com/moose/MooseX-Runnable 2505322d10223bf7965740fac270c80cffed683f,Karen Etheridge,ether@cpan.org,2013-11-18 18:31:37-08:00,Karen Etheridge,ether@cpan.org,2013-11-19 02:31:37+00:00,False,cpan,cpan,* master,True,moose_MooseX-Runnable,moose/MooseX-Runnable,https://github.com/moose/MooseX-Runnable
06da921608b971fb47603671bcafdb2843992eb3,Tim Pope,code@tpope.net,2018-04-05 17:59:12-04:00,Tim Pope,code@tpope.net,2018-04-05 21:59:57+00:00,False,tpope,tpope,* master,True,tpope_vim-pathogen.git,tpope/vim-pathogen.git,https://github.com/tpope/vim-pathogen.git 3111f06b7039417845164434801c1e5443b0b2d9,Tim Pope,code@tpope.net,2013-03-10 16:07:37-04:00,Tim Pope,code@tpope.net,2013-03-10 20:07:37+00:00,False,tpope,tpope,* master,True,tpope_vim-pathogen.git,tpope/vim-pathogen.git,https://github.com/tpope/vim-pathogen.git
648a38e376afd2f9a4cb44eef457c99c61e2107b,Ogi Moore,ognyan.moore@gmail.com,2022-10-01 13:07:37-07:00,GitHub,noreply@github.com,2022-10-01 20:07:37+00:00,True,gmail,github,* master,True,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,https://github.com/pyqtgraph/pyqtgraph.git a82e940f7ab11fa150db8ef67aca36b2a558282f,Luke Campagnola,luke.campagnola@gmail.com,2014-03-05 11:01:53-05:00,Luke Campagnola,luke.campagnola@gmail.com,2014-03-05 16:01:53+00:00,False,gmail,gmail,* master,True,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,https://github.com/pyqtgraph/pyqtgraph.git
1be2f2a179a2cb951690fd64b1fe5a6ce2db0139,Jerome Leclanche,jerome@leclan.ch,2018-02-10 13:58:49+02:00,Jerome Leclanche,jerome@leclan.ch,2018-02-10 12:01:16+00:00,False,leclan,leclan,* master,True,jazzband_django-push-notifications,jazzband/django-push-notifications,https://github.com/jazzband/django-push-notifications 1a0a8a536b2b3b22c0669fdefd810a7764553428,Jerome Leclanche,jerome@leclan.ch,2015-06-30 07:34:06+02:00,Jerome Leclanche,jerome@leclan.ch,2015-06-30 05:34:14+00:00,False,leclan,leclan,* master,True,jazzband_django-push-notifications,jazzband/django-push-notifications,https://github.com/jazzband/django-push-notifications
bc8c5044010262b383bff98d26ebb746077bf80d,Jeff Meadows,jrmeadows2@gmail.com,2019-01-09 10:09:09-08:00,GitHub,noreply@github.com,2019-01-09 18:09:09+00:00,False,gmail,github,* master,True,box_flaky.git,box/flaky.git,https://github.com/box/flaky.git 857ab548f619773a8420331ce77ee6dce21ed106,Jeff-Meadows,jrmeadows2@gmail.com,2014-04-07 15:05:50-07:00,Jeff-Meadows,jrmeadows2@gmail.com,2014-04-07 22:05:50+00:00,False,gmail,gmail,* master,True,box_flaky.git,box/flaky.git,https://github.com/box/flaky.git
d1ec087a7f86e6dc14ed3771a9f8e84a5d384e0a,Andreas Mueller,t3kcit@gmail.com,2020-04-09 11:14:26-04:00,GitHub,noreply@github.com,2020-04-09 15:14:26+00:00,True,gmail,github,* main,True,amueller_word_cloud,amueller/word/cloud,https://github.com/amueller/word_cloud 2a732ce025b508dfe8381ace04e8c59050790530,Carl Gieringer,78054+carlgieringer@users.noreply.github.com,2020-02-22 23:14:08-08:00,Jean-Christophe Fillion-Robin,jchris.fillionr@kitware.com,2020-04-08 18:55:56+00:00,False,users,kitware,* main,True,amueller_word_cloud,amueller/word/cloud,https://github.com/amueller/word_cloud
95e617b15a138771ee61c3f65f6f5a7a9c1f872b,Zearin,zearin@gonk.net,2013-05-22 14:35:09-04:00,Zearin,zearin@gonk.net,2013-05-22 18:35:09+00:00,False,gonk,gonk,* master,True,heynemann_pyvows.git,heynemann/pyvows.git,https://github.com/heynemann/pyvows.git 95e617b15a138771ee61c3f65f6f5a7a9c1f872b,Zearin,zearin@gonk.net,2013-05-22 14:35:09-04:00,Zearin,zearin@gonk.net,2013-05-22 18:35:09+00:00,False,gonk,gonk,* master,True,heynemann_pyvows.git,heynemann/pyvows.git,https://github.com/heynemann/pyvows.git
8c0c5cb671871b3c724378be2d15065260097ff2,Guillaume Lours,705411+glours@users.noreply.github.com,2023-11-23 11:28:04+01:00,GitHub,noreply@github.com,2023-11-23 10:28:04+00:00,True,users,github,* main,True,docker_compose,docker/compose,https://github.com/docker/compose 8cfcfc8645fa47b776c8c6b441a9e2bb4b1b28d3,Guillaume Lours,guillaume.lours@docker.com,2020-08-17 18:29:28+02:00,Guillaume Lours,guillaume.lours@docker.com,2020-08-18 07:53:57+00:00,False,docker,docker,* main,True,docker_compose,docker/compose,https://github.com/docker/compose
e9185324ae5bf0e4ba72a9b07b0d50814b06ba16,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-15 20:44:45+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-15 18:44:45+00:00,False,unterwaditzer,unterwaditzer,* main,True,pimutils_vdirsyncer,pimutils/vdirsyncer,https://github.com/pimutils/vdirsyncer 0749e18b7b4c032db9dd39df00a63fafbe2960f2,Markus Unterwaditzer,markus@unterwaditzer.net,2014-04-14 12:49:39+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2014-04-14 10:49:39+00:00,False,unterwaditzer,unterwaditzer,* main,True,pimutils_vdirsyncer,pimutils/vdirsyncer,https://github.com/pimutils/vdirsyncer
3d9c14a8849114db9eb6f444c52631dd6c804fc3,Anthony Sottile,asottile@umich.edu,2024-01-06 14:14:49-05:00,GitHub,noreply@github.com,2024-01-06 19:14:49+00:00,True,umich,github,* main,True,dahlia_libsass-python.git,dahlia/libsass-python.git,https://github.com/dahlia/libsass-python.git 8706f6598ea157841c8d8ccf6365dfdbf0d72970,Hong Minhee,hongminhee@member.fsf.org,2015-10-02 04:27:46+09:00,Hong Minhee,hongminhee@member.fsf.org,2015-10-01 19:27:46+00:00,False,member,member,* main,True,dahlia_libsass-python.git,dahlia/libsass-python.git,https://github.com/dahlia/libsass-python.git
94544bdc6b564c59d2fa79af1ce100536fbff471,Oleh Prypin,oleh@pryp.in,2023-12-30 12:51:59+01:00,Oleh Prypin,oleh@pryp.in,2024-03-16 13:43:27+00:00,False,pryp,pryp,* master,True,mkdocs_mkdocs,mkdocs/mkdocs,https://github.com/mkdocs/mkdocs bdbf2ce5edc4d973e6f2c2b7a2acf85285918eee,Dougal Matthews,dougal@redhat.com,2015-04-03 14:47:00+01:00,Dougal Matthews,dougal@redhat.com,2015-04-03 13:47:00+00:00,False,redhat,redhat,* master,True,mkdocs_mkdocs,mkdocs/mkdocs,https://github.com/mkdocs/mkdocs
3b82add3755a8ffb826be54d0a1c9c6bd3218126,Jonathan Weaver,createchange@protonmail.com,2023-05-05 00:25:40-04:00,GitHub,noreply@github.com,2023-05-05 04:25:40+00:00,False,protonmail,github,* develop,True,boto_boto3,boto/boto3,https://github.com/boto/boto3 e3d291ba3c9f48f5d439233584652aa71d6890c1,Daniel G. Taylor,danielgtaylor@gmail.com,2014-11-11 11:50:58-08:00,Daniel G. Taylor,danielgtaylor@gmail.com,2014-11-11 19:50:58+00:00,False,gmail,gmail,* develop,True,boto_boto3,boto/boto3,https://github.com/boto/boto3
0e9f056b3acc4862fadff5bb417150a8a38593ab,Jeff Quast,contact@jeffquast.com,2020-01-15 16:05:17-08:00,GitHub,noreply@github.com,2020-01-16 00:05:17+00:00,False,jeffquast,github,* master,True,jquast_blessed,jquast/blessed,https://github.com/jquast/blessed 1af188b50248c794b671e55df5659e5935fdc799,Jeff Quast,contact@jeffquast.com,2015-10-02 14:08:41-07:00,Jeff Quast,contact@jeffquast.com,2015-10-02 21:08:41+00:00,False,jeffquast,jeffquast,* master,True,jquast_blessed,jquast/blessed,https://github.com/jquast/blessed
02c417d33da3c237ecf65afe84d4fb0c6f1b4286,Robert Grosse,grosse@google.com,2015-06-04 12:13:55-07:00,Robert Grosse,grosse@google.com,2015-06-04 19:13:55+00:00,False,google,google,* master,True,Storyyeller_enjarify,Storyyeller/enjarify,https://github.com/Storyyeller/enjarify 02c417d33da3c237ecf65afe84d4fb0c6f1b4286,Robert Grosse,grosse@google.com,2015-06-04 12:13:55-07:00,Robert Grosse,grosse@google.com,2015-06-04 19:13:55+00:00,False,google,google,* master,True,Storyyeller_enjarify,Storyyeller/enjarify,https://github.com/Storyyeller/enjarify
cdd4ad47d798d8729d510b9b00957044e26acb59,Kenneth Daily,kdaily@amazon.com,2021-10-15 10:57:21-07:00,GitHub,noreply@github.com,2021-10-15 17:57:21+00:00,False,amazon,github,* develop,True,boto_s3transfer,boto/s3transfer,https://github.com/boto/s3transfer 7721c5c0e0fc59f4e9bdcbaa5b30ee82dd88a15e,Nate Prewitt,Nate.Prewitt@gmail.com,2021-09-05 00:11:40-07:00,Nate Prewitt,Nate.Prewitt@gmail.com,2021-10-06 22:06:42+00:00,False,gmail,gmail,* develop,True,boto_s3transfer,boto/s3transfer,https://github.com/boto/s3transfer
b74141257443f217393bce2abf82ccd1d425b10d,Derek Gulbranson,derek73@gmail.com,2018-08-31 15:59:44-07:00,Derek Gulbranson,derek73@gmail.com,2018-08-31 22:59:44+00:00,False,gmail,gmail,* master,True,derek73_python-nameparser,derek73/python-nameparser,https://github.com/derek73/python-nameparser 78ffdef83dad7cf04392d8aae77fed247323536e,Derek Gulbranson,derek73@gmail.com,2014-05-14 15:52:19-07:00,Derek Gulbranson,derek73@gmail.com,2014-05-14 22:52:19+00:00,False,gmail,gmail,* master,True,derek73_python-nameparser,derek73/python-nameparser,https://github.com/derek73/python-nameparser
ee7de60f1a4a7652a35c5ce0a52c1276e5fada2e,Johannes Hoppe,info@johanneshoppe.com,2019-07-23 09:57:30+02:00,Johannes Hoppe,info@johanneshoppe.com,2019-07-23 08:52:58+00:00,False,johanneshoppe,johanneshoppe,* main,True,coddingtonbear_python-measurement,coddingtonbear/python-measurement,https://github.com/coddingtonbear/python-measurement a76744c544d9302f6cf3612326ec52214e2099d4,Johannes Hoppe,info@johanneshoppe.com,2018-01-09 18:26:18+01:00,Johannes Hoppe,info@johanneshoppe.com,2018-01-09 17:26:18+00:00,False,johanneshoppe,johanneshoppe,* main,True,coddingtonbear_python-measurement,coddingtonbear/python-measurement,https://github.com/coddingtonbear/python-measurement
af43013b4c7bf9edf13429be80d8c522cf14a730,Hong Xu,hong@topbug.net,2018-11-15 16:20:37-08:00,Hong Xu,hong@topbug.net,2018-11-16 00:20:37+00:00,False,topbug,topbug,* master,True,editorconfig_editorconfig-core-c.git,editorconfig/editorconfig-core-c.git,https://github.com/editorconfig/editorconfig-core-c.git af43013b4c7bf9edf13429be80d8c522cf14a730,Hong Xu,hong@topbug.net,2018-11-15 16:20:37-08:00,Hong Xu,hong@topbug.net,2018-11-16 00:20:37+00:00,False,topbug,topbug,* master,True,editorconfig_editorconfig-core-c.git,editorconfig/editorconfig-core-c.git,https://github.com/editorconfig/editorconfig-core-c.git
c3cd386de68721815451e8ba7cf4560d8d1c6ff6,omahs,73983677+omahs@users.noreply.github.com,2024-02-16 16:27:20+01:00,GitHub,noreply@github.com,2024-02-16 15:27:20+00:00,False,users,github,* master,True,joke2k_faker,joke2k/faker,https://github.com/joke2k/faker 7529e129e46b0dd27ecc9ecc843bc7cc0231571e,joke2k,joke2k@gmail.com,2015-02-16 17:47:38+01:00,joke2k,joke2k@gmail.com,2015-02-16 17:42:00+00:00,False,gmail,gmail,* master,True,joke2k_faker,joke2k/faker,https://github.com/joke2k/faker
087e79f8ac48898bd9ecc1ed54d636a0277e9690,Benoit Jacob,benoitjacob@google.com,2015-09-23 09:51:46-04:00,Benoit Jacob,benoitjacob@google.com,2015-09-23 13:51:46+00:00,True,google,google,* master,True,google_gemmlowp,google/gemmlowp,https://github.com/google/gemmlowp 75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae,Benoit Jacob,benoitjacob@google.com,2015-06-25 15:50:59-04:00,Benoit Jacob,benoitjacob@google.com,2015-06-25 19:53:04+00:00,False,google,google,* master,True,google_gemmlowp,google/gemmlowp,https://github.com/google/gemmlowp
5f72a0dc00818bea3bb0a6b5b10ad23824fbdcd3,Iustin Pop,iustin@k1024.org,2023-04-23 22:15:21+02:00,Iustin Pop,iustin@k1024.org,2023-04-23 20:16:42+00:00,False,k1024,k1024,* main,True,iustin_pylibacl,iustin/pylibacl,https://github.com/iustin/pylibacl 5f72a0dc00818bea3bb0a6b5b10ad23824fbdcd3,Iustin Pop,iustin@k1024.org,2023-04-23 22:15:21+02:00,Iustin Pop,iustin@k1024.org,2023-04-23 20:16:42+00:00,False,k1024,k1024,* main,True,iustin_pylibacl,iustin/pylibacl,https://github.com/iustin/pylibacl
f0f45dc240da0dcf9b98bad4271d52a9d230f1ea,Martin Larralde,martin.larralde@embl.de,2021-02-01 03:51:01+01:00,Martin Larralde,martin.larralde@embl.de,2021-02-01 02:51:01+00:00,False,embl,embl,* master,True,PyFilesystem_pyfilesystem2,PyFilesystem/pyfilesystem2,https://github.com/PyFilesystem/pyfilesystem2 9be803c1ff0a1440b6c8d2bdb39a4e4a511d4695,Will McGugan,willmcgugan@gmail.com,2019-01-06 13:49:08+00:00,Will McGugan,willmcgugan@gmail.com,2019-01-06 13:49:08+00:00,False,gmail,gmail,* master,True,PyFilesystem_pyfilesystem2,PyFilesystem/pyfilesystem2,https://github.com/PyFilesystem/pyfilesystem2
417268cb0ff2ecf8da29f80d542b0b10c97bab01,David Lord,davidism@gmail.com,2023-06-27 14:41:47-07:00,David Lord,davidism@gmail.com,2023-06-27 21:41:47+00:00,True,gmail,gmail,* main,True,pallets_werkzeug,pallets/werkzeug,https://github.com/pallets/werkzeug 271968e67533d195c16d0c0e1d73301ab8052c29,Markus Unterwaditzer,markus@unterwaditzer.net,2014-09-01 23:33:28+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2014-09-02 03:03:07+00:00,False,unterwaditzer,unterwaditzer,* main,True,pallets_werkzeug,pallets/werkzeug,https://github.com/pallets/werkzeug
ecf6db5425913f97d14774987b65849d0b5b0d0b,Min RK,benjaminrk@gmail.com,2024-02-16 14:51:38+01:00,GitHub,noreply@github.com,2024-02-16 13:51:38+00:00,True,gmail,github,* main,True,zeromq_pyzmq.git,zeromq/pyzmq.git,https://github.com/zeromq/pyzmq.git b95d3ee5bd401ef17f259e3eae27a3f5694016be,MinRK,benjaminrk@gmail.com,2012-03-05 14:51:01-08:00,MinRK,benjaminrk@gmail.com,2012-03-06 21:36:34+00:00,False,gmail,gmail,* main,True,zeromq_pyzmq.git,zeromq/pyzmq.git,https://github.com/zeromq/pyzmq.git
8801e4d3fc542656c7caa3c77a1307daf210f2f3,Rick van Hattem,Wolph@wol.ph,2019-09-05 11:05:15+02:00,Rick van Hattem,Wolph@wol.ph,2019-09-05 09:05:15+00:00,True,wol,wol,* develop,True,WoLpH_numpy-stl,WoLpH/numpy-stl,https://github.com/WoLpH/numpy-stl 6ab218bf71bc091eb04cedde61dcfc6fb52bbf13,Rick van Hattem,Wolph@wol.ph,2016-09-11 18:13:17+02:00,Rick van Hattem,Wolph@wol.ph,2016-09-11 16:13:17+00:00,False,wol,wol,* develop,True,WoLpH_numpy-stl,WoLpH/numpy-stl,https://github.com/WoLpH/numpy-stl
687c601a2636dde7a2c466056296a4bb8a981bd9,Martin Packman,gzlist@googlemail.com,2018-10-15 11:05:59+01:00,Brian Brazil,brian.brazil@robustperception.io,2018-10-15 10:05:59+00:00,False,googlemail,robustperception,* master,True,prometheus_client_python.git,prometheus/client/python.git,https://github.com/prometheus/client_python.git 7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659,Brian Brazil,brian.brazil@gmail.com,2015-02-04 09:44:34+00:00,Brian Brazil,brian.brazil@gmail.com,2015-02-09 23:02:29+00:00,False,gmail,gmail,* master,True,prometheus_client_python.git,prometheus/client/python.git,https://github.com/prometheus/client_python.git
5ed5d4ebc1bcabecdc3278a7dda848a29b5e8ae6,Zearin,Zearin@users.noreply.github.com,2015-03-02 13:06:18-05:00,Zearin,Zearin@users.noreply.github.com,2015-03-02 18:06:18+00:00,False,users,users,* master,True,heynemann_preggy,heynemann/preggy,https://github.com/heynemann/preggy 5ed5d4ebc1bcabecdc3278a7dda848a29b5e8ae6,Zearin,Zearin@users.noreply.github.com,2015-03-02 13:06:18-05:00,Zearin,Zearin@users.noreply.github.com,2015-03-02 18:06:18+00:00,False,users,users,* master,True,heynemann_preggy,heynemann/preggy,https://github.com/heynemann/preggy
1403966f149f6ff42a3b5770bb5b0e562e1f2544,Nathaniel J. Smith,njs@pobox.com,2017-12-06 03:23:12-08:00,GitHub,noreply@github.com,2017-12-06 11:23:12+00:00,True,pobox,github,* main,True,python-trio_trio,python-trio/trio,https://github.com/python-trio/trio 3759eada7e7905ad0091e1f8edf676f177009188,Nathaniel J. Smith,njs@pobox.com,2017-12-04 05:17:55-08:00,Nathaniel J. Smith,njs@pobox.com,2017-12-05 00:14:52+00:00,False,pobox,pobox,* main,True,python-trio_trio,python-trio/trio,https://github.com/python-trio/trio
8985b952cd8af594b3a9c822f793f980ee79aeb2,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-10-21 17:14:19+03:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-10-21 14:14:19+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-tblib,ionelmc/python-tblib,https://github.com/ionelmc/python-tblib 8d04e68fdac7ddf9f34f3d2f11f5f305815ef789,Ionel Cristian Mărieș,contact@ionelmc.ro,2015-10-02 22:42:08+03:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2015-10-02 19:42:08+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-tblib,ionelmc/python-tblib,https://github.com/ionelmc/python-tblib
1ff8b03ae9cf7b6d14cf514a3a8ac297fe799a24,Gabriel Scherer,gabriel.scherer@gmail.com,2019-06-23 17:37:03+02:00,GitHub,noreply@github.com,2019-06-23 15:37:03+00:00,True,gmail,github,* master,True,ocaml_ocamlbuild.git,ocaml/ocamlbuild.git,https://github.com/ocaml/ocamlbuild.git 0aaffb919f6938261a75203f2c1c5f19764b0e17,Sander Maijers,S.N.Maijers@gmail.com,2016-04-18 14:02:43+02:00,Gabriel Scherer,gabriel.scherer@gmail.com,2016-05-04 11:33:20+00:00,False,gmail,gmail,* master,True,ocaml_ocamlbuild.git,ocaml/ocamlbuild.git,https://github.com/ocaml/ocamlbuild.git
c262a2d65d39e4b2a9593cf0537ddb68f78798c7,Karen Etheridge,ether@cpan.org,2019-04-13 23:55:47-07:00,Karen Etheridge,ether@cpan.org,2019-04-14 06:55:47+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,https://github.com/karenetheridge/B-Hooks-Parser.git 5f1e47afcb524803f71f600b6a1edbfe40f6796f,Karen Etheridge,ether@cpan.org,2015-06-06 13:55:06-07:00,Karen Etheridge,ether@cpan.org,2015-06-06 20:55:06+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,https://github.com/karenetheridge/B-Hooks-Parser.git
5b7260e222f66040807abbe5ec162b07f9201292,Thomas Montague,montague.thomas@gmail.com,2024-01-10 19:43:19-05:00,GitHub,noreply@github.com,2024-01-11 00:43:19+00:00,True,gmail,github,* master,True,ComplianceAsCode_content,ComplianceAsCode/content,https://github.com/ComplianceAsCode/content 0ebc98342d4b2be00d7799e2e35b33898619b901,Juan Antonio Osorio Robles,jaosorior@redhat.com,2020-03-24 17:09:56+02:00,Juan Antonio Osorio Robles,jaosorior@redhat.com,2020-03-24 15:09:56+00:00,False,redhat,redhat,* master,True,ComplianceAsCode_content,ComplianceAsCode/content,https://github.com/ComplianceAsCode/content
bbe2749821f565190979971c8ea3db8e50cb1698,Zander Brown,ZanderBrown@users.noreply.github.com,2018-07-08 19:06:15+01:00,Zander Brown,ZanderBrown@users.noreply.github.com,2018-07-08 18:06:15+00:00,True,users,users,* master,True,mu-editor_mu,mu-editor/mu,https://github.com/mu-editor/mu 9b6705571107d704d576269ae1723d589c330a16,Nicholas H.Tollervey,ntoll@ntoll.org,2015-12-08 07:07:13+00:00,Nicholas H.Tollervey,ntoll@ntoll.org,2015-12-08 07:07:13+00:00,False,ntoll,ntoll,* master,True,mu-editor_mu,mu-editor/mu,https://github.com/mu-editor/mu
8179f7f379de8a882deeeb8081e1dce051fa7c53,Jacob Tomlinson,jacobtomlinson@users.noreply.github.com,2019-10-22 13:18:14+01:00,Benjamin Zaitlen,quasiben@users.noreply.github.com,2019-10-22 12:18:14+00:00,False,users,users,* main,True,dask_dask,dask/dask,https://github.com/dask/dask 0f896927c4541cc70226e5fc946520f6225cde7b,Matthew Rocklin,mrocklin@gmail.com,2016-06-22 16:41:31-07:00,GitHub,noreply@github.com,2016-06-22 23:41:31+00:00,False,gmail,github,* main,True,dask_dask,dask/dask,https://github.com/dask/dask
7105292f785e68c31cca6b06740b5958faf321c5,Venelin Stoykov,vkstoykov@gmail.com,2021-11-02 08:39:05+02:00,Venelin Stoykov,vkstoykov@gmail.com,2021-11-02 06:39:05+00:00,True,gmail,gmail,* develop,True,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,https://github.com/matthewwithanm/django-imagekit.git 7532e5040bd9487ddc4d74dcac22209b2fee33de,Matthew Tretter,m@tthewwithanm.com,2012-11-06 00:40:14-05:00,Matthew Tretter,m@tthewwithanm.com,2012-11-06 05:40:14+00:00,False,tthewwithanm,tthewwithanm,* develop,True,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,https://github.com/matthewwithanm/django-imagekit.git
4c3d023d3258e1792378b9e23ec4127cbce181df,David Golden,xdg@xdg.me,2017-04-02 13:43:23-04:00,David Golden,xdg@xdg.me,2017-04-02 17:43:23+00:00,False,xdg,xdg,* master,True,dagolden_class-insideout.git,dagolden/class-insideout.git,https://github.com/dagolden/class-insideout.git de6d9769c13e375a6299907dd0f1cd85e31a7ee1,David Golden,dagolden@cpan.org,2013-01-23 20:38:23-05:00,David Golden,dagolden@cpan.org,2013-01-24 01:38:23+00:00,False,cpan,cpan,* master,True,dagolden_class-insideout.git,dagolden/class-insideout.git,https://github.com/dagolden/class-insideout.git
882ddc191e1b06738c16daf0c11e3b96feb30f66,Bob Copeland,copeland@lastpass.com,2015-11-02 16:34:13-05:00,Bob Copeland,copeland@lastpass.com,2015-11-10 15:19:45+00:00,False,lastpass,lastpass,* master,True,lastpass_lastpass-cli,lastpass/lastpass-cli,https://github.com/lastpass/lastpass-cli 5c229976032872d2c5e889f033ce82f20e15e6c4,Bob Copeland,copeland@lastpass.com,2014-11-20 04:48:29-05:00,Bob Copeland,copeland@lastpass.com,2014-11-20 09:48:29+00:00,False,lastpass,lastpass,* master,True,lastpass_lastpass-cli,lastpass/lastpass-cli,https://github.com/lastpass/lastpass-cli
901b00547d67a3244626e41849fc41c15be28a75,Johan ter Beest,johan@terbeest.net,2015-11-18 12:25:05+01:00,Johan ter Beest,johan@terbeest.net,2015-11-18 11:25:05+00:00,True,terbeest,terbeest,* master,True,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,https://github.com/RIPE-NCC/ripe.atlas.sagan 8a365abd9c7255d0b92787671bdea5f44408cbaa,Daniel Quinn,dquinn@ripe.net,2015-11-17 18:27:00+01:00,Daniel Quinn,dquinn@ripe.net,2015-11-17 17:27:00+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,https://github.com/RIPE-NCC/ripe.atlas.sagan
0badc75904cb6efd126f1f01b74ca40af9e92ab8,E. McConville,emcconville@emcconville.com,2020-07-19 09:28:39-05:00,E. McConville,emcconville@emcconville.com,2020-07-19 14:28:39+00:00,False,emcconville,emcconville,* master,True,emcconville_wand,emcconville/wand,https://github.com/emcconville/wand 92f3d5111cf529b550a35a43cdbdd92910697ed1,Hong Minhee,minhee@dahlia.kr,2013-03-05 01:05:47+09:00,Hong Minhee,minhee@dahlia.kr,2013-03-04 16:05:47+00:00,False,dahlia,dahlia,* master,True,emcconville_wand,emcconville/wand,https://github.com/emcconville/wand
5010bd74848e732669ef739b3df2b0d34e8f84c1,Karen Etheridge,ether@cpan.org,2017-06-27 16:21:31-07:00,Karen Etheridge,ether@cpan.org,2017-06-27 23:21:31+00:00,False,cpan,cpan,* master,True,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP 5010bd74848e732669ef739b3df2b0d34e8f84c1,Karen Etheridge,ether@cpan.org,2017-06-27 16:21:31-07:00,Karen Etheridge,ether@cpan.org,2017-06-27 23:21:31+00:00,False,cpan,cpan,* master,True,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP
87c6bc4f1cf3ca953dcb839fbfe32329947ce687,Andrew Ayer,andrew@sslmate.com,2017-01-06 10:55:52-08:00,Andrew Ayer,andrew@sslmate.com,2017-01-06 18:55:52+00:00,False,sslmate,sslmate,* master,True,sslmate_certspotter,sslmate/certspotter,https://github.com/sslmate/certspotter 87c6bc4f1cf3ca953dcb839fbfe32329947ce687,Andrew Ayer,andrew@sslmate.com,2017-01-06 10:55:52-08:00,Andrew Ayer,andrew@sslmate.com,2017-01-06 18:55:52+00:00,False,sslmate,sslmate,* master,True,sslmate_certspotter,sslmate/certspotter,https://github.com/sslmate/certspotter
f643a8e6e6a3e69ff803048e6fb33dfcdc244ac3,memst,stankev.martynas@gmail.com,2021-09-14 20:22:48+01:00,GitHub,noreply@github.com,2021-09-14 19:22:48+00:00,False,gmail,github,* master,True,python-hyper_h11.git,python-hyper/h11.git,https://github.com/python-hyper/h11.git 2dc18c5ef831bd6d9b7d5cb2def4450a83114980,Nathaniel J. Smith,njs@pobox.com,2016-05-13 18:19:14-07:00,Nathaniel J. Smith,njs@pobox.com,2016-05-14 01:19:14+00:00,False,pobox,pobox,* master,True,python-hyper_h11.git,python-hyper/h11.git,https://github.com/python-hyper/h11.git
9ed5b172ee02183dd9e57efad0a7661eb56529b2,Talha Awan,talhamanzoorawan@gmail.com,2020-12-20 19:16:00+05:00,Talha Awan,talhamanzoorawan@gmail.com,2020-12-20 14:16:00+00:00,True,gmail,gmail,* master,True,felixge_node-dateformat,felixge/node-dateformat,https://github.com/felixge/node-dateformat 5fa13ecb73d35b1e29ce2d5b8256dd879b58921c,Charlike Mike Reagent,mamemto_100@mail.bg,2014-11-26 13:45:57+02:00,Charlike Mike Reagent,mamemto_100@mail.bg,2014-11-26 11:45:57+00:00,False,mail,mail,* master,True,felixge_node-dateformat,felixge/node-dateformat,https://github.com/felixge/node-dateformat
3f8314db627fe366dc7de1d3f514c4ef7e56e52d,Steven Silvester,steven.silvester@ieee.org,2023-12-12 14:12:51-06:00,GitHub,noreply@github.com,2023-12-12 20:12:51+00:00,False,ieee,github,* master,True,mongodb_motor,mongodb/motor,https://github.com/mongodb/motor 3d6089eeeea36ac808c6c409c36b8c13f1901bba,A. Jesse Jiryu Davis,jesse@10gen.com,2013-01-15 14:07:09-05:00,A. Jesse Jiryu Davis,jesse@10gen.com,2013-01-15 19:07:09+00:00,False,10gen,10gen,* master,True,mongodb_motor,mongodb/motor,https://github.com/mongodb/motor
7401efab4d6c2db93886ca92b4479ce90d749a51,Bob Halley,halley@dnspython.org,2024-02-09 14:12:59-08:00,Bob Halley,halley@dnspython.org,2024-02-09 22:12:59+00:00,False,dnspython,dnspython,* main,True,rthalley_dnspython.git,rthalley/dnspython.git,https://github.com/rthalley/dnspython.git 7401efab4d6c2db93886ca92b4479ce90d749a51,Bob Halley,halley@dnspython.org,2024-02-09 14:12:59-08:00,Bob Halley,halley@dnspython.org,2024-02-09 22:12:59+00:00,False,dnspython,dnspython,* main,True,rthalley_dnspython.git,rthalley/dnspython.git,https://github.com/rthalley/dnspython.git
d75c658e1bd25444d2af2ea759c734fb0f952aa4,fgo,fgo@ableton.com,2018-07-06 09:21:52+02:00,fgo,fgo@ableton.com,2018-07-06 07:32:01+00:00,False,ableton,ableton,* master,True,Ableton_link.git,Ableton/link.git,https://github.com/Ableton/link.git c33d22bc3ca9f18d4d282c04c77c8dfc88effb8b,fgo,fgo@ableton.com,2016-09-01 10:12:58+02:00,fgo,fgo@ableton.com,2016-09-12 19:44:41+00:00,False,ableton,ableton,* master,True,Ableton_link.git,Ableton/link.git,https://github.com/Ableton/link.git
a9cbc405d26a78a617c07c5fb924c5a666091ea3,Rémy Coutable,rymai@users.noreply.github.com,2019-11-01 01:17:30+01:00,GitHub,noreply@github.com,2019-11-01 00:17:30+00:00,True,users,github,* master,True,guard_guard.git,guard/guard.git,https://invent.kde.org/plasma/libksysguard.git 94623f22ddc05e6ba39515f5dd19fde28c2d3f23,Michael Kessler,michi@netzpiraten.ch,2012-09-17 23:08:52+02:00,Michael Kessler,michi@netzpiraten.ch,2012-09-17 21:09:03+00:00,False,netzpiraten,netzpiraten,* master,True,guard_guard.git,guard/guard.git,https://invent.kde.org/plasma/libksysguard.git
a51dbb5a3f0a524064e735a9d2a66f8f55ed1378,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 14:55:03+01:00,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 13:55:03+00:00,False,polytechnique,polytechnique,* master,True,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,https://github.com/django-ldapdb/django-ldapdb 4d4720a2fc6827729aba75b950fb9a1cbb8a83c9,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 14:24:46+01:00,Raphaël Barrois,raphael.barrois@polytechnique.org,2018-07-29 13:28:09+00:00,False,polytechnique,polytechnique,* master,True,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,https://github.com/django-ldapdb/django-ldapdb
c34ddaa9a4041bc4c38414d3d0aeb1eb588d92f8,Dan Hemberger,daniel.hemberger@gmail.com,2022-11-09 22:39:19-08:00,Dan Hemberger,daniel.hemberger@gmail.com,2022-11-10 06:41:16+00:00,False,gmail,gmail,* main,True,hickford_MechanicalSoup,hickford/MechanicalSoup,https://github.com/hickford/MechanicalSoup 39e75497959a90f3e5c3925801b15e21899e2398,Mirth Hickford,mirth.hickford@gmail.com,2015-11-24 12:03:29+00:00,Mirth Hickford,mirth.hickford@gmail.com,2015-11-24 12:03:29+00:00,False,gmail,gmail,* main,True,hickford_MechanicalSoup,hickford/MechanicalSoup,https://github.com/hickford/MechanicalSoup
c3e7f310927a0806de8663676d645ecb8f693229,Marius Gedminas,marius@gedmin.as,2015-12-08 19:01:44+02:00,Marius Gedminas,marius@gedmin.as,2015-12-08 17:01:44+00:00,False,gedmin,gedmin,* master,True,gtimelog_gtimelog,gtimelog/gtimelog,https://github.com/gtimelog/gtimelog 44d5a1cb3c6b78e0c2fe77f7133ddf909fb24d1c,Marius Gedminas,marius@gedmin.as,2013-11-27 10:46:23+02:00,Marius Gedminas,marius@gedmin.as,2013-11-27 08:46:23+00:00,False,gedmin,gedmin,* master,True,gtimelog_gtimelog,gtimelog/gtimelog,https://github.com/gtimelog/gtimelog
d1e69b195b2c40f3ecc30563722858d4af24dad7,Zuul,zuul@review.opendev.org,2020-06-01 23:33:33+00:00,Gerrit Code Review,review@openstack.org,2020-06-01 23:33:33+00:00,True,review,openstack,* master,True,openstack_python-swiftclient.git,openstack/python-swiftclient.git,https://github.com/openstack/python-swiftclient.git 061607fc1dd4c9acde6bfbcbd7094d2515163f8b,liuqing,jing.liuqing@99cloud.net,2014-07-01 16:04:12+08:00,liuqing,jing.liuqing@99cloud.net,2014-07-03 06:54:25+00:00,False,99cloud,99cloud,* master,True,openstack_python-swiftclient.git,openstack/python-swiftclient.git,https://github.com/openstack/python-swiftclient.git
e65c12da5f0b2d2c3531d790953b5d288c03b4a7,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,False,src,src,* main,True,GNOME_network-manager-applet,GNOME/network-manager-applet,https://gitlab.gnome.org/GNOME/network-manager-applet e65c12da5f0b2d2c3531d790953b5d288c03b4a7,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,Dan Williams,dcbw@src.gnome.org,2007-02-02 15:37:33+00:00,False,src,src,* main,True,GNOME_network-manager-applet,GNOME/network-manager-applet,https://gitlab.gnome.org/GNOME/network-manager-applet
c9cda413f4f4be6a42a55d7c44a56081e8496ce6,Daniel P. Berrangé,berrange@redhat.com,2020-05-11 13:50:26+01:00,Daniel P. Berrangé,berrange@redhat.com,2020-05-15 16:34:35+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,https://gitlab.com/libvirt/libvirt-ruby.git c9cda413f4f4be6a42a55d7c44a56081e8496ce6,Daniel P. Berrangé,berrange@redhat.com,2020-05-11 13:50:26+01:00,Daniel P. Berrangé,berrange@redhat.com,2020-05-15 16:34:35+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,https://gitlab.com/libvirt/libvirt-ruby.git
99909fcd219211e71c1742add9a9db811d8e8cae,David Ford,david@blue-labs.org,2022-03-13 21:21:19-04:00,GitHub,noreply@github.com,2022-03-14 01:21:19+00:00,True,blue-labs,github,* master,True,FirefighterBlu3_python-pam,FirefighterBlu3/python-pam,https://github.com/FirefighterBlu3/python-pam 8826e8c8dd196963866d5907b46f4716fc8732f7,David Ford,david@blue-labs.org,2018-05-04 21:50:57-04:00,GitHub,noreply@github.com,2018-05-05 01:50:57+00:00,False,blue-labs,github,* master,True,FirefighterBlu3_python-pam,FirefighterBlu3/python-pam,https://github.com/FirefighterBlu3/python-pam
1a4452ac8e92f90d8c16a4ba0bee7ba3f0a6cd2e,Alf Gaida,agaida@siduction.org,2018-03-26 18:18:29+02:00,Alf Gaida,agaida@siduction.org,2018-03-26 16:18:29+00:00,False,siduction,siduction,* master,True,lxqt_qterminal.git,lxqt/qterminal.git,https://github.com/lxqt/qterminal.git 78425623e890d254da489e7a198223849883a157,Jerome Leclanche,jerome@leclan.ch,2014-10-21 18:11:55+02:00,Jerome Leclanche,jerome@leclan.ch,2014-10-22 08:13:14+00:00,False,leclan,leclan,* master,True,lxqt_qterminal.git,lxqt/qterminal.git,https://github.com/lxqt/qterminal.git
d7235c74f8605f4abfb11eb257246864c7dcf709,John L. Villalovos,john@sodarock.com,2024-02-17 10:09:20-08:00,Nejc Habjan,hab.nejc@gmail.com,2024-02-17 19:24:19+00:00,False,sodarock,gmail,* main,True,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,https://github.com/python-gitlab/python-gitlab.git edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc,Eric Davies,iamed2@gmail.com,2021-07-27 14:36:55-05:00,John Villalovos,john@sodarock.com,2021-07-27 21:35:34+00:00,False,gmail,sodarock,* main,True,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,https://github.com/python-gitlab/python-gitlab.git
cb853560019b61f3fe840b2be3621a0c7793324c,Axel Beckert,abe@deuxchevaux.org,2017-07-23 19:29:27+02:00,Axel Beckert,abe@deuxchevaux.org,2017-07-23 17:29:27+00:00,False,deuxchevaux,deuxchevaux,* master,True,elmar_aptitude-robot,elmar/aptitude-robot,https://github.com/elmar/aptitude-robot fc342ca115e577225dd54c7c8cfed3b21edbcba8,Axel Beckert,abe@deuxchevaux.org,2017-07-23 19:27:34+02:00,Axel Beckert,abe@deuxchevaux.org,2017-07-23 17:27:34+00:00,False,deuxchevaux,deuxchevaux,* master,True,elmar_aptitude-robot,elmar/aptitude-robot,https://github.com/elmar/aptitude-robot
2e6d53f28a6cd356bc500c05d0f653ebe40255c8,Nikita Bulai,bulaj.nikita@gmail.com,2020-06-03 21:47:42+03:00,Nikita Bulai,bulaj.nikita@gmail.com,2020-06-03 18:47:42+00:00,False,gmail,gmail,* main,True,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,https://github.com/doorkeeper-gem/doorkeeper 93a66ab15c5068574d71acec298219f32fb0c3a2,Tute Costa,tutecosta@gmail.com,2014-11-22 20:02:50-05:00,Tute Costa,tutecosta@gmail.com,2014-11-23 01:02:50+00:00,False,gmail,gmail,* main,True,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,https://github.com/doorkeeper-gem/doorkeeper
72455878f6e8a7056448829ef227d31520b34839,Stefan Breunig,stefan-github@yrden.de,2014-12-27 21:46:11+01:00,Stefan Breunig,stefan-github@yrden.de,2014-12-27 20:46:11+00:00,False,yrden,yrden,* master,True,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian 72455878f6e8a7056448829ef227d31520b34839,Stefan Breunig,stefan-github@yrden.de,2014-12-27 21:46:11+01:00,Stefan Breunig,stefan-github@yrden.de,2014-12-27 20:46:11+00:00,False,yrden,yrden,* master,True,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,https://github.com/breunigs/python-librtmp-debian
56fceff11bf90f020acd4000568a0a56299f8ffe,Gregory Smith,gps@google.com,2015-03-20 18:22:24-07:00,Gregory Smith,gps@google.com,2015-03-21 01:22:24+00:00,False,google,google,* main,True,google_python_portpicker,google/python/portpicker,https://github.com/google/python_portpicker 56fceff11bf90f020acd4000568a0a56299f8ffe,Gregory Smith,gps@google.com,2015-03-20 18:22:24-07:00,Gregory Smith,gps@google.com,2015-03-21 01:22:24+00:00,False,google,google,* main,True,google_python_portpicker,google/python/portpicker,https://github.com/google/python_portpicker
70b949cd2c723ac315f95539ad72d388daf84806,John Vandenberg,jayvdb@gmail.com,2022-03-14 10:36:04+08:00,GitHub,noreply@github.com,2022-03-14 02:36:04+00:00,True,gmail,github,* master,True,carljm_django-model-utils.git,carljm/django-model-utils.git,https://github.com/carljm/django-model-utils.git 6aa6ba0667f49dea0e71d4ec1cca93d3d67f302c,Trey Hunner,trey@treyhunner.com,2013-05-20 22:58:08-07:00,Trey Hunner,trey@treyhunner.com,2013-07-25 06:22:12+00:00,False,treyhunner,treyhunner,* master,True,carljm_django-model-utils.git,carljm/django-model-utils.git,https://github.com/carljm/django-model-utils.git
5885bcb3d4145ac159805b56b0b2fc4f13a09a7e,mgetka,michal.getka@gmail.com,2020-08-10 10:37:23+02:00,mgetka,michal.getka@gmail.com,2020-08-10 08:37:23+00:00,True,gmail,gmail,* dev,True,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git f1aa25bcf83eb77eb6476c678d4375039127679a,Steven Loria,sloria1@gmail.com,2013-11-08 13:36:15-06:00,Steven Loria,sloria1@gmail.com,2013-11-08 19:36:15+00:00,False,gmail,gmail,* dev,True,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git
3096a5caa6c37f0e6d5067214829e5b988bc35e7,Tomas Susanka,tsusanka@gmail.com,2020-04-30 14:49:33+02:00,Tomas Susanka,tsusanka@gmail.com,2020-04-30 12:49:47+00:00,False,gmail,gmail,* main,True,trezor_trezor-firmware.git,trezor/trezor-firmware.git,https://github.com/trezor/trezor-firmware.git f684f4ad243abfed03c53946a85493e03d272ec7,Tomas Susanka,tsusanka@gmail.com,2019-01-16 13:23:44+01:00,Pavol Rusnak,pavol@rusnak.io,2019-01-16 12:46:13+00:00,False,gmail,rusnak,* main,True,trezor_trezor-firmware.git,trezor/trezor-firmware.git,https://github.com/trezor/trezor-firmware.git
edf1d67ff7322d3cf5b747fc0753704a41be098e,Gregory Todd Williams,greg@evilfunhouse.com,2018-02-03 18:04:22-08:00,GitHub,noreply@github.com,2018-02-04 02:04:22+00:00,True,evilfunhouse,github,* master,True,kasei_attean.git,kasei/attean.git,https://github.com/kasei/attean.git 33c482078b0ffe85e13dd624cd985e7a69d15041,Gregory Todd Williams,greg@evilfunhouse.com,2016-02-17 12:57:08-08:00,Gregory Todd Williams,greg@evilfunhouse.com,2016-02-17 20:57:08+00:00,False,evilfunhouse,evilfunhouse,* master,True,kasei_attean.git,kasei/attean.git,https://github.com/kasei/attean.git
543ffdb82b4c5b6af4b135aa76bb988b1bce8ac6,Gaetano Guerriero,x.guerriero@tin.it,2018-04-25 15:30:41+02:00,Gaetano Guerriero,x.guerriero@tin.it,2018-04-25 13:30:41+00:00,False,tin,tin,* master,True,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian a7cceacf16d2a0f959ec76935c89ccdce1707385,Gaetano Guerriero,x.guerriero@tin.it,2017-07-15 10:42:40+02:00,Gaetano Guerriero,x.guerriero@tin.it,2017-07-15 08:42:40+00:00,False,tin,tin,* master,True,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,https://github.com/gaetano-guerriero/eyeD3-debian
bd2c6282a78954d996ecd989f774b18f6e5c4960,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-12-13 18:17:28+02:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2023-12-13 16:17:28+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,https://github.com/ionelmc/python-lazy-object-proxy.git 890441240ba4fa5d2f79d4e6e6c326a5f0542c6d,Ionel Cristian Mărieș,contact@ionelmc.ro,2014-12-07 16:37:38+02:00,Ionel Cristian Mărieș,contact@ionelmc.ro,2014-12-07 14:37:38+00:00,False,ionelmc,ionelmc,* master,True,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,https://github.com/ionelmc/python-lazy-object-proxy.git
134c792df3b6aa84de3e74e81a875493c95dcc2e,Aarni Koskela,akx@iki.fi,2023-03-03 18:51:58+02:00,GitHub,noreply@github.com,2023-03-03 16:51:58+00:00,True,iki,github,* master,True,python-babel_babel,python-babel/babel,https://github.com/python-babel/flask-babel 1174bff582e4a8c41bec10b7114aa202a32c6b48,Lasse Schuirmann,lasse.schuirmann@gmail.com,2015-09-22 23:21:20+02:00,Lasse Schuirmann,lasse.schuirmann@gmail.com,2015-09-22 21:22:40+00:00,False,gmail,gmail,* master,True,python-babel_babel,python-babel/babel,https://github.com/python-babel/flask-babel
8cba4a2011f70921d5130e0fbffa7e986ea82593,Chip Kent,5250374+chipkent@users.noreply.github.com,2021-05-19 12:46:19-06:00,GitHub,noreply@github.com,2021-05-19 18:46:19+00:00,False,users,github,* master,True,jpy-consortium_jpy,jpy-consortium/jpy,https://github.com/jpy-consortium/jpy 8cba4a2011f70921d5130e0fbffa7e986ea82593,Chip Kent,5250374+chipkent@users.noreply.github.com,2021-05-19 12:46:19-06:00,GitHub,noreply@github.com,2021-05-19 18:46:19+00:00,False,users,github,* master,True,jpy-consortium_jpy,jpy-consortium/jpy,https://github.com/jpy-consortium/jpy
30167a535c7eac17888d50a08998bccf92469e19,Federico Capoano,nemesis@ninux.org,2016-07-08 17:35:25+02:00,Federico Capoano,nemesis@ninux.org,2016-07-08 15:35:25+00:00,False,ninux,ninux,* master,True,openwisp_django-x509,openwisp/django-x509,https://github.com/openwisp/django-x509 30167a535c7eac17888d50a08998bccf92469e19,Federico Capoano,nemesis@ninux.org,2016-07-08 17:35:25+02:00,Federico Capoano,nemesis@ninux.org,2016-07-08 15:35:25+00:00,False,ninux,ninux,* master,True,openwisp_django-x509,openwisp/django-x509,https://github.com/openwisp/django-x509
3e3455ef9ae8f9751f8f1cdc8d08c7ccfdcd2b2f,nefrob,25070989+nefrob@users.noreply.github.com,2023-10-27 11:06:58-06:00,GitHub,noreply@github.com,2023-10-27 17:06:58+00:00,False,users,github,* main,True,tox-dev_py-filelock,tox-dev/py-filelock,https://github.com/tox-dev/py-filelock 3e3455ef9ae8f9751f8f1cdc8d08c7ccfdcd2b2f,nefrob,25070989+nefrob@users.noreply.github.com,2023-10-27 11:06:58-06:00,GitHub,noreply@github.com,2023-10-27 17:06:58+00:00,False,users,github,* main,True,tox-dev_py-filelock,tox-dev/py-filelock,https://github.com/tox-dev/py-filelock
fdb29683d805781884262ace1df463746bc66caa,Juho Vepsäläinen,bebraw@gmail.com,2020-10-16 16:47:14+02:00,Juho Vepsäläinen,bebraw@gmail.com,2020-10-16 14:47:14+00:00,False,gmail,gmail,* develop,True,survivejs_webpack-merge.git,survivejs/webpack-merge.git,https://github.com/survivejs/webpack-merge.git fdb29683d805781884262ace1df463746bc66caa,Juho Vepsäläinen,bebraw@gmail.com,2020-10-16 16:47:14+02:00,Juho Vepsäläinen,bebraw@gmail.com,2020-10-16 14:47:14+00:00,False,gmail,gmail,* develop,True,survivejs_webpack-merge.git,survivejs/webpack-merge.git,https://github.com/survivejs/webpack-merge.git
e8acf461093570fd519d4c16d9a18cd0b5bfaf2d,Matthew Fernandez,matthew.fernandez@gmail.com,2020-03-12 18:43:26-07:00,Matthew Fernandez,matthew.fernandez@gmail.com,2020-03-13 01:43:26+00:00,True,gmail,gmail,* main,True,Smattr_rumur.git,Smattr/rumur.git,https://github.com/Smattr/rumur.git c975a20ac362b8097978d9eda4e65a9ba5e25bc6,Matthew Fernandez,matthew.fernandez@gmail.com,2020-02-06 18:00:29-08:00,Matthew Fernandez,matthew.fernandez@gmail.com,2020-02-07 02:00:29+00:00,False,gmail,gmail,* main,True,Smattr_rumur.git,Smattr/rumur.git,https://github.com/Smattr/rumur.git
369106ced0f0ac43ac5b7a3fb3e98f95b811caa7,Lucas Hoffmann,lucc@posteo.de,2023-12-01 09:44:19+01:00,Lucas Hoffmann,lucc@posteo.de,2023-12-01 08:44:19+00:00,False,posteo,posteo,* main,True,lucc_khard,lucc/khard,https://github.com/lucc/khard 4327f5898a3fdf0cb2a29cfa5318ff61670bb97b,Lucas Hoffmann,lucc@posteo.de,2019-06-21 22:34:35+02:00,Lucas Hoffmann,lucc@posteo.de,2019-06-23 08:33:32+00:00,False,posteo,posteo,* main,True,lucc_khard,lucc/khard,https://github.com/lucc/khard
7ac26ed9c241d00e8688139b06e804badb25fa46,José Expósito,jose.exposito89@gmail.com,2024-02-28 17:07:45+01:00,José Expósito,jose.exposito89@gmail.com,2024-02-28 16:07:45+00:00,False,gmail,gmail,* main,True,libinput_libinput,libinput/libinput,https://gitlab.freedesktop.org/libinput/libinput 7ac26ed9c241d00e8688139b06e804badb25fa46,José Expósito,jose.exposito89@gmail.com,2024-02-28 17:07:45+01:00,José Expósito,jose.exposito89@gmail.com,2024-02-28 16:07:45+00:00,False,gmail,gmail,* main,True,libinput_libinput,libinput/libinput,https://gitlab.freedesktop.org/libinput/libinput
706b2b23b0f35d8db5800a6d8c4b02d9e54bee4c,Chris Simpkins,git.simpkins@gmail.com,2017-10-19 20:48:46-04:00,Chris Simpkins,git.simpkins@gmail.com,2017-10-20 00:48:46+00:00,False,gmail,gmail,* master,True,source-foundry_Hack,source-foundry/Hack,https://github.com/source-foundry/Hack ca39efa570755928384f9ad7f60e62f3535a5c6f,Chris Simpkins,git.simpkins@gmail.com,2017-08-10 23:27:07-04:00,Chris Simpkins,git.simpkins@gmail.com,2017-08-11 03:27:07+00:00,False,gmail,gmail,* master,True,source-foundry_Hack,source-foundry/Hack,https://github.com/source-foundry/Hack
fcf29c3e74cbc6aa5ab7e6a21a4bd85e63b0acd7,Pamela Fox,pamela.fox@gmail.com,2023-06-19 18:32:37-07:00,GitHub,noreply@github.com,2023-06-20 01:32:37+00:00,True,gmail,github,* main,True,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,https://github.com/pallets-eco/flask-sqlalchemy c724fbdbc3041446ba139feaa9bd2a7189706611,Laura Beaufort,31420082+lbeaufort@users.noreply.github.com,2019-05-06 12:32:42-04:00,David Lord,davidism@gmail.com,2020-05-26 13:34:30+00:00,False,users,gmail,* main,True,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,https://github.com/pallets-eco/flask-sqlalchemy
b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192,Matthew Tretter,m@tthewwithanm.com,2013-02-07 19:25:11-05:00,Matthew Tretter,m@tthewwithanm.com,2013-02-08 00:47:45+00:00,False,tthewwithanm,tthewwithanm,* master,True,matthewwithanm_pilkit,matthewwithanm/pilkit,https://github.com/matthewwithanm/pilkit b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192,Matthew Tretter,m@tthewwithanm.com,2013-02-07 19:25:11-05:00,Matthew Tretter,m@tthewwithanm.com,2013-02-08 00:47:45+00:00,False,tthewwithanm,tthewwithanm,* master,True,matthewwithanm_pilkit,matthewwithanm/pilkit,https://github.com/matthewwithanm/pilkit
a1b157f8fe1e12b8028190c81d43e478df7484e5,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 12:32:21-05:00,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 17:32:21+00:00,False,gmail,gmail,* main,True,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,https://github.com/PyCQA/flake8-polyfill.git a1b157f8fe1e12b8028190c81d43e478df7484e5,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 12:32:21-05:00,Ian Cordasco,graffatcolmingov@gmail.com,2016-07-19 17:32:21+00:00,False,gmail,gmail,* main,True,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,https://github.com/PyCQA/flake8-polyfill.git
8ad6fe676e014ec716ee8c4ffcca479eb74f5610,Brian Quinlan,brian@sweetapp.com,2020-06-29 17:46:16-07:00,Brian Quinlan,brian@sweetapp.com,2020-06-30 00:46:16+00:00,True,sweetapp,sweetapp,* master,True,google_pybadges.git,google/pybadges.git,https://github.com/google/pybadges.git 2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2,Brian Quinlan,brian@sweetapp.com,2018-06-27 13:29:57-07:00,Brian Quinlan,brian@sweetapp.com,2018-06-27 20:29:57+00:00,False,sweetapp,sweetapp,* master,True,google_pybadges.git,google/pybadges.git,https://github.com/google/pybadges.git
788e936fc80cbbe74896d3ff86d2a84d2ceeb989,Pierre Sassoulas,pierre.sassoulas@gmail.com,2022-11-30 11:45:41+01:00,Pierre Sassoulas,pierre.sassoulas@gmail.com,2022-11-30 11:23:26+00:00,True,gmail,gmail,* master,True,PyCQA_prospector,PyCQA/prospector,https://github.com/PyCQA/prospector 257e3aca40db8e2cdc004afbc6c8f9549b628a2a,Carlos Coêlho,carlospecter@gmail.com,2019-07-29 21:46:10-03:00,GitHub,noreply@github.com,2019-07-30 00:46:10+00:00,False,gmail,github,* master,True,PyCQA_prospector,PyCQA/prospector,https://github.com/PyCQA/prospector
cd1f8eb80fe585557f95829fa2e990d5ab48b83e,Kostya Esmukov,kostya@esmukov.ru,2021-03-28 02:23:58+03:00,Kostya Esmukov,kostya@esmukov.ru,2021-03-27 23:23:58+00:00,False,esmukov,esmukov,* master,True,geopy_geopy,geopy/geopy,https://github.com/geopython/geolinks.git 30b0f836ff28750fcadfe5511b35e8b00c0de1e5,ijl,ijl@mailbox.org,2015-08-31 23:43:38+00:00,ijl,ijl@mailbox.org,2015-08-31 23:44:42+00:00,False,mailbox,mailbox,* master,True,geopy_geopy,geopy/geopy,https://github.com/geopython/geolinks.git
86945f9a1f7cae10a9ac9ccf4b41ce9ddfabe14c,Bruno Oliveira,nicoddemus@gmail.com,2024-03-07 19:12:19-03:00,GitHub,noreply@github.com,2024-03-07 22:12:19+00:00,False,gmail,github,* main,True,pytest-dev_pytest.git,pytest-dev/pytest.git,https://github.com/pytest-dev/pytest.git c2c44f0ffc659ebdd1a1faf334c845aefdd371e1,Piotr Banaszkiewicz,piotr@banaszkiewicz.org,2014-01-22 11:37:02+01:00,Piotr Banaszkiewicz,piotr@banaszkiewicz.org,2014-01-22 10:37:02+00:00,False,banaszkiewicz,banaszkiewicz,* main,True,pytest-dev_pytest.git,pytest-dev/pytest.git,https://github.com/pytest-dev/pytest.git
be46440c9b9984b7b091cde504f96e82ee47acc8,Sasha Rudan,mprinc@gmail.com,2022-11-07 00:45:51+01:00,GitHub,noreply@github.com,2022-11-06 23:45:51+00:00,True,gmail,github,* main,True,pika_pika,pika/pika,https://github.com/pika/pika b293438ff8f1b39cad9329028b135c768f34c137,Gavin M. Roy,gavinr@aweber.com,2015-09-02 13:52:56-04:00,Gavin M. Roy,gavinr@aweber.com,2015-09-02 17:52:56+00:00,False,aweber,aweber,* main,True,pika_pika,pika/pika,https://github.com/pika/pika
b51d43ba182d776cbf073c7a796010efc63eee1d,Matt Richards,45483497+m-richards@users.noreply.github.com,2023-09-13 19:14:10+10:00,GitHub,noreply@github.com,2023-09-13 09:14:10+00:00,False,users,github,* main,True,geopandas_geopandas.git,geopandas/geopandas.git,https://github.com/geopandas/geopandas.git 7057bbbf5abd0b2c39940bbc3fb4a253ff920e59,Kelsey Jordahl,kjordahl@alum.mit.edu,2013-10-16 07:59:30-04:00,Kelsey Jordahl,kjordahl@alum.mit.edu,2013-10-23 01:45:21+00:00,False,alum,alum,* main,True,geopandas_geopandas.git,geopandas/geopandas.git,https://github.com/geopandas/geopandas.git
c79b6e3e1e7faae5a36d1396c9fce0e0987db8d7,Steven Silvester,steven.silvester@ieee.org,2023-12-22 09:43:02-06:00,GitHub,noreply@github.com,2023-12-22 15:43:02+00:00,False,ieee,github,* main,True,jupyter_jupyter-sphinx.git,jupyter/jupyter-sphinx.git,https://github.com/jupyter/jupyter-sphinx.git c79b6e3e1e7faae5a36d1396c9fce0e0987db8d7,Steven Silvester,steven.silvester@ieee.org,2023-12-22 09:43:02-06:00,GitHub,noreply@github.com,2023-12-22 15:43:02+00:00,False,ieee,github,* main,True,jupyter_jupyter-sphinx.git,jupyter/jupyter-sphinx.git,https://github.com/jupyter/jupyter-sphinx.git
966cce897c0a25485918f945eb83968d04933b2d,Tres Seaver,tseaver@palladion.com,2023-11-09 15:31:48-05:00,GitHub,noreply@github.com,2023-11-09 20:31:48+00:00,True,palladion,github,* main,True,Pylons_venusian,Pylons/venusian,https://github.com/Pylons/venusian e94e9a8b1fe87b82f3d1eb2269898d8e62b38f81,Tres Seaver,tseaver@palladion.com,2023-11-04 14:10:26-04:00,Tres Seaver,tseaver@palladion.com,2023-11-04 18:10:26+00:00,False,palladion,palladion,* main,True,Pylons_venusian,Pylons/venusian,https://github.com/Pylons/venusian
946926a20e47543c83f7a2cd2acc9f33d246b19d,jjjake,jake@archive.org,2022-04-26 11:01:16-07:00,GitHub,noreply@github.com,2022-04-26 18:01:16+00:00,True,archive,github,* master,True,jjjake_internetarchive.git,jjjake/internetarchive.git,https://github.com/jjjake/internetarchive.git d5e671f1ce4b4086a7fbfb06efae14dae9a5fccb,jake,jake@archive.org,2016-02-18 15:42:43-08:00,jake,jake@archive.org,2016-02-18 23:42:43+00:00,False,archive,archive,* master,True,jjjake_internetarchive.git,jjjake/internetarchive.git,https://github.com/jjjake/internetarchive.git
1d9c1e82f33686c80e49edd041fcd8d0253afdb1,Andrey Kurilin,andr.kurilin@gmail.com,2021-06-16 18:19:25+03:00,Andrey Kurilin,andr.kurilin@gmail.com,2021-06-16 15:31:48+00:00,False,gmail,gmail,* master,True,openstack_rally.git,openstack/rally.git,https://github.com/openstack/rally.git 8544eabcb99f3bc58052e722e8317ad7a9bfd620,Dina Belova,dbelova@mirantis.com,2016-12-06 11:05:15-08:00,Dina Belova,dbelova@mirantis.com,2017-01-10 19:25:00+00:00,False,mirantis,mirantis,* master,True,openstack_rally.git,openstack/rally.git,https://github.com/openstack/rally.git
c484eab8b19ccc8fb63495077297554055f30514,Kai Ren,tyranron@gmail.com,2023-07-04 15:16:01+03:00,GitHub,noreply@github.com,2023-07-04 12:16:01+00:00,False,gmail,github,* master,True,coturn_coturn,coturn/coturn,https://github.com/coturn/coturn 70d28de924a200102d98d55757c986ab2b839753,tyranron,tyranron@gmail.com,2021-04-13 13:25:03+03:00,tyranron,tyranron@gmail.com,2021-04-13 10:25:03+00:00,False,gmail,gmail,* master,True,coturn_coturn,coturn/coturn,https://github.com/coturn/coturn
1ddc368d63b12f7c61826c266ed80db40f32c0c6,David Fisher,ddfisher@dropbox.com,2017-01-09 15:58:25-08:00,David Fisher,ddfisher@dropbox.com,2017-01-09 23:59:09+00:00,False,dropbox,dropbox,* master,True,python_typed_ast.git,python/typed/ast.git,https://github.com/python/typed_ast.git 841005cbfaa6a3d3f97c96b5228838eba3f41ab9,David Fisher,ddfisher@dropbox.com,2016-04-11 13:53:06-07:00,David Fisher,ddfisher@dropbox.com,2016-04-11 21:43:08+00:00,False,dropbox,dropbox,* master,True,python_typed_ast.git,python/typed/ast.git,https://github.com/python/typed_ast.git
a10b49d7819986a8f0086ff2f3a20b15569584f0,John Siirola,jsiirola@users.noreply.github.com,2019-11-07 09:15:05-07:00,GitHub,noreply@github.com,2019-11-07 16:15:05+00:00,True,users,github,* master,True,pyutilib_pyutilib,pyutilib/pyutilib,https://github.com/pyutilib/pyutilib 422b3ede6532a10f6171388cd7d4d940e872d044,John Siirola,jsiirola@users.noreply.github.com,2018-10-27 18:03:23-06:00,John Siirola,jsiirola@users.noreply.github.com,2018-10-28 00:06:46+00:00,False,users,users,* master,True,pyutilib_pyutilib,pyutilib/pyutilib,https://github.com/pyutilib/pyutilib
a112f9a9c6f901f8f249ea40efbfee2aeb36644e,Kirill Pavlov,k@p99.io,2017-10-30 22:44:25+08:00,Kirill Pavlov,k@p99.io,2017-10-30 14:50:08+00:00,False,p99,p99,* master,True,pavlov99_json-rpc,pavlov99/json-rpc,https://github.com/pavlov99/json-rpc a112f9a9c6f901f8f249ea40efbfee2aeb36644e,Kirill Pavlov,k@p99.io,2017-10-30 22:44:25+08:00,Kirill Pavlov,k@p99.io,2017-10-30 14:50:08+00:00,False,p99,p99,* master,True,pavlov99_json-rpc,pavlov99/json-rpc,https://github.com/pavlov99/json-rpc
0d3baf27119a4265f7fdf661ca1366e7bdeda4ba,Ross Barnowski,rossbar@berkeley.edu,2022-10-25 15:23:41-07:00,GitHub,noreply@github.com,2022-10-25 22:23:41+00:00,False,berkeley,github,* main,True,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,https://github.com/pygraphviz/pygraphviz.git 2021e1904a53a1eb7509e488b3216136c5b32f35,David Breese,dabreese00@gmail.com,2022-01-11 22:11:26-06:00,GitHub,noreply@github.com,2022-01-12 04:11:26+00:00,False,gmail,github,* main,True,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,https://github.com/pygraphviz/pygraphviz.git
d1041acfbaabe3df0642f3312f9f0148fe819a7a,Rudolf Polzer,rpolzer@google.com,2014-06-23 12:15:16+02:00,Rudolf Polzer,rpolzer@google.com,2014-06-25 18:26:36+00:00,False,google,google,* master,True,google_xsecurelock,google/xsecurelock,https://github.com/google/xsecurelock d1041acfbaabe3df0642f3312f9f0148fe819a7a,Rudolf Polzer,rpolzer@google.com,2014-06-23 12:15:16+02:00,Rudolf Polzer,rpolzer@google.com,2014-06-25 18:26:36+00:00,False,google,google,* master,True,google_xsecurelock,google/xsecurelock,https://github.com/google/xsecurelock
9e3f1d9ba4e4cfee82e2bef93fee4daaa7d22bf9,Bastien Gérard,bast.gerard@gmail.com,2024-03-10 12:56:26+01:00,GitHub,noreply@github.com,2024-03-10 11:56:26+00:00,True,gmail,github,* master,True,mongoengine_mongoengine,mongoengine/mongoengine,https://github.com/mongoengine/flask-mongoengine 7c1ee28f13fe9c947d956d9b2ba298cba4776e1a,Ross Lawley,ross.lawley@gmail.com,2012-09-27 10:26:22+00:00,Ross Lawley,ross.lawley@gmail.com,2012-09-27 10:26:22+00:00,False,gmail,gmail,* master,True,mongoengine_mongoengine,mongoengine/mongoengine,https://github.com/mongoengine/flask-mongoengine
08d76df72883f18f651826d81dbf53b28fa78a33,Karen Etheridge,ether@cpan.org,2017-07-31 09:25:50-07:00,Karen Etheridge,ether@cpan.org,2017-07-31 16:25:50+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,https://github.com/karenetheridge/B-Hooks-OP-Check ddbefff7edcf47906373c9fa1175ba7a8927e446,Karen Etheridge,ether@cpan.org,2017-05-11 11:26:49+02:00,Karen Etheridge,ether@cpan.org,2017-05-11 09:26:49+00:00,False,cpan,cpan,* master,True,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,https://github.com/karenetheridge/B-Hooks-OP-Check
d0e639b0e5c6e4d763169a18bf2972ce55cec385,Karol Baryła,git@baryla.org,2023-10-27 21:22:57+02:00,GitHub,noreply@github.com,2023-10-27 19:22:57+00:00,False,baryla,github,* master,True,datastax_python-driver.git,datastax/python-driver.git,https://github.com/datastax/python-driver.git 24eba1bbc0aafc9e503747e688cacfdb88ad2fb8,Blake Eggleston,bdeggleston@gmail.com,2013-06-03 10:11:38-07:00,Blake Eggleston,bdeggleston@gmail.com,2013-06-03 17:11:38+00:00,False,gmail,gmail,* master,True,datastax_python-driver.git,datastax/python-driver.git,https://github.com/datastax/python-driver.git
68fdf01a9144a0a970eb8c0f8f89e303bab01cca,Benjamin Gruenbaum,inglor@gmail.com,2015-12-29 16:59:44+02:00,Benjamin Gruenbaum,inglor@gmail.com,2015-12-29 14:59:44+00:00,False,gmail,gmail,* master,True,petkaantonov_bluebird.git,petkaantonov/bluebird.git,https://github.com/petkaantonov/bluebird.git 8d52ba7a184305e474eddd1f3f7cacd0e26c2cbe,Petka Antonov,petka_antonov@hotmail.com,2013-11-18 01:34:54+02:00,Petka Antonov,petka_antonov@hotmail.com,2013-11-17 23:34:54+00:00,False,hotmail,hotmail,* master,True,petkaantonov_bluebird.git,petkaantonov/bluebird.git,https://github.com/petkaantonov/bluebird.git
620ee415f1d4a30e7de1d2bf995eee7f73087881,Michael Merickel,michael@merickel.org,2017-06-11 23:21:50-05:00,Michael Merickel,michael@merickel.org,2017-06-12 04:21:50+00:00,False,merickel,merickel,* main,True,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,https://github.com/Pylons/plaster_pastedeploy.git fafacbff1595d5e94c7afb633ec84ff1e7229ebb,Hunter Senft-Grupp,huntcsg@gmail.com,2016-06-04 16:11:20-07:00,Hunter Senft-Grupp,huntcsg@gmail.com,2016-06-04 23:11:20+00:00,False,gmail,gmail,* main,True,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,https://github.com/Pylons/plaster_pastedeploy.git
aeed204942a7305dc28ae1523a9befb3cb053fe8,James Tauber,jtauber@jtauber.com,2016-05-18 11:23:50+08:00,James Tauber,jtauber@jtauber.com,2016-05-18 03:23:50+00:00,False,jtauber,jtauber,* master,True,jtauber_pyuca,jtauber/pyuca,https://github.com/jtauber/pyuca aeed204942a7305dc28ae1523a9befb3cb053fe8,James Tauber,jtauber@jtauber.com,2016-05-18 11:23:50+08:00,James Tauber,jtauber@jtauber.com,2016-05-18 03:23:50+00:00,False,jtauber,jtauber,* master,True,jtauber_pyuca,jtauber/pyuca,https://github.com/jtauber/pyuca
3890e8e4641974f4e3194db3ade7ef214479d5be,Stan Hu,stanhu@gmail.com,2021-12-03 01:09:24+00:00,Stan Hu,stanhu@gmail.com,2021-12-03 01:09:24+00:00,True,gmail,gmail,* master,True,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git cb947f6d12d125fd84a051f65808fb4a88825307,Bronwyn Barnett,bbarnett@gitlab.com,2021-11-15 18:57:26+00:00,Bronwyn Barnett,bbarnett@gitlab.com,2021-11-15 18:57:26+00:00,False,gitlab,gitlab,* master,True,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git
13716d8b48c8380e3e0eb962a9ea2d452182db57,Jan Wassenberg,janwas@google.com,2016-03-01 15:44:10+01:00,Jan Wassenberg,janwas@google.com,2016-03-01 14:44:10+00:00,False,google,google,* master,True,google_highwayhash,google/highwayhash,https://github.com/google/highwayhash 13716d8b48c8380e3e0eb962a9ea2d452182db57,Jan Wassenberg,janwas@google.com,2016-03-01 15:44:10+01:00,Jan Wassenberg,janwas@google.com,2016-03-01 14:44:10+00:00,False,google,google,* master,True,google_highwayhash,google/highwayhash,https://github.com/google/highwayhash
6088ce10b9afad415ebe3fc96cb40e271a0cf910,Daniel P. Berrangé,berrange@redhat.com,2020-05-01 14:04:51+01:00,Daniel P. Berrangé,berrange@redhat.com,2020-05-05 11:10:18+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-python.git,libvirt/libvirt-python.git,https://gitlab.com/libvirt/libvirt-python.git 6088ce10b9afad415ebe3fc96cb40e271a0cf910,Daniel P. Berrangé,berrange@redhat.com,2020-05-01 14:04:51+01:00,Daniel P. Berrangé,berrange@redhat.com,2020-05-05 11:10:18+00:00,False,redhat,redhat,* master,True,libvirt_libvirt-python.git,libvirt/libvirt-python.git,https://gitlab.com/libvirt/libvirt-python.git
2c6b0a65bee700b42c8d0806364f4fc4ebddcc52,David I. Lehn,dlehn@digitalbazaar.com,2024-02-20 12:50:59-05:00,David I. Lehn,dil@lehn.org,2024-02-20 17:53:04+00:00,False,digitalbazaar,lehn,* master,True,digitalbazaar_pyld,digitalbazaar/pyld,https://github.com/digitalbazaar/pyld 03993c4b41ac65105f9a118c6b4624b692ddea30,David I. Lehn,dlehn@digitalbazaar.com,2015-10-08 19:06:04-04:00,David I. Lehn,dlehn@digitalbazaar.com,2015-10-08 23:06:04+00:00,False,digitalbazaar,digitalbazaar,* master,True,digitalbazaar_pyld,digitalbazaar/pyld,https://github.com/digitalbazaar/pyld
dd61fb169bbcf43d382ffbd03c7f6bfd9e97b18b,Rasmus Andersson,rasmus@notion.se,2023-04-20 13:47:14-07:00,Rasmus Andersson,rasmus@notion.se,2023-04-20 20:47:14+00:00,False,notion,notion,* master,True,rsms_inter,rsms/inter,https://github.com/rsms/inter 797757bde2e305e035bcba65a93993ecd0716398,Rasmus Andersson,rasmus@notion.se,2017-08-22 10:23:13-07:00,Rasmus Andersson,rasmus@notion.se,2017-08-22 17:28:57+00:00,False,notion,notion,* master,True,rsms_inter,rsms/inter,https://github.com/rsms/inter
9c1a99f065f5a9acb2ddb4fb47e0bfa1e4ccf3f4,Jérémie Astori,jeremie@astori.fr,2017-12-15 21:17:23-05:00,GitHub,noreply@github.com,2017-12-16 02:17:23+00:00,True,astori,github,* main,True,chaijs_chai,chaijs/chai,https://github.com/chaijs/chai 44a829cf8946707bd08ed17cc2342b69b9d2cab1,Jake Luer,jake@alogicalparadox.com,2014-01-29 17:36:01-05:00,Jake Luer,jake@alogicalparadox.com,2014-01-29 22:36:01+00:00,False,alogicalparadox,alogicalparadox,* main,True,chaijs_chai,chaijs/chai,https://github.com/chaijs/chai
58699464ee1f3d2707f5a8d5a699dd1dd3dbec9e,Simon McVittie,smcv@collabora.com,2022-09-06 18:35:51+01:00,Simon McVittie,smcv@collabora.com,2022-09-06 17:35:51+00:00,False,collabora,collabora,* master,True,dbus_dbus-python,dbus/dbus-python,https://gitlab.freedesktop.org/dbus/dbus-python 232cae5253382d8d8f7678dbda1ee37424904cab,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,False,debian,debian,* master,True,dbus_dbus-python,dbus/dbus-python,https://gitlab.freedesktop.org/dbus/dbus-python
4ad46bb0c666d1b04222c1c5f55e1566c8763d60,Jon Dufresne,jon.dufresne@gmail.com,2017-12-12 01:29:47-08:00,Petr Viktorin,encukou@gmail.com,2017-12-12 09:29:47+00:00,False,gmail,gmail,* main,True,python-ldap_python-ldap,python-ldap/python-ldap,https://github.com/python-ldap/python-ldap d4cfa1f208803cb95a4e2261bd2c3fc132f4b347,Petr Viktorin,pviktori@redhat.com,2017-11-29 13:59:55+01:00,Petr Viktorin,pviktori@redhat.com,2017-11-29 14:04:24+00:00,False,redhat,redhat,* main,True,python-ldap_python-ldap,python-ldap/python-ldap,https://github.com/python-ldap/python-ldap
3fcf3380570d1d0bcefe9c07f1921ba4fd2754ad,David Lord,davidism@gmail.com,2023-06-28 11:52:24-07:00,GitHub,noreply@github.com,2023-06-28 18:52:24+00:00,True,gmail,github,* main,True,pallets_click.git,pallets/click.git,https://github.com/pallets/click.git 3b766a866fc78226e43a9efe692220bbcb87e399,Markus Unterwaditzer,markus@unterwaditzer.net,2015-04-26 14:06:29+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2015-04-26 12:06:29+00:00,False,unterwaditzer,unterwaditzer,* main,True,pallets_click.git,pallets/click.git,https://github.com/pallets/click.git
566602cc1a34224b3ef0e88298d865a7249c65e4,Kirk Byers,ktbyers@twb-tech.com,2023-11-17 09:35:03-08:00,GitHub,noreply@github.com,2023-11-17 17:35:03+00:00,True,twb-tech,github,* develop,True,ktbyers_netmiko,ktbyers/netmiko,https://github.com/ktbyers/netmiko a5f5b6f0420786fae6120d54fc8eac9b0f22b745,Kirk Byers,ktbyers@twb-tech.com,2023-11-15 10:48:11-08:00,GitHub,noreply@github.com,2023-11-15 18:48:11+00:00,False,twb-tech,github,* develop,True,ktbyers_netmiko,ktbyers/netmiko,https://github.com/ktbyers/netmiko
136802a5b2e40735b23635c63b97f69f75c71679,Carlos Cordoba,ccordoba12@gmail.com,2022-12-10 22:15:58-05:00,GitHub,noreply@github.com,2022-12-11 03:15:58+00:00,True,gmail,github,* master,True,spyder-ide_qtawesome,spyder-ide/qtawesome,https://github.com/spyder-ide/qtawesome 7026b4a2975340fd3535cfebff39171a07008688,dalthviz,d.althviz10@uniandes.edu.co,2022-10-27 13:33:47-05:00,dalthviz,d.althviz10@uniandes.edu.co,2022-10-27 18:33:47+00:00,False,uniandes,uniandes,* master,True,spyder-ide_qtawesome,spyder-ide/qtawesome,https://github.com/spyder-ide/qtawesome
d81e7114fc4f3e805d3de4dfd8753e53b1b591c9,Josh Cooper,737664+joshcooper@users.noreply.github.com,2023-12-04 16:56:05-08:00,GitHub,noreply@github.com,2023-12-05 00:56:05+00:00,True,users,github,* main,True,puppetlabs_facter.git,puppetlabs/facter.git,https://github.com/puppetlabs/facter.git b13de9045fe41c913cb2ad651eefba6c440a3a9a,Sebastian Miclea,sebastian.miclea@puppet.com,2020-04-06 17:08:24+03:00,GitHub,noreply@github.com,2020-04-06 14:08:24+00:00,False,puppet,github,* main,True,puppetlabs_facter.git,puppetlabs/facter.git,https://github.com/puppetlabs/facter.git
72a11cdb9bf8228df6daf00ac2d192a414051a2b,Steven Loria,sloria1@gmail.com,2020-10-20 23:38:24-04:00,GitHub,noreply@github.com,2020-10-21 03:38:24+00:00,False,gmail,github,* dev,True,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git b80894938070fcec09a6dec7c8648f4d167fc45a,Steven Loria,sloria1@gmail.com,2019-03-09 17:18:42-05:00,Steven Loria,sloria1@gmail.com,2019-03-09 22:40:02+00:00,False,gmail,gmail,* dev,True,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,https://github.com/marshmallow-code/flask-marshmallow.git
129ce46dc40e72147385082736475c2cc8926968,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-08-20 15:30:19-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-08-20 18:35:22+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_outguess,resurrecting-open-source-projects/outguess,https://github.com/resurrecting-open-source-projects/outguess 129ce46dc40e72147385082736475c2cc8926968,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-08-20 15:30:19-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-08-20 18:35:22+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_outguess,resurrecting-open-source-projects/outguess,https://github.com/resurrecting-open-source-projects/outguess
06ba03b183a237cba774a827460da116042dcb02,Daniel Althviz Moré,16781833+dalthviz@users.noreply.github.com,2023-10-27 14:15:05-05:00,GitHub,noreply@github.com,2023-10-27 19:15:05+00:00,True,users,github,* master,True,spyder-ide_qtpy,spyder-ide/qtpy,https://github.com/spyder-ide/qtpy c474d99907a19deea5a4cb7ee3ebea1add698006,Gonzalo Peña-Castellanos,goanpeca@gmail.com,2015-03-01 19:03:19+01:00,Gonzalo Peña-Castellanos,goanpeca@gmail.com,2015-03-01 18:03:19+00:00,False,gmail,gmail,* master,True,spyder-ide_qtpy,spyder-ide/qtpy,https://github.com/spyder-ide/qtpy
6bad1860740be2a6ab87414773fae8691a86d7d2,Christopher Gallo,cgallo@us.ibm.com,2024-03-05 12:43:06-06:00,Christopher Gallo,cgallo@us.ibm.com,2024-03-05 18:43:06+00:00,True,us,us,* master,True,softlayer_softlayer-python,softlayer/softlayer-python,https://github.com/softlayer/softlayer-python d90770d185c28742ee750a732aa3749ff58ff158,underscorephil,underscorephil@gmail.com,2014-07-08 12:46:47-05:00,underscorephil,underscorephil@gmail.com,2014-07-08 17:46:47+00:00,False,gmail,gmail,* master,True,softlayer_softlayer-python,softlayer/softlayer-python,https://github.com/softlayer/softlayer-python
813a5f94a40fcd69107252af4d7f1f3a9abd8586,Denis Bardadym,bardadymchik@gmail.com,2016-12-10 13:36:05+03:00,Denis Bardadym,bardadymchik@gmail.com,2016-12-10 10:36:05+00:00,True,gmail,gmail,* master,True,shouldjs_should.js.git,shouldjs/should.js.git,https://github.com/shouldjs/should.js.git 3eae6f4fff3fd01a40f56b19f02e0690266fc824,Denis Bardadym,bardadymchik@gmail.com,2014-03-08 12:37:36+04:00,Denis Bardadym,bardadymchik@gmail.com,2014-03-08 08:39:25+00:00,False,gmail,gmail,* master,True,shouldjs_should.js.git,shouldjs/should.js.git,https://github.com/shouldjs/should.js.git
8dfc19905e8f15e4f96d8ec6520b762076212caa,Steven Silvester,steven.silvester@ieee.org,2023-09-09 21:49:39-05:00,GitHub,noreply@github.com,2023-09-10 02:49:39+00:00,False,ieee,github,* main,True,jupyter_terminado,jupyter/terminado,https://github.com/jupyter/terminado 7c6ed297ddaad3c2f78fed1c3b6bb548c6f658e1,Steven Silvester,steven.silvester@ieee.org,2022-03-31 11:54:23-05:00,GitHub,noreply@github.com,2022-03-31 16:54:23+00:00,False,ieee,github,* main,True,jupyter_terminado,jupyter/terminado,https://github.com/jupyter/terminado
f2378a19388f33c48a859891411721c8964ba007,Christian Clauss,cclauss@me.com,2022-10-02 00:51:48+02:00,GitHub,noreply@github.com,2022-10-01 22:51:48+00:00,False,me,github,* master,True,django-waffle_django-waffle,django-waffle/django-waffle,https://github.com/django-waffle/django-waffle 1e8e049887206b7933b8cc3c7ceeda864fb4c05e,James Socol,me@jamessocol.com,2015-01-10 14:44:37-05:00,James Socol,me@jamessocol.com,2015-01-11 17:42:19+00:00,False,jamessocol,jamessocol,* master,True,django-waffle_django-waffle,django-waffle/django-waffle,https://github.com/django-waffle/django-waffle
a04baae9d96e90955df751e1c1da26589d6e0e30,Stefan Oderbolz,oderbolz@gmail.com,2015-05-26 01:35:12+02:00,Stefan Oderbolz,oderbolz@gmail.com,2015-05-25 23:35:12+00:00,True,gmail,gmail,* develop,True,metaodi_osmapi.git,metaodi/osmapi.git,https://github.com/metaodi/osmapi.git d9823fcc76a6cdad4cc68ad138cc5bbbf810a764,Stefan Oderbolz,stefan.oderbolz@liip.ch,2015-05-24 16:25:22+02:00,Stefan Oderbolz,stefan.oderbolz@liip.ch,2015-05-24 14:32:18+00:00,False,liip,liip,* develop,True,metaodi_osmapi.git,metaodi/osmapi.git,https://github.com/metaodi/osmapi.git
c1df9aa7cbfd8c7e64eaadd8027e9669b5cd5a4e,michalbiesek,michal.biesek@intel.com,2021-03-01 08:28:41+01:00,GitHub,noreply@github.com,2021-03-01 07:28:41+00:00,True,intel,github,* master,True,kilobyte_memkind,kilobyte/memkind,https://github.com/kilobyte/memkind f43f8495c79fa9374ad2a5e5011f31d555e0cdec,Christopher M. Cantalupo,christopher.m.cantalupo@intel.com,2015-03-31 10:12:43-07:00,Christopher M. Cantalupo,christopher.m.cantalupo@intel.com,2015-04-08 19:14:32+00:00,False,intel,intel,* master,True,kilobyte_memkind,kilobyte/memkind,https://github.com/kilobyte/memkind
0ab63df6732eafccf36cd3ee2ceb888fde3ae820,David Lord,davidism@gmail.com,2023-06-28 12:01:56-07:00,GitHub,noreply@github.com,2023-06-28 19:01:56+00:00,True,gmail,github,* main,True,pallets_itsdangerous,pallets/itsdangerous,https://github.com/pallets/itsdangerous e0e50841f91c1d2c77145f475aab67bf02ce1973,G. Fioravante,40348770+northernSage@users.noreply.github.com,2020-08-31 13:22:39-03:00,GitHub,noreply@github.com,2020-08-31 16:22:39+00:00,False,users,github,* main,True,pallets_itsdangerous,pallets/itsdangerous,https://github.com/pallets/itsdangerous
6d305026c5c415d07d2bcd15bf3e8224423902f1,kridai,kridaigoswami@gmail.com,2023-09-29 13:11:05+05:30,GitHub,noreply@github.com,2023-09-29 07:41:05+00:00,False,gmail,github,* main,True,twilio_twilio-python,twilio/twilio-python,https://github.com/twilio/twilio-python 65577d13992ba086bbba7882dda352d7b232b385,Doug Black,dblack@twilio.com,2017-07-27 11:56:42-07:00,Doug Black,dblack@twilio.com,2017-07-27 18:56:42+00:00,False,twilio,twilio,* main,True,twilio_twilio-python,twilio/twilio-python,https://github.com/twilio/twilio-python
1604f672facd3eb04260464d7a4c982920b7536d,Gael Pasgrimaud,gael@gawel.org,2016-10-14 16:48:01+02:00,Gael Pasgrimaud,gael@gawel.org,2016-10-14 14:56:45+00:00,False,gawel,gawel,* master,True,gawel_panoramisk.git,gawel/panoramisk.git,https://github.com/gawel/panoramisk.git d5420216df8a35c16e569a353b41029ec667ebf3,Gael Pasgrimaud,gael@gawel.org,2016-10-14 10:55:20+02:00,Gael Pasgrimaud,gael@gawel.org,2016-10-14 08:55:20+00:00,False,gawel,gawel,* master,True,gawel_panoramisk.git,gawel/panoramisk.git,https://github.com/gawel/panoramisk.git
c89b1ff65b86ae25c51acfa646b1edcf7beb0f23,James Coglan,jcoglan@gmail.com,2016-03-25 17:42:53+00:00,James Coglan,jcoglan@gmail.com,2016-03-25 17:42:53+00:00,True,gmail,gmail,* master,True,faye_faye,faye/faye,https://github.com/faye/faye ab769e86b0e516d37a52038bb337053addf9af4a,James Coglan,jcoglan@gmail.com,2013-09-26 08:48:20+01:00,James Coglan,jcoglan@gmail.com,2013-09-26 07:48:20+00:00,False,gmail,gmail,* master,True,faye_faye,faye/faye,https://github.com/faye/faye
ec47bd12bf438e7b416035e913fc8f114242242d,Zuul,zuul@review.opendev.org,2022-12-13 19:51:08+00:00,Gerrit Code Review,review@openstack.org,2022-12-13 19:51:08+00:00,True,review,openstack,* master,True,openstack_swift.git,openstack/swift.git,https://github.com/openstack/swift.git fdf55c2817c9a457de4d5609cabfda0aa0620dc1,Samuel Merritt,sam@swiftstack.com,2012-11-21 11:08:37-08:00,Samuel Merritt,sam@swiftstack.com,2012-11-21 19:23:15+00:00,False,swiftstack,swiftstack,* master,True,openstack_swift.git,openstack/swift.git,https://github.com/openstack/swift.git
6e1fc74ed936860f9609f964d48d63f380c58170,Andreas Strikos,astrikos@ripe.net,2016-01-16 17:11:40+01:00,Andreas Strikos,astrikos@ripe.net,2016-01-16 16:11:40+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git 6e1fc74ed936860f9609f964d48d63f380c58170,Andreas Strikos,astrikos@ripe.net,2016-01-16 17:11:40+01:00,Andreas Strikos,astrikos@ripe.net,2016-01-16 16:11:40+00:00,False,ripe,ripe,* master,True,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git
0383474ce6e4c6f173b61ecac91e6c3faaec94e8,Vladimir Rusinov,vrusinov@google.com,2017-10-27 13:59:06+01:00,Vladimir Rusinov,vrusinov@google.com,2017-10-27 12:59:06+00:00,False,google,google,* master,True,google_python-gflags.git,google/python-gflags.git,https://github.com/google/python-gflags.git 2cc5f14309704d80063a750b85861cb86dc40e7f,vrusinov,vrusinov@google.com,2016-02-03 11:48:09-08:00,Vladimir Rusinov,vrusinov@google.com,2016-02-05 20:41:41+00:00,False,google,google,* master,True,google_python-gflags.git,google/python-gflags.git,https://github.com/google/python-gflags.git
3be3d101ce2f9c54bae2a0d8824298f0501f2ce0,unknown,a.jakubowski@mdbootstrap.com,2022-03-24 10:44:03+01:00,unknown,a.jakubowski@mdbootstrap.com,2022-03-24 09:44:03+00:00,False,mdbootstrap,mdbootstrap,* main,True,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,https://github.com/mdbootstrap/perfect-scrollbar 1094a4c862d1b600a6a93d04f276809f5cd03701,Filip Kapusta,f.kapusta@mdbootstrap.com,2022-03-23 15:12:15+01:00,Filip Kapusta,f.kapusta@mdbootstrap.com,2022-03-23 14:12:15+00:00,False,mdbootstrap,mdbootstrap,* main,True,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,https://github.com/mdbootstrap/perfect-scrollbar
350b191468d1a701d945a062bbf4df9fbdaaaaae,geemus,geemus@gmail.com,2014-10-15 09:03:48-05:00,geemus,geemus@gmail.com,2014-10-15 14:03:48+00:00,False,gmail,gmail,* master,True,heroku_netrc,heroku/netrc,https://github.com/heroku/netrc 350b191468d1a701d945a062bbf4df9fbdaaaaae,geemus,geemus@gmail.com,2014-10-15 09:03:48-05:00,geemus,geemus@gmail.com,2014-10-15 14:03:48+00:00,False,gmail,gmail,* master,True,heroku_netrc,heroku/netrc,https://github.com/heroku/netrc
ebffdc2ca0a43fd87dfd270bbb16007591139626,Pierre Fersing,pierre.fersing@bleemeo.com,2024-02-10 13:48:25+00:00,Pierre Fersing,pierre.fersing@bleemeo.com,2024-02-10 13:48:25+00:00,False,bleemeo,bleemeo,* master,True,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,https://github.com/eclipse/paho.mqtt.python.git 48b19a2272867854f097058dda4f55d05d93e28d,Roger Light,roger@atchoo.org,2014-03-27 12:33:15+00:00,Roger Light,roger@atchoo.org,2014-03-27 12:33:15+00:00,False,atchoo,atchoo,* master,True,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,https://github.com/eclipse/paho.mqtt.python.git
e51433d361736806896f10d971c0f28556bb94a4,Jordan Cook,jordan.cook.git@proton.me,2024-02-07 13:11:53-06:00,Jordan Cook,jordan.cook.git@proton.me,2024-02-07 19:18:49+00:00,False,proton,proton,* main,True,requests-cache_requests-cache,requests-cache/requests-cache,https://github.com/requests-cache/requests-cache d424c38e59bca66492f90817a5990922b4b004d0,Jordan Cook,jordan.cook@pioneer.com,2021-03-03 08:11:20-06:00,Jordan Cook,jordan.cook@pioneer.com,2021-03-03 14:27:30+00:00,False,pioneer,pioneer,* main,True,requests-cache_requests-cache,requests-cache/requests-cache,https://github.com/requests-cache/requests-cache
b00e214476c8a399157234106b28df993f243ce4,Eemeli Aro,eemeli@mozilla.com,2022-11-09 23:47:17+02:00,GitHub,noreply@github.com,2022-11-09 21:47:17+00:00,False,mozilla,github,* master,True,mozilla_source-map,mozilla/source-map,https://github.com/mozilla/source-map fc5abc05876bbffb8aa8776868492a5bcb596c99,Nick Fitzgerald,fitzgen@gmail.com,2015-08-28 15:15:34-07:00,Nick Fitzgerald,fitzgen@gmail.com,2015-09-10 14:57:30+00:00,False,gmail,gmail,* master,True,mozilla_source-map,mozilla/source-map,https://github.com/mozilla/source-map
e2d247f40339088710ba2322bea3e44f801acfac,David Golden,dagolden@cpan.org,2013-06-09 14:54:54-04:00,David Golden,dagolden@cpan.org,2013-06-09 18:54:54+00:00,False,cpan,cpan,* master,True,dagolden_math-random-oo.git,dagolden/math-random-oo.git,https://github.com/dagolden/math-random-oo.git e2d247f40339088710ba2322bea3e44f801acfac,David Golden,dagolden@cpan.org,2013-06-09 14:54:54-04:00,David Golden,dagolden@cpan.org,2013-06-09 18:54:54+00:00,False,cpan,cpan,* master,True,dagolden_math-random-oo.git,dagolden/math-random-oo.git,https://github.com/dagolden/math-random-oo.git
7d375e1b7502995703fb3c1729ed4f746d169751,Luis R. Rodriguez,mcgrof@suse.com,2014-03-07 14:28:50-08:00,Johannes Berg,johannes.berg@intel.com,2014-03-28 08:56:54+00:00,False,suse,intel,* master,True,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git 7d375e1b7502995703fb3c1729ed4f746d169751,Luis R. Rodriguez,mcgrof@suse.com,2014-03-07 14:28:50-08:00,Johannes Berg,johannes.berg@intel.com,2014-03-28 08:56:54+00:00,False,suse,intel,* master,True,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git
d479009d79374dc4a56c9f4346b1af38f5ac182c,Joe Hamman,jhamman1@gmail.com,2022-02-10 11:44:51-08:00,GitHub,noreply@github.com,2022-02-10 19:44:51+00:00,False,gmail,github,* main,True,pydata_xarray,pydata/xarray,https://github.com/pydata/xarray 3a995294a99a00a62fb451c8dc3f0c404c8e92f5,Joe Hamman,jhamman@ucar.edu,2017-10-27 18:24:02-07:00,GitHub,noreply@github.com,2017-10-28 01:24:02+00:00,False,ucar,github,* main,True,pydata_xarray,pydata/xarray,https://github.com/pydata/xarray
c5dbcb4f349046389828ccf645a2e9446f2bba72,John Sirois,john.sirois@gmail.com,2024-02-13 21:24:16-08:00,GitHub,noreply@github.com,2024-02-14 05:24:16+00:00,False,gmail,github,* main,True,pantsbuild_pex.git,pantsbuild/pex.git,https://github.com/pantsbuild/pex.git 27c2db2bf26039bef41323c964bc4e0317a7b4f5,John Sirois,john.sirois@gmail.com,2024-02-09 21:40:18-08:00,GitHub,noreply@github.com,2024-02-10 05:40:18+00:00,False,gmail,github,* main,True,pantsbuild_pex.git,pantsbuild/pex.git,https://github.com/pantsbuild/pex.git
069c9d190c67ba55fb48b716422bb9b38b0d23c4,Luca Comellini,luca.com@gmail.com,2023-07-25 17:31:34-07:00,GitHub,noreply@github.com,2023-07-26 00:31:34+00:00,False,gmail,github,* main,True,nginxinc_nginx-prometheus-exporter,nginxinc/nginx-prometheus-exporter,https://github.com/nginxinc/nginx-prometheus-exporter 8d90a86cdf4da7bc1ea520ef5701a63780638c13,Michael Pleshakov,michael@nginx.com,2018-05-30 14:49:53+01:00,Michael Pleshakov,michael@nginx.com,2018-05-30 13:49:53+00:00,False,nginx,nginx,* main,True,nginxinc_nginx-prometheus-exporter,nginxinc/nginx-prometheus-exporter,https://github.com/nginxinc/nginx-prometheus-exporter
be8871192aa75398198184699097661ea5ba3142,Freek Dijkstra,freek@macfreek.nl,2021-04-27 21:17:41+02:00,Freek Dijkstra,freek@macfreek.nl,2021-04-27 19:17:41+00:00,False,macfreek,macfreek,* master,True,sphinx-contrib_restbuilder.git,sphinx-contrib/restbuilder.git,https://github.com/sphinx-contrib/restbuilder.git ba1ef7a8f47a6140f8323a393f0e04f818f5f52d,Freek Dijkstra,freek@macfreek.nl,2021-02-28 15:10:33+01:00,Freek Dijkstra,freek@macfreek.nl,2021-02-28 14:10:33+00:00,False,macfreek,macfreek,* master,True,sphinx-contrib_restbuilder.git,sphinx-contrib/restbuilder.git,https://github.com/sphinx-contrib/restbuilder.git
1c6af940c08ca2fdb142916974a192ab6ff9ea7c,Michael Howitz,mh@gocept.com,2023-04-14 08:03:36+02:00,GitHub,noreply@github.com,2023-04-14 06:03:36+00:00,False,gocept,github,* master,True,zopefoundation_zope.component,zopefoundation/zope.component,https://github.com/zopefoundation/zope.component 1c6af940c08ca2fdb142916974a192ab6ff9ea7c,Michael Howitz,mh@gocept.com,2023-04-14 08:03:36+02:00,GitHub,noreply@github.com,2023-04-14 06:03:36+00:00,False,gocept,github,* master,True,zopefoundation_zope.component,zopefoundation/zope.component,https://github.com/zopefoundation/zope.component
d01f4593c2fa9547c9912ac443ee67b9604b3e88,Brendan Gregg,brendan.d.gregg@gmail.com,2019-01-18 09:11:03-08:00,yonghong-song,ys114321@gmail.com,2019-01-18 17:11:03+00:00,False,gmail,gmail,* master,True,iovisor_bcc.git,iovisor/bcc.git,https://github.com/iovisor/bcc.git 87d2f69a591b29c254f6ce1974a8347d746bfe9f,Brendan Gregg,brendan.d.gregg@gmail.com,2016-02-05 13:36:06-08:00,Brendan Gregg,bgregg@netflix.com,2016-02-05 21:49:28+00:00,False,gmail,netflix,* master,True,iovisor_bcc.git,iovisor/bcc.git,https://github.com/iovisor/bcc.git
d60918099930bd1809e56a9227ab3e5bf0f06a94,Amethyst Reese,amethyst@n7.gg,2023-04-30 13:56:56-07:00,Amethyst Reese,amethyst@n7.gg,2023-04-30 21:16:24+00:00,False,n7,n7,* main,True,diff-match-patch-python_diff-match-patch,diff-match-patch-python/diff-match-patch,https://github.com/diff-match-patch-python/diff-match-patch 04693fc6beb2d2dbb3aa8d33932a171900ea239c,John Reese,john@noswap.com,2018-11-05 18:23:24-08:00,John Reese,john@noswap.com,2018-11-06 02:23:24+00:00,False,noswap,noswap,* main,True,diff-match-patch-python_diff-match-patch,diff-match-patch-python/diff-match-patch,https://github.com/diff-match-patch-python/diff-match-patch
1d475905976bb91dd77f1f4383b28307f98e19ed,Nate Prewitt,nate.prewitt@gmail.com,2022-06-16 10:59:27-06:00,GitHub,noreply@github.com,2022-06-16 16:59:27+00:00,True,gmail,github,* develop,True,boto_botocore,boto/botocore,https://github.com/boto/botocore 0d125a567e7ffa9dfe285df8c436783d29594c79,Daniel G. Taylor,danielgtaylor@gmail.com,2013-08-09 13:31:16-07:00,Daniel G. Taylor,danielgtaylor@gmail.com,2013-08-09 20:31:16+00:00,False,gmail,gmail,* develop,True,boto_botocore,boto/botocore,https://github.com/boto/botocore
cdee20eb79b3623e200545b3eb44e72c08697acf,Erik Michaels-Ober,sferik@gmail.com,2013-12-31 04:18:39+01:00,Erik Michaels-Ober,sferik@gmail.com,2013-12-31 03:18:39+00:00,False,gmail,gmail,* master,True,sferik_twitter,sferik/twitter,https://github.com/sferik/twitter fc679cf33ed2c65c2deaf9235f08889ef95dd2f2,Erik Michaels-Ober,sferik@gmail.com,2012-10-07 11:08:23-07:00,Erik Michaels-Ober,sferik@gmail.com,2012-10-07 18:08:28+00:00,False,gmail,gmail,* master,True,sferik_twitter,sferik/twitter,https://github.com/sferik/twitter
c79ee1e8ba5af3ce1c627882a6b75c1c8fb150dc,Michael R. Crusoe,michael.crusoe@gmail.com,2023-08-14 17:57:54+02:00,Michael R. Crusoe,1330696+mr-c@users.noreply.github.com,2023-08-14 16:19:43+00:00,False,gmail,users,* main,True,common-workflow-language_schema_salad,common-workflow-language/schema/salad,https://github.com/common-workflow-language/schema_salad 3ce1cbdc192a709b51290725506c31a8959423ad,Michael R. Crusoe,1330696+mr-c@users.noreply.github.com,2019-07-29 18:44:11+02:00,GitHub,noreply@github.com,2019-07-29 16:44:11+00:00,False,users,github,* main,True,common-workflow-language_schema_salad,common-workflow-language/schema/salad,https://github.com/common-workflow-language/schema_salad
892ea9e222ca7148551c3d00bb37ce9e24316b16,Aleksi Häkli,aleksi.hakli@iki.fi,2022-01-26 12:00:58+02:00,Aleksi Häkli,aleksi.hakli@iki.fi,2022-01-26 10:00:58+00:00,False,iki,iki,* master,True,jazzband_django-recurrence,jazzband/django-recurrence,https://github.com/jazzband/django-recurrence 892ea9e222ca7148551c3d00bb37ce9e24316b16,Aleksi Häkli,aleksi.hakli@iki.fi,2022-01-26 12:00:58+02:00,Aleksi Häkli,aleksi.hakli@iki.fi,2022-01-26 10:00:58+00:00,False,iki,iki,* master,True,jazzband_django-recurrence,jazzband/django-recurrence,https://github.com/jazzband/django-recurrence
905cba2b0591ef09edcbb800c84dc4cbd2f97a1e,Geremia Taglialatela,tagliala@users.noreply.github.com,2021-12-07 14:05:52+01:00,GitHub,noreply@github.com,2021-12-07 13:05:52+00:00,True,users,github,* master,True,nesquena_rabl,nesquena/rabl,https://github.com/nesquena/rabl 915f126b9484ad7fe6df0d7f323bd55f93f1c917,Nathan Esquenazi,nesquena@gmail.com,2012-11-08 12:01:59-08:00,Nathan Esquenazi,nesquena@gmail.com,2012-11-08 20:01:59+00:00,False,gmail,gmail,* master,True,nesquena_rabl,nesquena/rabl,https://github.com/nesquena/rabl
679935b82e8177799c34981e8f384a5466840301,Ionel Cristian Mărieș,contact@ionelmc.ro,2021-09-28 14:02:52+03:00,GitHub,noreply@github.com,2021-09-28 11:02:52+00:00,True,ionelmc,github,* master,True,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,https://github.com/pytest-dev/pytest-cov.git 0a6b00dd73c2c49d38e50d01add558e1bb4f3c92,Marc Schlaich,marc.schlaich@googlemail.com,2014-11-24 18:15:44+01:00,Marc Schlaich,marc.schlaich@googlemail.com,2014-11-24 17:15:44+00:00,False,googlemail,googlemail,* master,True,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,https://github.com/pytest-dev/pytest-cov.git
f538ea7afaed6b5bd26d24a62795576679d0f5c0,Michael Jones,m.pricejones@gmail.com,2021-09-04 11:51:11+01:00,GitHub,noreply@github.com,2021-09-04 10:51:11+00:00,True,gmail,github,* main,True,michaeljones_breathe.git,michaeljones/breathe.git,https://github.com/michaeljones/breathe.git 90014cb496817f7b9544832073137f9e463e746a,Michael Jones,m.pricejones@gmail.com,2014-09-28 11:31:08+01:00,Michael Jones,m.pricejones@gmail.com,2014-09-28 10:33:18+00:00,False,gmail,gmail,* main,True,michaeljones_breathe.git,michaeljones/breathe.git,https://github.com/michaeljones/breathe.git
cacbd0dabef064a49ce1c1aa0c41a7d145a6c655,Michael Merickel,michael@merickel.org,2022-12-28 13:31:29-06:00,GitHub,noreply@github.com,2022-12-28 19:31:29+00:00,True,merickel,github,* main,True,Pylons_hupper,Pylons/hupper,https://github.com/Pylons/hupper f6ee96cf37bdb805ed35416b4370e3e407875bca,Michael Merickel,michael@merickel.org,2016-10-18 01:26:21-05:00,Michael Merickel,michael@merickel.org,2016-10-18 06:39:25+00:00,False,merickel,merickel,* main,True,Pylons_hupper,Pylons/hupper,https://github.com/Pylons/hupper
a2270b0cbd71c39194acb28b1206f374f87a8856,Bas van Oostveen,bas.van.oostveen@solera.nl,2022-07-08 22:28:22+02:00,Bas van Oostveen,bas.van.oostveen@solera.nl,2022-07-08 20:28:22+00:00,False,solera,solera,* main,True,django-extensions_django-extensions,django-extensions/django-extensions,https://github.com/django-extensions/django-extensions 451c9909d4fd7bc5301bf032a0b6f21982dac4cb,abhiabhi94,13880786+abhiabhi94@users.noreply.github.com,2020-09-12 16:51:48+05:30,abhiabhi94,13880786+abhiabhi94@users.noreply.github.com,2020-09-12 11:21:48+00:00,False,users,users,* main,True,django-extensions_django-extensions,django-extensions/django-extensions,https://github.com/django-extensions/django-extensions
fe623bbfadfe8d32efffa9dcded4db1f9b3d9550,Matthias C. M. Troffaes,matthias.troffaes@gmail.com,2021-09-14 22:45:40+01:00,GitHub,noreply@github.com,2021-09-14 21:45:40+00:00,False,gmail,github,* develop,True,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,https://github.com/mcmtroffaes/pathlib2.git fe623bbfadfe8d32efffa9dcded4db1f9b3d9550,Matthias C. M. Troffaes,matthias.troffaes@gmail.com,2021-09-14 22:45:40+01:00,GitHub,noreply@github.com,2021-09-14 21:45:40+00:00,False,gmail,github,* develop,True,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,https://github.com/mcmtroffaes/pathlib2.git
d2922ea4bfb097814573d70633e08bc99945af61,Christoffer Jansson,jansson@google.com,2018-02-13 15:09:44+01:00,GitHub,noreply@github.com,2018-02-13 14:09:44+00:00,True,google,github,* main,True,webrtchacks_adapter,webrtchacks/adapter,https://github.com/webrtchacks/adapter 937da03f5709f943f9ed23ff786b42aa78fac336,Jiayang Liu,jiayl@chromium.org,2015-01-14 12:58:05-08:00,Jiayang Liu,jiayl@chromium.org,2015-01-14 21:03:32+00:00,False,chromium,chromium,* main,True,webrtchacks_adapter,webrtchacks/adapter,https://github.com/webrtchacks/adapter
da2b0f065eb084d7c9f607a8e1f8fbad8036e1ba,Jannis Leidel,jannis@leidel.info,2016-07-26 11:00:46+02:00,Jannis Leidel,jannis@leidel.info,2016-07-26 09:01:06+00:00,False,leidel,leidel,* main,True,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,https://github.com/jazzband/django-debug-toolbar.git da2b0f065eb084d7c9f607a8e1f8fbad8036e1ba,Jannis Leidel,jannis@leidel.info,2016-07-26 11:00:46+02:00,Jannis Leidel,jannis@leidel.info,2016-07-26 09:01:06+00:00,False,leidel,leidel,* main,True,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,https://github.com/jazzband/django-debug-toolbar.git
51efb0d7a8afbac2df2cc31aa7840e4f8a32b4bf,Alan D. Snow,alansnow21@gmail.com,2023-01-10 12:48:09-06:00,GitHub,noreply@github.com,2023-01-10 18:48:09+00:00,False,gmail,github,* main,True,rasterio_rasterio.git,rasterio/rasterio.git,https://github.com/rasterio/rasterio.git 048b33b80c9a11bf11dd72a385e16152dc1ec48b,Sean Gillies,sean@mapbox.com,2016-05-11 16:05:57-06:00,Sean Gillies,sean@mapbox.com,2016-05-11 22:05:57+00:00,False,mapbox,mapbox,* main,True,rasterio_rasterio.git,rasterio/rasterio.git,https://github.com/rasterio/rasterio.git
44be7c4582c077924d88a7a551cc31700f1014f3,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:39:51+01:00,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:42:49+00:00,False,canonical,canonical,* master,True,zyga_padme,zyga/padme,https://github.com/zyga/padme 44be7c4582c077924d88a7a551cc31700f1014f3,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:39:51+01:00,Zygmunt Krynicki,zygmunt.krynicki@canonical.com,2015-02-11 19:42:49+00:00,False,canonical,canonical,* master,True,zyga_padme,zyga/padme,https://github.com/zyga/padme
ef994be749c1c175ca7d1f9f580304fc68a6f519,Brad Rogers,brad12rogers@gmail.com,2020-11-03 13:50:52-05:00,GitHub,noreply@github.com,2020-11-03 18:50:52+00:00,False,gmail,github,* main,True,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,https://github.com/dropbox/dropbox-sdk-python 4471b7e8506082ed7daf92304cc2f35eb844a5d2,Brad Rogers,brad12rogers@gmail.com,2020-04-15 19:04:28-07:00,GitHub,noreply@github.com,2020-04-16 02:04:28+00:00,False,gmail,github,* main,True,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,https://github.com/dropbox/dropbox-sdk-python
57d33863ac817372f853bd68afd893f73591ed89,Gavish,gavishpoddar@hotmail.com,2021-08-09 21:33:36+05:30,GitHub,noreply@github.com,2021-08-09 16:03:36+00:00,True,hotmail,github,* master,True,scrapinghub_dateparser,scrapinghub/dateparser,https://github.com/scrapinghub/dateparser 29f13ea202f07dce62f9073f24b2daa3d780a55f,Elias Dorneles,eliasdorneles@gmail.com,2014-11-24 15:17:18-02:00,Elias Dorneles,eliasdorneles@gmail.com,2014-11-24 17:17:18+00:00,False,gmail,gmail,* master,True,scrapinghub_dateparser,scrapinghub/dateparser,https://github.com/scrapinghub/dateparser
e92ad6d5c0fd699e8d39d3756e5fee09626991ef,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-01-24 12:21:44+01:00,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-03-12 09:03:58+00:00,False,gmail,gmail,* main,True,gstreamer_orc,gstreamer/orc,https://gitlab.freedesktop.org/gstreamer/orc 02a8a52e005c0fdfff80f0b709b59f8cfccdf7fc,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-01-08 11:34:43+01:00,Jorge Zapata,jorgeluis.zapata@gmail.com,2024-01-09 09:11:05+00:00,False,gmail,gmail,* main,True,gstreamer_orc,gstreamer/orc,https://gitlab.freedesktop.org/gstreamer/orc
5448e7ee9a18599042e3adf6e9cb34d812a82323,Kornel Lesiński,kornel@geekhood.net,2016-11-18 01:21:15+00:00,Kornel Lesiński,kornel@geekhood.net,2016-11-18 01:21:15+00:00,False,geekhood,geekhood,* main,True,kornelski_pngquant.git,kornelski/pngquant.git,https://github.com/kornelski/pngquant.git 5448e7ee9a18599042e3adf6e9cb34d812a82323,Kornel Lesiński,kornel@geekhood.net,2016-11-18 01:21:15+00:00,Kornel Lesiński,kornel@geekhood.net,2016-11-18 01:21:15+00:00,False,geekhood,geekhood,* main,True,kornelski_pngquant.git,kornelski/pngquant.git,https://github.com/kornelski/pngquant.git
c85a2572e53218716359126d9465cc63447817e5,Tim Gates,tim.gates@iress.com,2022-08-06 13:59:07+10:00,GitHub,noreply@github.com,2022-08-06 03:59:07+00:00,False,iress,github,* master,True,jazzband_django-pipeline,jazzband/django-pipeline,https://github.com/jazzband/django-pipeline 14eb52c34131bd702778b6d9a02d5f754e329e76,Timothée Peignier,timothee.peignier@tryphon.org,2012-09-17 21:54:57+02:00,Timothée Peignier,timothee.peignier@tryphon.org,2012-09-17 19:54:57+00:00,False,tryphon,tryphon,* master,True,jazzband_django-pipeline,jazzband/django-pipeline,https://github.com/jazzband/django-pipeline
1c146ac76219e52b6cc07939eecad282ffb1a554,ghiggi,gionata.ghiggi@gmail.com,2023-05-25 08:12:40+02:00,ghiggi,gionata.ghiggi@gmail.com,2023-05-25 06:12:40+00:00,False,gmail,gmail,* main,True,pytroll_satpy,pytroll/satpy,https://github.com/pytroll/satpy fdf513302703d830eddbac40a8757c6b02549261,davidh-ssec,david.hoese@ssec.wisc.edu,2018-01-12 15:02:08-06:00,davidh-ssec,david.hoese@ssec.wisc.edu,2018-01-26 21:56:02+00:00,False,ssec,ssec,* main,True,pytroll_satpy,pytroll/satpy,https://github.com/pytroll/satpy
27f59cb37166dc25824613c8ebbbfc63ce1f29bf,Andre Klapper,a9016009@gmx.de,2022-02-21 11:27:15+01:00,Andre Klapper,a9016009@gmx.de,2022-02-21 10:27:15+00:00,False,gmx,gmx,* main,True,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info 647f21332d37c05e888eb9d01261310450704d53,Lubomir Rintel,lkundrak@v3.sk,2019-03-15 20:59:05+01:00,Lubomir Rintel,lkundrak@v3.sk,2019-04-10 17:02:46+00:00,False,v3,v3,* main,True,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info
b41442a89e3a5a26637b07f665cca4595811dfc3,Daniel Roy Greenfeld,pydanny@users.noreply.github.com,2018-10-09 21:46:08-07:00,GitHub,noreply@github.com,2018-10-10 04:46:08+00:00,False,users,github,* master,True,cookiecutter_whichcraft,cookiecutter/whichcraft,https://github.com/cookiecutter/whichcraft e903b9c057a41ce5039c9d91ccbce549e5b71126,Daniel Roy Greenfeld,danny@eventbrite.com,2015-09-09 20:56:45-07:00,Daniel Roy Greenfeld,danny@eventbrite.com,2015-09-10 03:56:45+00:00,False,eventbrite,eventbrite,* master,True,cookiecutter_whichcraft,cookiecutter/whichcraft,https://github.com/cookiecutter/whichcraft
5a01a4c8a900a98ca0186b742d03d02c55846632,Daniel,107224353+daniel-web-developer@users.noreply.github.com,2023-08-31 10:19:25+02:00,GitHub,noreply@github.com,2023-08-31 08:19:25+00:00,False,users,github,* master,True,encode_django-rest-framework,encode/django-rest-framework,https://github.com/encode/django-rest-framework f0f7a91b3157790aac8c568e3349dde8dca1fac5,Tom Christie,tom@tomchristie.com,2013-12-16 11:59:37+00:00,Tom Christie,tom@tomchristie.com,2013-12-16 11:59:37+00:00,False,tomchristie,tomchristie,* master,True,encode_django-rest-framework,encode/django-rest-framework,https://github.com/encode/django-rest-framework
dea4b862e6548858f5645b6359eff9a4cb51b594,idle sign,idlesign@yandex.ru,2018-02-07 20:33:38+07:00,idle sign,idlesign@yandex.ru,2018-02-07 13:33:38+00:00,False,yandex,yandex,* master,True,idlesign_django-sitetree,idlesign/django-sitetree,https://github.com/idlesign/django-sitetree dea4b862e6548858f5645b6359eff9a4cb51b594,idle sign,idlesign@yandex.ru,2018-02-07 20:33:38+07:00,idle sign,idlesign@yandex.ru,2018-02-07 13:33:38+00:00,False,yandex,yandex,* master,True,idlesign_django-sitetree,idlesign/django-sitetree,https://github.com/idlesign/django-sitetree
06a7fac32cfcd6c42fd6541a4d7770dc65588f68,Simon McVittie,smcv@collabora.com,2019-07-29 13:29:18+01:00,Simon McVittie,smcv@collabora.com,2021-03-26 11:09:42+00:00,False,collabora,collabora,* master,True,dbus_dbus-glib.git,dbus/dbus-glib.git,https://gitlab.freedesktop.org/dbus/dbus-glib.git 232cae5253382d8d8f7678dbda1ee37424904cab,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,Simon McVittie,smcv@debian.org,2018-01-29 08:47:56+00:00,False,debian,debian,* master,True,dbus_dbus-glib.git,dbus/dbus-glib.git,https://gitlab.freedesktop.org/dbus/dbus-glib.git
8c4557cdb9270996176e8874b16ab095a525dcd6,Quentin Pradet,quentin.pradet@elastic.co,2024-01-15 15:04:29+01:00,GitHub,noreply@github.com,2024-01-15 14:04:29+00:00,False,elastic,github,* main,True,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,https://github.com/elastic/elasticsearch-py.git 638713daab211eb104f0228a7d59af227a89008f,Honza Kral,honza.kral@gmail.com,2013-09-26 11:34:15+02:00,Honza Kral,honza.kral@gmail.com,2013-09-26 09:34:15+00:00,False,gmail,gmail,* main,True,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,https://github.com/elastic/elasticsearch-py.git
e7cbaafce2647eb9b33577366b178ae66250473f,Michael Merickel,michael@merickel.org,2017-06-11 23:20:09-05:00,Michael Merickel,michael@merickel.org,2017-06-12 04:20:09+00:00,False,merickel,merickel,* main,True,pylons_plaster,pylons/plaster,https://github.com/pylons/plaster 5445c0a95352506da2677f3de09c07286d5140ea,Michael Merickel,michael@merickel.org,2016-06-01 21:27:09-07:00,Michael Merickel,michael@merickel.org,2016-06-02 04:48:54+00:00,False,merickel,merickel,* main,True,pylons_plaster,pylons/plaster,https://github.com/pylons/plaster
ca82caaeb6ee6ef2820ca6726eba5b8f86f5e566,Teemu R,tpr@iki.fi,2021-09-17 12:17:20+02:00,GitHub,noreply@github.com,2021-09-17 10:17:20+00:00,False,iki,github,* master,True,rytilahti_python-miio.git,rytilahti/python-miio.git,https://github.com/rytilahti/python-miio.git ca82caaeb6ee6ef2820ca6726eba5b8f86f5e566,Teemu R,tpr@iki.fi,2021-09-17 12:17:20+02:00,GitHub,noreply@github.com,2021-09-17 10:17:20+00:00,False,iki,github,* master,True,rytilahti_python-miio.git,rytilahti/python-miio.git,https://github.com/rytilahti/python-miio.git
0b6eb7abe6a839c27c4828ad5671b8816cd967f5,Ron Frederick,ronf@timeheart.net,2018-09-01 20:51:22-07:00,Ron Frederick,ronf@timeheart.net,2018-09-02 03:51:22+00:00,False,timeheart,timeheart,* develop,True,ronf_asyncssh,ronf/asyncssh,https://github.com/ronf/asyncssh d5d49519e52c665b4789ce9e44c558cbcc127b8a,Ron Frederick,ronf@timeheart.net,2015-05-17 19:54:17-07:00,Ron Frederick,ronf@timeheart.net,2015-05-18 02:54:17+00:00,False,timeheart,timeheart,* develop,True,ronf_asyncssh,ronf/asyncssh,https://github.com/ronf/asyncssh
717482dd873a9032cbb019062aa06401f871f765,Michael Howitz,mh@gocept.com,2023-02-23 08:17:11+01:00,GitHub,noreply@github.com,2023-02-23 07:17:11+00:00,False,gocept,github,* master,True,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,https://github.com/zopefoundation/zc.lockfile 717482dd873a9032cbb019062aa06401f871f765,Michael Howitz,mh@gocept.com,2023-02-23 08:17:11+01:00,GitHub,noreply@github.com,2023-02-23 07:17:11+00:00,False,gocept,github,* master,True,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,https://github.com/zopefoundation/zc.lockfile
77cf9560ceb833f7dd51c10b6d10519ef7875084,Ianaré Sévi,ianare@gmail.com,2015-05-15 22:40:37+02:00,Ianaré Sévi,ianare@gmail.com,2015-05-15 20:40:37+00:00,False,gmail,gmail,* develop,True,ianare_exif-py,ianare/exif-py,https://github.com/ianare/exif-py 77cf9560ceb833f7dd51c10b6d10519ef7875084,Ianaré Sévi,ianare@gmail.com,2015-05-15 22:40:37+02:00,Ianaré Sévi,ianare@gmail.com,2015-05-15 20:40:37+00:00,False,gmail,gmail,* develop,True,ianare_exif-py,ianare/exif-py,https://github.com/ianare/exif-py
ff5eb53f487341774b24930f8243c41a32d16d09,Luciano Lionello,lucianolio@protonmail.com,2022-02-04 20:22:28-03:00,Benj Fassbind,randombenj@gmail.com,2022-02-05 08:28:44+00:00,False,protonmail,gmail,* master,True,aptly-dev_aptly.git,aptly-dev/aptly.git,https://github.com/aptly-dev/aptly.git c6c10123301a20c6d6981c7062617edb9425fac2,Andrey Smirnov,smirnov.andrey@gmail.com,2017-03-22 17:38:32+03:00,Andrey Smirnov,smirnov.andrey@gmail.com,2017-03-22 16:24:06+00:00,False,gmail,gmail,* master,True,aptly-dev_aptly.git,aptly-dev/aptly.git,https://github.com/aptly-dev/aptly.git
779967e0f7c1438c37cf74a4a85bf8597486b23a,jan iversen,jancasacondor@gmail.com,2024-03-03 13:48:40+01:00,jan iversen,jancasacondor@gmail.com,2024-03-03 12:48:40+00:00,True,gmail,gmail,* dev,True,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,https://github.com/pymodbus-dev/pymodbus.git e43ab548b28c8d1af01253088a44a41e35c08722,jan iversen,jancasacondor@gmail.com,2023-03-16 21:02:03+01:00,GitHub,noreply@github.com,2023-03-16 20:02:03+00:00,False,gmail,github,* dev,True,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,https://github.com/pymodbus-dev/pymodbus.git
2cf826f236222d517c847fd5c61d48d3d85333d2,Saurabh Kumar,theskumar@users.noreply.github.com,2022-06-05 12:54:25+05:30,GitHub,noreply@github.com,2022-06-05 07:24:25+00:00,False,users,github,* main,True,theskumar_python-dotenv.git,theskumar/python-dotenv.git,https://github.com/theskumar/python-dotenv.git b7759b7b62bce8f658aab5a1b8968a539d10208d,Saurabh Kumar,saurabh@saurabh-kumar.com,2019-09-10 16:49:51+05:30,Saurabh Kumar,saurabh@saurabh-kumar.com,2019-09-10 11:19:51+00:00,False,saurabh-kumar,saurabh-kumar,* main,True,theskumar_python-dotenv.git,theskumar/python-dotenv.git,https://github.com/theskumar/python-dotenv.git
50f35d4a0091c2da6d87f5d43365f7eddaa3faa8,Nikita Sobolev,mail@sobolevn.me,2019-09-15 21:08:02+03:00,GitHub,noreply@github.com,2019-09-15 18:08:02+00:00,False,sobolevn,github,* master,True,sobolevn_django-split-settings,sobolevn/django-split-settings,https://github.com/sobolevn/django-split-settings aca958de3e7d22375a10a642d551a27e3686415c,sobolevn,n.a.sobolev@gmail.com,2015-05-04 21:06:16+03:00,sobolevn,n.a.sobolev@gmail.com,2015-05-04 18:06:16+00:00,False,gmail,gmail,* master,True,sobolevn_django-split-settings,sobolevn/django-split-settings,https://github.com/sobolevn/django-split-settings
6633f27a28ae048e0a5e352bbe0251f8c32b3469,Nikolai Aleksandrovich Pavlov,kp-pav@yandex.ru,2014-12-08 08:37:39+03:00,Nikolai Aleksandrovich Pavlov,kp-pav@yandex.ru,2014-12-08 05:37:39+00:00,True,yandex,yandex,* develop,True,powerline_powerline,powerline/powerline,https://github.com/powerline/powerline edfc090ddb977752557febb1c99981a4efb612da,Kim Silkebækken,kim.silkebaekken@gmail.com,2013-03-15 15:20:00+01:00,Kim Silkebækken,kim.silkebaekken@gmail.com,2013-03-15 14:23:41+00:00,False,gmail,gmail,* develop,True,powerline_powerline,powerline/powerline,https://github.com/powerline/powerline
a557ccc7a87ebe0ae1222bff9cb5eb82d54db726,Karen Etheridge,ether@cpan.org,2017-12-19 17:34:46-08:00,Karen Etheridge,ether@cpan.org,2017-12-20 01:34:46+00:00,False,cpan,cpan,* master,True,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,https://github.com/karenetheridge/Module-Manifest a557ccc7a87ebe0ae1222bff9cb5eb82d54db726,Karen Etheridge,ether@cpan.org,2017-12-19 17:34:46-08:00,Karen Etheridge,ether@cpan.org,2017-12-20 01:34:46+00:00,False,cpan,cpan,* master,True,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,https://github.com/karenetheridge/Module-Manifest
d9401ec5344f103826ef83fd9138250a32d020fe,Laurent LAPORTE,tantale.solutions@gmail.com,2020-05-13 21:59:46+02:00,Laurent LAPORTE,tantale.solutions@gmail.com,2020-05-13 19:59:46+00:00,False,gmail,gmail,* master,True,tantale_deprecated.git,tantale/deprecated.git,https://github.com/tantale/deprecated.git 1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0,Laurent LAPORTE,tantale.solutions@gmail.com,2017-11-20 14:13:26+01:00,Laurent LAPORTE,tantale.solutions@gmail.com,2017-11-20 13:13:26+00:00,False,gmail,gmail,* master,True,tantale_deprecated.git,tantale/deprecated.git,https://github.com/tantale/deprecated.git
feed17b67d83bc8e7b8a72c62c56c5103c7bebf2,Joelle Maslak,jmaslak@antelope.net,2018-06-03 21:03:34-06:00,Joelle Maslak,jmaslak@antelope.net,2018-06-04 03:03:34+00:00,False,antelope,antelope,* master,True,jmaslak_Net-Netmask.git,jmaslak/Net-Netmask.git,https://github.com/jmaslak/Net-Netmask.git feed17b67d83bc8e7b8a72c62c56c5103c7bebf2,Joelle Maslak,jmaslak@antelope.net,2018-06-03 21:03:34-06:00,Joelle Maslak,jmaslak@antelope.net,2018-06-04 03:03:34+00:00,False,antelope,antelope,* master,True,jmaslak_Net-Netmask.git,jmaslak/Net-Netmask.git,https://github.com/jmaslak/Net-Netmask.git
b4ec64228d65e2ed9917b3f9da442f039fbf2a5e,Patrick Totzke,patricktotzke@gmail.com,2021-09-23 18:16:03+01:00,Patrick Totzke,patricktotzke@gmail.com,2021-09-23 17:16:03+00:00,False,gmail,gmail,* master,True,pazz_alot,pazz/alot,https://github.com/pazz/alot 26075d8710cc4f460cb8645352ca63cf4398568c,Dylan Baker,dylan@pnwbakers.com,2017-08-18 10:49:06-07:00,Dylan Baker,dylan@pnwbakers.com,2017-08-18 22:44:42+00:00,False,pnwbakers,pnwbakers,* master,True,pazz_alot,pazz/alot,https://github.com/pazz/alot
6429d57dde582371fc7204307c857bbd5cfa0c6e,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 16:19:21-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 19:19:21+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,https://github.com/resurrecting-open-source-projects/cbm b656d864ed490c8370304c5170e95c42d8fa966a,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 16:09:23-03:00,Joao Eriberto Mota Filho,eriberto@eriberto.pro.br,2021-04-26 19:09:23+00:00,False,eriberto,eriberto,* master,True,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,https://github.com/resurrecting-open-source-projects/cbm
ff9658b9e170031daa6dc66b9116c53a214652eb,Bernardo Heynemann,heynemann@gmail.com,2014-03-19 19:18:17-03:00,Bernardo Heynemann,heynemann@gmail.com,2014-03-19 22:18:17+00:00,False,gmail,gmail,* master,True,thumbor_libthumbor,thumbor/libthumbor,https://github.com/thumbor/libthumbor ff9658b9e170031daa6dc66b9116c53a214652eb,Bernardo Heynemann,heynemann@gmail.com,2014-03-19 19:18:17-03:00,Bernardo Heynemann,heynemann@gmail.com,2014-03-19 22:18:17+00:00,False,gmail,gmail,* master,True,thumbor_libthumbor,thumbor/libthumbor,https://github.com/thumbor/libthumbor
f1c39b4c1404d5dfdf13dbea40b3c0186e7d84a5,Stoeffel,schtoeffel@gmail.com,2016-02-24 09:27:48+01:00,Stoeffel,schtoeffel@gmail.com,2016-02-24 08:27:48+00:00,False,gmail,gmail,* master,True,epeli_underscore.string,epeli/underscore.string,https://github.com/epeli/underscore.string dc0c5a37faf31c28bcf4765206482ef693b83ecd,Esa-Matti Suuronen,esa-matti@suuronen.org,2014-12-11 13:41:01+02:00,Esa-Matti Suuronen,esa-matti@suuronen.org,2014-12-11 11:41:01+00:00,False,suuronen,suuronen,* master,True,epeli_underscore.string,epeli/underscore.string,https://github.com/epeli/underscore.string
117c4f758cd5da2eea272f7ef5418aaa41996008,Simon Josefsson,simon@josefsson.org,2023-12-31 13:29:07+01:00,Simon Josefsson,simon@josefsson.org,2023-12-31 12:36:42+00:00,False,josefsson,josefsson,* master,True,jas_libntlm,jas/libntlm,https://gitlab.com/jas/libntlm 117c4f758cd5da2eea272f7ef5418aaa41996008,Simon Josefsson,simon@josefsson.org,2023-12-31 13:29:07+01:00,Simon Josefsson,simon@josefsson.org,2023-12-31 12:36:42+00:00,False,josefsson,josefsson,* master,True,jas_libntlm,jas/libntlm,https://gitlab.com/jas/libntlm
25ef5ec3afd1fcb2a1c3f4f4bff050414d3a9bd8,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 18:00:33+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 16:00:33+00:00,False,unterwaditzer,unterwaditzer,* master,True,untitaker_python-atomicwrites,untitaker/python-atomicwrites,https://github.com/untitaker/python-atomicwrites 4425735296e32c33781be0c76e77a0d9811b6206,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 17:44:09+02:00,Markus Unterwaditzer,markus@unterwaditzer.net,2016-08-12 15:44:09+00:00,False,unterwaditzer,unterwaditzer,* master,True,untitaker_python-atomicwrites,untitaker/python-atomicwrites,https://github.com/untitaker/python-atomicwrites
0acc6486652024304058da5baf87113fe97f5464,Adam Donaghy,adamdonaghy1994@gmail.com,2023-11-23 18:15:35+11:00,Diederik van der Boor,vdboor@codingdomain.com,2023-11-23 07:30:38+00:00,False,gmail,codingdomain,* master,True,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,https://github.com/django-polymorphic/django-polymorphic 0acc6486652024304058da5baf87113fe97f5464,Adam Donaghy,adamdonaghy1994@gmail.com,2023-11-23 18:15:35+11:00,Diederik van der Boor,vdboor@codingdomain.com,2023-11-23 07:30:38+00:00,False,gmail,codingdomain,* master,True,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,https://github.com/django-polymorphic/django-polymorphic
a2d601630bf405d29747a95a4b5038c706a46bf5,ryneeverett,ryneeverett@gmail.com,2023-12-31 14:21:16-05:00,ryneeverett,ryneeverett@gmail.com,2023-12-31 20:05:22+00:00,False,gmail,gmail,* develop,True,ralphbean_bugwarrior,ralphbean/bugwarrior,https://github.com/ralphbean/bugwarrior af6b7f05af97c6be88e1e3dc2be5e2a5a108d464,ryneeverett,ryneeverett@gmail.com,2016-05-20 17:46:04-04:00,ryneeverett,ryneeverett@gmail.com,2016-05-20 21:46:04+00:00,False,gmail,gmail,* develop,True,ralphbean_bugwarrior,ralphbean/bugwarrior,https://github.com/ralphbean/bugwarrior
e02d5e4788e7a477d061accdefbd701d6fa876cf,Michael Williamson,mike@zwobble.org,2014-04-16 16:52:45+01:00,Michael Williamson,mike@zwobble.org,2014-04-16 15:52:45+00:00,False,zwobble,zwobble,* master,True,mwilliamson_spur.py.git,mwilliamson/spur.py.git,https://github.com/mwilliamson/spur.py.git e02d5e4788e7a477d061accdefbd701d6fa876cf,Michael Williamson,mike@zwobble.org,2014-04-16 16:52:45+01:00,Michael Williamson,mike@zwobble.org,2014-04-16 15:52:45+00:00,False,zwobble,zwobble,* master,True,mwilliamson_spur.py.git,mwilliamson/spur.py.git,https://github.com/mwilliamson/spur.py.git

1 commit_hash author_name author_email authored_date committer_name committer_email commit_date is_merge author_org committer_org branches diff_contains_document repo_id project_handle upstream_vcs_link
2 ef42007d965871ecab0cfcb7d7c7c3fdcbc6e97f 9b5ae2ba1c1e2fe20ae555212ef9a6b1f50957cf Richard Schwab Andrew Svetlov gitrichardschwab-7a2qxq42kj@central-intelligence.agency andrew.svetlov@gmail.com 2022-04-10 09:25:58+02:00 2015-07-11 13:11:06+03:00 GitHub Andrew Svetlov noreply@github.com andrew.svetlov@gmail.com 2022-04-10 07:25:58+00:00 2015-07-11 10:11:06+00:00 False central-intelligence gmail github gmail * master True aio-libs_aiomysql.git aio-libs/aiomysql.git https://github.com/aio-libs/aiomysql.git
3 fffc4338837d4474cc7a05cc80c645fd8ffae153 f8d94662015fa4ced56a4d2d11875b91b7284666 patchback[bot] Andrew Svetlov 45432694+patchback[bot]@users.noreply.github.com andrew.svetlov@gmail.com 2023-11-09 19:33:38+00:00 2015-07-11 12:08:56+03:00 GitHub Andrew Svetlov noreply@github.com andrew.svetlov@gmail.com 2023-11-09 19:33:38+00:00 2015-07-11 09:08:56+00:00 False users gmail github gmail * master True aio-libs_aiohttp.git aio-libs/aiohttp.git https://github.com/aio-libs/aiohttp.git
4 679bf7de5aa77e34f534ce31ce33ea7ff0707317 Peter Potrebic ppotrebic@box.com 2014-03-23 20:47:09-07:00 Peter Potrebic ppotrebic@box.com 2014-03-24 03:47:09+00:00 False box box * master True box_genty.git box/genty.git https://github.com/box/genty.git
5 a0b321f7a1ae658ee62899b776416c8eceb6db61 Raphael Pierzina raphael@hackebrot.de 2015-12-04 14:31:18+01:00 Raphael Pierzina raphael@hackebrot.de 2015-12-04 13:31:18+00:00 False hackebrot hackebrot * main True hackebrot_jinja2-time hackebrot/jinja2-time https://github.com/hackebrot/jinja2-time
6 2ee1c673046fe673a377943d9bbb4d9c1404dc9c cf31482daf25df12bd718e00ae92fd50dfc4eb37 Daniel Manila dmv@springwater7.org 2016-12-29 08:47:02+06:00 2016-11-18 10:09:10+06:00 Daniel Manila dmv@springwater7.org 2016-12-29 02:50:39+00:00 2016-11-18 04:12:06+00:00 False springwater7 springwater7 * master True DonyorM_weresync.git DonyorM/weresync.git https://github.com/DonyorM/weresync.git
7 9a565ce98423b526b96088bda648f17fae4b264b f4d7c1a628411df9c818ac57c7bdc67e66177585 Brendan Gregg brendan.d.gregg@gmail.com bgregg@netflix.com 2018-10-10 09:49:20-07:00 2018-09-09 03:24:16+00:00 GitHub Brendan Gregg noreply@github.com bgregg@netflix.com 2018-10-10 16:49:20+00:00 2018-09-09 18:23:21+00:00 True False gmail netflix github netflix * master True iovisor_bpftrace iovisor/bpftrace https://github.com/iovisor/bpftrace
8 8eaf930ba595fb9f3e124ec1d17ef469c9ab01f6 Michael Howitz mh@gocept.com 2023-02-28 07:57:40+01:00 GitHub noreply@github.com 2023-02-28 06:57:40+00:00 False gocept github * master True zopefoundation_roman zopefoundation/roman https://github.com/zopefoundation/roman
9 1ae029a963ffa4d0e5daeea83206c38a5b883f0c 4f3144d6bc05a74f24aa4e94e5dc4e6a461b87b7 Peter Boling Erik Michaels-Ober peter.boling@gmail.com sferik@gmail.com 2022-09-16 11:03:13+07:00 2013-01-26 00:40:04-08:00 Peter Boling Erik Michaels-Ober peter.boling@gmail.com sferik@gmail.com 2022-09-16 04:03:13+00:00 2013-01-26 08:40:13+00:00 False gmail gmail * migrated True intridea_oauth2 intridea/oauth2 https://github.com/intridea/oauth2
10 1172a8764cd03240d114ad1a3b0ef797e4343fe5 8f793f86ce59ef393b3f7c6d93130dedb8d79fc8 Jason Tyler Timothy Crosley jmtyler@gmail.com timothy.crosley@gmail.com 2020-02-11 23:02:15-08:00 2016-02-07 12:17:36-08:00 GitHub Timothy Crosley noreply@github.com timothy.crosley@gmail.com 2020-02-12 07:02:15+00:00 2016-02-07 20:17:36+00:00 True False gmail github gmail * develop True timothycrosley_hug.git timothycrosley/hug.git https://github.com/timothycrosley/hug.git
11 65b749ba98fa29531ca7e281f2d2295ea5bb5644 0fc9e32a0296ba399f216878c305fd83d7f115a9 Angelo Paparazzi Jeffrey Stylos angelo.paparazzi@ibm.com jsstylos@gmail.com 2023-03-02 10:47:57-06:00 2015-10-08 10:09:23-04:00 Angelo Paparazzi Jeffrey Stylos apaparazzi0329@gmail.com jsstylos@gmail.com 2023-03-16 21:52:55+00:00 2015-10-08 14:09:23+00:00 False ibm gmail gmail * master True watson-developer-cloud_python-sdk.git watson-developer-cloud/python-sdk.git https://github.com/watson-developer-cloud/python-sdk.git
12 bf8e1b08f4a847dcd97f54c5115c9db59796f410 7b9bf81a172eaccb55f282c39480161f73edf8f8 Matt Brictson Flaviu Simihaian matt@mattbrictson.com flsimihaian@gmail.com 2023-10-19 22:54:28-07:00 2011-11-21 21:33:27-05:00 GitHub Flaviu Simihaian noreply@github.com flsimihaian@gmail.com 2023-10-20 05:54:28+00:00 2011-11-22 02:33:27+00:00 False mattbrictson gmail github gmail * master True vcr_vcr vcr/vcr https://github.com/vcrhonek/hwdata.git
13 f1d872bee4efa4d03cf136488379968002d139c1 2505322d10223bf7965740fac270c80cffed683f Karen Etheridge ether@cpan.org 2016-03-12 16:41:03-08:00 2013-11-18 18:31:37-08:00 Karen Etheridge ether@cpan.org 2016-03-13 00:41:03+00:00 2013-11-19 02:31:37+00:00 False cpan cpan * master True moose_MooseX-Runnable moose/MooseX-Runnable https://github.com/moose/MooseX-Runnable
14 06da921608b971fb47603671bcafdb2843992eb3 3111f06b7039417845164434801c1e5443b0b2d9 Tim Pope code@tpope.net 2018-04-05 17:59:12-04:00 2013-03-10 16:07:37-04:00 Tim Pope code@tpope.net 2018-04-05 21:59:57+00:00 2013-03-10 20:07:37+00:00 False tpope tpope * master True tpope_vim-pathogen.git tpope/vim-pathogen.git https://github.com/tpope/vim-pathogen.git
15 648a38e376afd2f9a4cb44eef457c99c61e2107b a82e940f7ab11fa150db8ef67aca36b2a558282f Ogi Moore Luke Campagnola ognyan.moore@gmail.com luke.campagnola@gmail.com 2022-10-01 13:07:37-07:00 2014-03-05 11:01:53-05:00 GitHub Luke Campagnola noreply@github.com luke.campagnola@gmail.com 2022-10-01 20:07:37+00:00 2014-03-05 16:01:53+00:00 True False gmail github gmail * master True pyqtgraph_pyqtgraph.git pyqtgraph/pyqtgraph.git https://github.com/pyqtgraph/pyqtgraph.git
16 1be2f2a179a2cb951690fd64b1fe5a6ce2db0139 1a0a8a536b2b3b22c0669fdefd810a7764553428 Jerome Leclanche jerome@leclan.ch 2018-02-10 13:58:49+02:00 2015-06-30 07:34:06+02:00 Jerome Leclanche jerome@leclan.ch 2018-02-10 12:01:16+00:00 2015-06-30 05:34:14+00:00 False leclan leclan * master True jazzband_django-push-notifications jazzband/django-push-notifications https://github.com/jazzband/django-push-notifications
17 bc8c5044010262b383bff98d26ebb746077bf80d 857ab548f619773a8420331ce77ee6dce21ed106 Jeff Meadows Jeff-Meadows jrmeadows2@gmail.com 2019-01-09 10:09:09-08:00 2014-04-07 15:05:50-07:00 GitHub Jeff-Meadows noreply@github.com jrmeadows2@gmail.com 2019-01-09 18:09:09+00:00 2014-04-07 22:05:50+00:00 False gmail github gmail * master True box_flaky.git box/flaky.git https://github.com/box/flaky.git
18 d1ec087a7f86e6dc14ed3771a9f8e84a5d384e0a 2a732ce025b508dfe8381ace04e8c59050790530 Andreas Mueller Carl Gieringer t3kcit@gmail.com 78054+carlgieringer@users.noreply.github.com 2020-04-09 11:14:26-04:00 2020-02-22 23:14:08-08:00 GitHub Jean-Christophe Fillion-Robin noreply@github.com jchris.fillionr@kitware.com 2020-04-09 15:14:26+00:00 2020-04-08 18:55:56+00:00 True False gmail users github kitware * main True amueller_word_cloud amueller/word/cloud https://github.com/amueller/word_cloud
19 95e617b15a138771ee61c3f65f6f5a7a9c1f872b Zearin zearin@gonk.net 2013-05-22 14:35:09-04:00 Zearin zearin@gonk.net 2013-05-22 18:35:09+00:00 False gonk gonk * master True heynemann_pyvows.git heynemann/pyvows.git https://github.com/heynemann/pyvows.git
20 8c0c5cb671871b3c724378be2d15065260097ff2 8cfcfc8645fa47b776c8c6b441a9e2bb4b1b28d3 Guillaume Lours 705411+glours@users.noreply.github.com guillaume.lours@docker.com 2023-11-23 11:28:04+01:00 2020-08-17 18:29:28+02:00 GitHub Guillaume Lours noreply@github.com guillaume.lours@docker.com 2023-11-23 10:28:04+00:00 2020-08-18 07:53:57+00:00 True False users docker github docker * main True docker_compose docker/compose https://github.com/docker/compose
21 e9185324ae5bf0e4ba72a9b07b0d50814b06ba16 0749e18b7b4c032db9dd39df00a63fafbe2960f2 Markus Unterwaditzer markus@unterwaditzer.net 2016-08-15 20:44:45+02:00 2014-04-14 12:49:39+02:00 Markus Unterwaditzer markus@unterwaditzer.net 2016-08-15 18:44:45+00:00 2014-04-14 10:49:39+00:00 False unterwaditzer unterwaditzer * main True pimutils_vdirsyncer pimutils/vdirsyncer https://github.com/pimutils/vdirsyncer
22 3d9c14a8849114db9eb6f444c52631dd6c804fc3 8706f6598ea157841c8d8ccf6365dfdbf0d72970 Anthony Sottile Hong Minhee asottile@umich.edu hongminhee@member.fsf.org 2024-01-06 14:14:49-05:00 2015-10-02 04:27:46+09:00 GitHub Hong Minhee noreply@github.com hongminhee@member.fsf.org 2024-01-06 19:14:49+00:00 2015-10-01 19:27:46+00:00 True False umich member github member * main True dahlia_libsass-python.git dahlia/libsass-python.git https://github.com/dahlia/libsass-python.git
23 94544bdc6b564c59d2fa79af1ce100536fbff471 bdbf2ce5edc4d973e6f2c2b7a2acf85285918eee Oleh Prypin Dougal Matthews oleh@pryp.in dougal@redhat.com 2023-12-30 12:51:59+01:00 2015-04-03 14:47:00+01:00 Oleh Prypin Dougal Matthews oleh@pryp.in dougal@redhat.com 2024-03-16 13:43:27+00:00 2015-04-03 13:47:00+00:00 False pryp redhat pryp redhat * master True mkdocs_mkdocs mkdocs/mkdocs https://github.com/mkdocs/mkdocs
24 3b82add3755a8ffb826be54d0a1c9c6bd3218126 e3d291ba3c9f48f5d439233584652aa71d6890c1 Jonathan Weaver Daniel G. Taylor createchange@protonmail.com danielgtaylor@gmail.com 2023-05-05 00:25:40-04:00 2014-11-11 11:50:58-08:00 GitHub Daniel G. Taylor noreply@github.com danielgtaylor@gmail.com 2023-05-05 04:25:40+00:00 2014-11-11 19:50:58+00:00 False protonmail gmail github gmail * develop True boto_boto3 boto/boto3 https://github.com/boto/boto3
25 0e9f056b3acc4862fadff5bb417150a8a38593ab 1af188b50248c794b671e55df5659e5935fdc799 Jeff Quast contact@jeffquast.com 2020-01-15 16:05:17-08:00 2015-10-02 14:08:41-07:00 GitHub Jeff Quast noreply@github.com contact@jeffquast.com 2020-01-16 00:05:17+00:00 2015-10-02 21:08:41+00:00 False jeffquast github jeffquast * master True jquast_blessed jquast/blessed https://github.com/jquast/blessed
26 02c417d33da3c237ecf65afe84d4fb0c6f1b4286 Robert Grosse grosse@google.com 2015-06-04 12:13:55-07:00 Robert Grosse grosse@google.com 2015-06-04 19:13:55+00:00 False google google * master True Storyyeller_enjarify Storyyeller/enjarify https://github.com/Storyyeller/enjarify
27 cdd4ad47d798d8729d510b9b00957044e26acb59 7721c5c0e0fc59f4e9bdcbaa5b30ee82dd88a15e Kenneth Daily Nate Prewitt kdaily@amazon.com Nate.Prewitt@gmail.com 2021-10-15 10:57:21-07:00 2021-09-05 00:11:40-07:00 GitHub Nate Prewitt noreply@github.com Nate.Prewitt@gmail.com 2021-10-15 17:57:21+00:00 2021-10-06 22:06:42+00:00 False amazon gmail github gmail * develop True boto_s3transfer boto/s3transfer https://github.com/boto/s3transfer
28 b74141257443f217393bce2abf82ccd1d425b10d 78ffdef83dad7cf04392d8aae77fed247323536e Derek Gulbranson derek73@gmail.com 2018-08-31 15:59:44-07:00 2014-05-14 15:52:19-07:00 Derek Gulbranson derek73@gmail.com 2018-08-31 22:59:44+00:00 2014-05-14 22:52:19+00:00 False gmail gmail * master True derek73_python-nameparser derek73/python-nameparser https://github.com/derek73/python-nameparser
29 ee7de60f1a4a7652a35c5ce0a52c1276e5fada2e a76744c544d9302f6cf3612326ec52214e2099d4 Johannes Hoppe info@johanneshoppe.com 2019-07-23 09:57:30+02:00 2018-01-09 18:26:18+01:00 Johannes Hoppe info@johanneshoppe.com 2019-07-23 08:52:58+00:00 2018-01-09 17:26:18+00:00 False johanneshoppe johanneshoppe * main True coddingtonbear_python-measurement coddingtonbear/python-measurement https://github.com/coddingtonbear/python-measurement
30 af43013b4c7bf9edf13429be80d8c522cf14a730 Hong Xu hong@topbug.net 2018-11-15 16:20:37-08:00 Hong Xu hong@topbug.net 2018-11-16 00:20:37+00:00 False topbug topbug * master True editorconfig_editorconfig-core-c.git editorconfig/editorconfig-core-c.git https://github.com/editorconfig/editorconfig-core-c.git
31 c3cd386de68721815451e8ba7cf4560d8d1c6ff6 7529e129e46b0dd27ecc9ecc843bc7cc0231571e omahs joke2k 73983677+omahs@users.noreply.github.com joke2k@gmail.com 2024-02-16 16:27:20+01:00 2015-02-16 17:47:38+01:00 GitHub joke2k noreply@github.com joke2k@gmail.com 2024-02-16 15:27:20+00:00 2015-02-16 17:42:00+00:00 False users gmail github gmail * master True joke2k_faker joke2k/faker https://github.com/joke2k/faker
32 087e79f8ac48898bd9ecc1ed54d636a0277e9690 75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae Benoit Jacob benoitjacob@google.com 2015-09-23 09:51:46-04:00 2015-06-25 15:50:59-04:00 Benoit Jacob benoitjacob@google.com 2015-09-23 13:51:46+00:00 2015-06-25 19:53:04+00:00 True False google google * master True google_gemmlowp google/gemmlowp https://github.com/google/gemmlowp
33 5f72a0dc00818bea3bb0a6b5b10ad23824fbdcd3 Iustin Pop iustin@k1024.org 2023-04-23 22:15:21+02:00 Iustin Pop iustin@k1024.org 2023-04-23 20:16:42+00:00 False k1024 k1024 * main True iustin_pylibacl iustin/pylibacl https://github.com/iustin/pylibacl
34 f0f45dc240da0dcf9b98bad4271d52a9d230f1ea 9be803c1ff0a1440b6c8d2bdb39a4e4a511d4695 Martin Larralde Will McGugan martin.larralde@embl.de willmcgugan@gmail.com 2021-02-01 03:51:01+01:00 2019-01-06 13:49:08+00:00 Martin Larralde Will McGugan martin.larralde@embl.de willmcgugan@gmail.com 2021-02-01 02:51:01+00:00 2019-01-06 13:49:08+00:00 False embl gmail embl gmail * master True PyFilesystem_pyfilesystem2 PyFilesystem/pyfilesystem2 https://github.com/PyFilesystem/pyfilesystem2
35 417268cb0ff2ecf8da29f80d542b0b10c97bab01 271968e67533d195c16d0c0e1d73301ab8052c29 David Lord Markus Unterwaditzer davidism@gmail.com markus@unterwaditzer.net 2023-06-27 14:41:47-07:00 2014-09-01 23:33:28+02:00 David Lord Markus Unterwaditzer davidism@gmail.com markus@unterwaditzer.net 2023-06-27 21:41:47+00:00 2014-09-02 03:03:07+00:00 True False gmail unterwaditzer gmail unterwaditzer * main True pallets_werkzeug pallets/werkzeug https://github.com/pallets/werkzeug
36 ecf6db5425913f97d14774987b65849d0b5b0d0b b95d3ee5bd401ef17f259e3eae27a3f5694016be Min RK MinRK benjaminrk@gmail.com 2024-02-16 14:51:38+01:00 2012-03-05 14:51:01-08:00 GitHub MinRK noreply@github.com benjaminrk@gmail.com 2024-02-16 13:51:38+00:00 2012-03-06 21:36:34+00:00 True False gmail github gmail * main True zeromq_pyzmq.git zeromq/pyzmq.git https://github.com/zeromq/pyzmq.git
37 8801e4d3fc542656c7caa3c77a1307daf210f2f3 6ab218bf71bc091eb04cedde61dcfc6fb52bbf13 Rick van Hattem Wolph@wol.ph 2019-09-05 11:05:15+02:00 2016-09-11 18:13:17+02:00 Rick van Hattem Wolph@wol.ph 2019-09-05 09:05:15+00:00 2016-09-11 16:13:17+00:00 True False wol wol * develop True WoLpH_numpy-stl WoLpH/numpy-stl https://github.com/WoLpH/numpy-stl
38 687c601a2636dde7a2c466056296a4bb8a981bd9 7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659 Martin Packman Brian Brazil gzlist@googlemail.com brian.brazil@gmail.com 2018-10-15 11:05:59+01:00 2015-02-04 09:44:34+00:00 Brian Brazil brian.brazil@robustperception.io brian.brazil@gmail.com 2018-10-15 10:05:59+00:00 2015-02-09 23:02:29+00:00 False googlemail gmail robustperception gmail * master True prometheus_client_python.git prometheus/client/python.git https://github.com/prometheus/client_python.git
39 5ed5d4ebc1bcabecdc3278a7dda848a29b5e8ae6 Zearin Zearin@users.noreply.github.com 2015-03-02 13:06:18-05:00 Zearin Zearin@users.noreply.github.com 2015-03-02 18:06:18+00:00 False users users * master True heynemann_preggy heynemann/preggy https://github.com/heynemann/preggy
40 1403966f149f6ff42a3b5770bb5b0e562e1f2544 3759eada7e7905ad0091e1f8edf676f177009188 Nathaniel J. Smith njs@pobox.com 2017-12-06 03:23:12-08:00 2017-12-04 05:17:55-08:00 GitHub Nathaniel J. Smith noreply@github.com njs@pobox.com 2017-12-06 11:23:12+00:00 2017-12-05 00:14:52+00:00 True False pobox github pobox * main True python-trio_trio python-trio/trio https://github.com/python-trio/trio
41 8985b952cd8af594b3a9c822f793f980ee79aeb2 8d04e68fdac7ddf9f34f3d2f11f5f305815ef789 Ionel Cristian Mărieș contact@ionelmc.ro 2023-10-21 17:14:19+03:00 2015-10-02 22:42:08+03:00 Ionel Cristian Mărieș contact@ionelmc.ro 2023-10-21 14:14:19+00:00 2015-10-02 19:42:08+00:00 False ionelmc ionelmc * master True ionelmc_python-tblib ionelmc/python-tblib https://github.com/ionelmc/python-tblib
42 1ff8b03ae9cf7b6d14cf514a3a8ac297fe799a24 0aaffb919f6938261a75203f2c1c5f19764b0e17 Gabriel Scherer Sander Maijers gabriel.scherer@gmail.com S.N.Maijers@gmail.com 2019-06-23 17:37:03+02:00 2016-04-18 14:02:43+02:00 GitHub Gabriel Scherer noreply@github.com gabriel.scherer@gmail.com 2019-06-23 15:37:03+00:00 2016-05-04 11:33:20+00:00 True False gmail github gmail * master True ocaml_ocamlbuild.git ocaml/ocamlbuild.git https://github.com/ocaml/ocamlbuild.git
43 c262a2d65d39e4b2a9593cf0537ddb68f78798c7 5f1e47afcb524803f71f600b6a1edbfe40f6796f Karen Etheridge ether@cpan.org 2019-04-13 23:55:47-07:00 2015-06-06 13:55:06-07:00 Karen Etheridge ether@cpan.org 2019-04-14 06:55:47+00:00 2015-06-06 20:55:06+00:00 False cpan cpan * master True karenetheridge_B-Hooks-Parser.git karenetheridge/B-Hooks-Parser.git https://github.com/karenetheridge/B-Hooks-Parser.git
44 5b7260e222f66040807abbe5ec162b07f9201292 0ebc98342d4b2be00d7799e2e35b33898619b901 Thomas Montague Juan Antonio Osorio Robles montague.thomas@gmail.com jaosorior@redhat.com 2024-01-10 19:43:19-05:00 2020-03-24 17:09:56+02:00 GitHub Juan Antonio Osorio Robles noreply@github.com jaosorior@redhat.com 2024-01-11 00:43:19+00:00 2020-03-24 15:09:56+00:00 True False gmail redhat github redhat * master True ComplianceAsCode_content ComplianceAsCode/content https://github.com/ComplianceAsCode/content
45 bbe2749821f565190979971c8ea3db8e50cb1698 9b6705571107d704d576269ae1723d589c330a16 Zander Brown Nicholas H.Tollervey ZanderBrown@users.noreply.github.com ntoll@ntoll.org 2018-07-08 19:06:15+01:00 2015-12-08 07:07:13+00:00 Zander Brown Nicholas H.Tollervey ZanderBrown@users.noreply.github.com ntoll@ntoll.org 2018-07-08 18:06:15+00:00 2015-12-08 07:07:13+00:00 True False users ntoll users ntoll * master True mu-editor_mu mu-editor/mu https://github.com/mu-editor/mu
46 8179f7f379de8a882deeeb8081e1dce051fa7c53 0f896927c4541cc70226e5fc946520f6225cde7b Jacob Tomlinson Matthew Rocklin jacobtomlinson@users.noreply.github.com mrocklin@gmail.com 2019-10-22 13:18:14+01:00 2016-06-22 16:41:31-07:00 Benjamin Zaitlen GitHub quasiben@users.noreply.github.com noreply@github.com 2019-10-22 12:18:14+00:00 2016-06-22 23:41:31+00:00 False users gmail users github * main True dask_dask dask/dask https://github.com/dask/dask
47 7105292f785e68c31cca6b06740b5958faf321c5 7532e5040bd9487ddc4d74dcac22209b2fee33de Venelin Stoykov Matthew Tretter vkstoykov@gmail.com m@tthewwithanm.com 2021-11-02 08:39:05+02:00 2012-11-06 00:40:14-05:00 Venelin Stoykov Matthew Tretter vkstoykov@gmail.com m@tthewwithanm.com 2021-11-02 06:39:05+00:00 2012-11-06 05:40:14+00:00 True False gmail tthewwithanm gmail tthewwithanm * develop True matthewwithanm_django-imagekit.git matthewwithanm/django-imagekit.git https://github.com/matthewwithanm/django-imagekit.git
48 4c3d023d3258e1792378b9e23ec4127cbce181df de6d9769c13e375a6299907dd0f1cd85e31a7ee1 David Golden xdg@xdg.me dagolden@cpan.org 2017-04-02 13:43:23-04:00 2013-01-23 20:38:23-05:00 David Golden xdg@xdg.me dagolden@cpan.org 2017-04-02 17:43:23+00:00 2013-01-24 01:38:23+00:00 False xdg cpan xdg cpan * master True dagolden_class-insideout.git dagolden/class-insideout.git https://github.com/dagolden/class-insideout.git
49 882ddc191e1b06738c16daf0c11e3b96feb30f66 5c229976032872d2c5e889f033ce82f20e15e6c4 Bob Copeland copeland@lastpass.com 2015-11-02 16:34:13-05:00 2014-11-20 04:48:29-05:00 Bob Copeland copeland@lastpass.com 2015-11-10 15:19:45+00:00 2014-11-20 09:48:29+00:00 False lastpass lastpass * master True lastpass_lastpass-cli lastpass/lastpass-cli https://github.com/lastpass/lastpass-cli
50 901b00547d67a3244626e41849fc41c15be28a75 8a365abd9c7255d0b92787671bdea5f44408cbaa Johan ter Beest Daniel Quinn johan@terbeest.net dquinn@ripe.net 2015-11-18 12:25:05+01:00 2015-11-17 18:27:00+01:00 Johan ter Beest Daniel Quinn johan@terbeest.net dquinn@ripe.net 2015-11-18 11:25:05+00:00 2015-11-17 17:27:00+00:00 True False terbeest ripe terbeest ripe * master True RIPE-NCC_ripe.atlas.sagan RIPE-NCC/ripe.atlas.sagan https://github.com/RIPE-NCC/ripe.atlas.sagan
51 0badc75904cb6efd126f1f01b74ca40af9e92ab8 92f3d5111cf529b550a35a43cdbdd92910697ed1 E. McConville Hong Minhee emcconville@emcconville.com minhee@dahlia.kr 2020-07-19 09:28:39-05:00 2013-03-05 01:05:47+09:00 E. McConville Hong Minhee emcconville@emcconville.com minhee@dahlia.kr 2020-07-19 14:28:39+00:00 2013-03-04 16:05:47+00:00 False emcconville dahlia emcconville dahlia * master True emcconville_wand emcconville/wand https://github.com/emcconville/wand
52 5010bd74848e732669ef739b3df2b0d34e8f84c1 Karen Etheridge ether@cpan.org 2017-06-27 16:21:31-07:00 Karen Etheridge ether@cpan.org 2017-06-27 23:21:31+00:00 False cpan cpan * master True perl-catalyst_Catalyst-Authentication-Credential-HTTP perl-catalyst/Catalyst-Authentication-Credential-HTTP https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP
53 87c6bc4f1cf3ca953dcb839fbfe32329947ce687 Andrew Ayer andrew@sslmate.com 2017-01-06 10:55:52-08:00 Andrew Ayer andrew@sslmate.com 2017-01-06 18:55:52+00:00 False sslmate sslmate * master True sslmate_certspotter sslmate/certspotter https://github.com/sslmate/certspotter
54 f643a8e6e6a3e69ff803048e6fb33dfcdc244ac3 2dc18c5ef831bd6d9b7d5cb2def4450a83114980 memst Nathaniel J. Smith stankev.martynas@gmail.com njs@pobox.com 2021-09-14 20:22:48+01:00 2016-05-13 18:19:14-07:00 GitHub Nathaniel J. Smith noreply@github.com njs@pobox.com 2021-09-14 19:22:48+00:00 2016-05-14 01:19:14+00:00 False gmail pobox github pobox * master True python-hyper_h11.git python-hyper/h11.git https://github.com/python-hyper/h11.git
55 9ed5b172ee02183dd9e57efad0a7661eb56529b2 5fa13ecb73d35b1e29ce2d5b8256dd879b58921c Talha Awan Charlike Mike Reagent talhamanzoorawan@gmail.com mamemto_100@mail.bg 2020-12-20 19:16:00+05:00 2014-11-26 13:45:57+02:00 Talha Awan Charlike Mike Reagent talhamanzoorawan@gmail.com mamemto_100@mail.bg 2020-12-20 14:16:00+00:00 2014-11-26 11:45:57+00:00 True False gmail mail gmail mail * master True felixge_node-dateformat felixge/node-dateformat https://github.com/felixge/node-dateformat
56 3f8314db627fe366dc7de1d3f514c4ef7e56e52d 3d6089eeeea36ac808c6c409c36b8c13f1901bba Steven Silvester A. Jesse Jiryu Davis steven.silvester@ieee.org jesse@10gen.com 2023-12-12 14:12:51-06:00 2013-01-15 14:07:09-05:00 GitHub A. Jesse Jiryu Davis noreply@github.com jesse@10gen.com 2023-12-12 20:12:51+00:00 2013-01-15 19:07:09+00:00 False ieee 10gen github 10gen * master True mongodb_motor mongodb/motor https://github.com/mongodb/motor
57 7401efab4d6c2db93886ca92b4479ce90d749a51 Bob Halley halley@dnspython.org 2024-02-09 14:12:59-08:00 Bob Halley halley@dnspython.org 2024-02-09 22:12:59+00:00 False dnspython dnspython * main True rthalley_dnspython.git rthalley/dnspython.git https://github.com/rthalley/dnspython.git
58 d75c658e1bd25444d2af2ea759c734fb0f952aa4 c33d22bc3ca9f18d4d282c04c77c8dfc88effb8b fgo fgo@ableton.com 2018-07-06 09:21:52+02:00 2016-09-01 10:12:58+02:00 fgo fgo@ableton.com 2018-07-06 07:32:01+00:00 2016-09-12 19:44:41+00:00 False ableton ableton * master True Ableton_link.git Ableton/link.git https://github.com/Ableton/link.git
59 a9cbc405d26a78a617c07c5fb924c5a666091ea3 94623f22ddc05e6ba39515f5dd19fde28c2d3f23 Rémy Coutable Michael Kessler rymai@users.noreply.github.com michi@netzpiraten.ch 2019-11-01 01:17:30+01:00 2012-09-17 23:08:52+02:00 GitHub Michael Kessler noreply@github.com michi@netzpiraten.ch 2019-11-01 00:17:30+00:00 2012-09-17 21:09:03+00:00 True False users netzpiraten github netzpiraten * master True guard_guard.git guard/guard.git https://invent.kde.org/plasma/libksysguard.git
60 a51dbb5a3f0a524064e735a9d2a66f8f55ed1378 4d4720a2fc6827729aba75b950fb9a1cbb8a83c9 Raphaël Barrois raphael.barrois@polytechnique.org 2018-07-29 14:55:03+01:00 2018-07-29 14:24:46+01:00 Raphaël Barrois raphael.barrois@polytechnique.org 2018-07-29 13:55:03+00:00 2018-07-29 13:28:09+00:00 False polytechnique polytechnique * master True django-ldapdb_django-ldapdb django-ldapdb/django-ldapdb https://github.com/django-ldapdb/django-ldapdb
61 c34ddaa9a4041bc4c38414d3d0aeb1eb588d92f8 39e75497959a90f3e5c3925801b15e21899e2398 Dan Hemberger Mirth Hickford daniel.hemberger@gmail.com mirth.hickford@gmail.com 2022-11-09 22:39:19-08:00 2015-11-24 12:03:29+00:00 Dan Hemberger Mirth Hickford daniel.hemberger@gmail.com mirth.hickford@gmail.com 2022-11-10 06:41:16+00:00 2015-11-24 12:03:29+00:00 False gmail gmail * main True hickford_MechanicalSoup hickford/MechanicalSoup https://github.com/hickford/MechanicalSoup
62 c3e7f310927a0806de8663676d645ecb8f693229 44d5a1cb3c6b78e0c2fe77f7133ddf909fb24d1c Marius Gedminas marius@gedmin.as 2015-12-08 19:01:44+02:00 2013-11-27 10:46:23+02:00 Marius Gedminas marius@gedmin.as 2015-12-08 17:01:44+00:00 2013-11-27 08:46:23+00:00 False gedmin gedmin * master True gtimelog_gtimelog gtimelog/gtimelog https://github.com/gtimelog/gtimelog
63 d1e69b195b2c40f3ecc30563722858d4af24dad7 061607fc1dd4c9acde6bfbcbd7094d2515163f8b Zuul liuqing zuul@review.opendev.org jing.liuqing@99cloud.net 2020-06-01 23:33:33+00:00 2014-07-01 16:04:12+08:00 Gerrit Code Review liuqing review@openstack.org jing.liuqing@99cloud.net 2020-06-01 23:33:33+00:00 2014-07-03 06:54:25+00:00 True False review 99cloud openstack 99cloud * master True openstack_python-swiftclient.git openstack/python-swiftclient.git https://github.com/openstack/python-swiftclient.git
64 e65c12da5f0b2d2c3531d790953b5d288c03b4a7 Dan Williams dcbw@src.gnome.org 2007-02-02 15:37:33+00:00 Dan Williams dcbw@src.gnome.org 2007-02-02 15:37:33+00:00 False src src * main True GNOME_network-manager-applet GNOME/network-manager-applet https://gitlab.gnome.org/GNOME/network-manager-applet
65 c9cda413f4f4be6a42a55d7c44a56081e8496ce6 Daniel P. Berrangé berrange@redhat.com 2020-05-11 13:50:26+01:00 Daniel P. Berrangé berrange@redhat.com 2020-05-15 16:34:35+00:00 False redhat redhat * master True libvirt_libvirt-ruby.git libvirt/libvirt-ruby.git https://gitlab.com/libvirt/libvirt-ruby.git
66 99909fcd219211e71c1742add9a9db811d8e8cae 8826e8c8dd196963866d5907b46f4716fc8732f7 David Ford david@blue-labs.org 2022-03-13 21:21:19-04:00 2018-05-04 21:50:57-04:00 GitHub noreply@github.com 2022-03-14 01:21:19+00:00 2018-05-05 01:50:57+00:00 True False blue-labs github * master True FirefighterBlu3_python-pam FirefighterBlu3/python-pam https://github.com/FirefighterBlu3/python-pam
67 1a4452ac8e92f90d8c16a4ba0bee7ba3f0a6cd2e 78425623e890d254da489e7a198223849883a157 Alf Gaida Jerome Leclanche agaida@siduction.org jerome@leclan.ch 2018-03-26 18:18:29+02:00 2014-10-21 18:11:55+02:00 Alf Gaida Jerome Leclanche agaida@siduction.org jerome@leclan.ch 2018-03-26 16:18:29+00:00 2014-10-22 08:13:14+00:00 False siduction leclan siduction leclan * master True lxqt_qterminal.git lxqt/qterminal.git https://github.com/lxqt/qterminal.git
68 d7235c74f8605f4abfb11eb257246864c7dcf709 edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc John L. Villalovos Eric Davies john@sodarock.com iamed2@gmail.com 2024-02-17 10:09:20-08:00 2021-07-27 14:36:55-05:00 Nejc Habjan John Villalovos hab.nejc@gmail.com john@sodarock.com 2024-02-17 19:24:19+00:00 2021-07-27 21:35:34+00:00 False sodarock gmail gmail sodarock * main True python-gitlab_python-gitlab.git python-gitlab/python-gitlab.git https://github.com/python-gitlab/python-gitlab.git
69 cb853560019b61f3fe840b2be3621a0c7793324c fc342ca115e577225dd54c7c8cfed3b21edbcba8 Axel Beckert abe@deuxchevaux.org 2017-07-23 19:29:27+02:00 2017-07-23 19:27:34+02:00 Axel Beckert abe@deuxchevaux.org 2017-07-23 17:29:27+00:00 2017-07-23 17:27:34+00:00 False deuxchevaux deuxchevaux * master True elmar_aptitude-robot elmar/aptitude-robot https://github.com/elmar/aptitude-robot
70 2e6d53f28a6cd356bc500c05d0f653ebe40255c8 93a66ab15c5068574d71acec298219f32fb0c3a2 Nikita Bulai Tute Costa bulaj.nikita@gmail.com tutecosta@gmail.com 2020-06-03 21:47:42+03:00 2014-11-22 20:02:50-05:00 Nikita Bulai Tute Costa bulaj.nikita@gmail.com tutecosta@gmail.com 2020-06-03 18:47:42+00:00 2014-11-23 01:02:50+00:00 False gmail gmail * main True doorkeeper-gem_doorkeeper doorkeeper-gem/doorkeeper https://github.com/doorkeeper-gem/doorkeeper
71 72455878f6e8a7056448829ef227d31520b34839 Stefan Breunig stefan-github@yrden.de 2014-12-27 21:46:11+01:00 Stefan Breunig stefan-github@yrden.de 2014-12-27 20:46:11+00:00 False yrden yrden * master True breunigs_python-librtmp-debian breunigs/python-librtmp-debian https://github.com/breunigs/python-librtmp-debian
72 56fceff11bf90f020acd4000568a0a56299f8ffe Gregory Smith gps@google.com 2015-03-20 18:22:24-07:00 Gregory Smith gps@google.com 2015-03-21 01:22:24+00:00 False google google * main True google_python_portpicker google/python/portpicker https://github.com/google/python_portpicker
73 70b949cd2c723ac315f95539ad72d388daf84806 6aa6ba0667f49dea0e71d4ec1cca93d3d67f302c John Vandenberg Trey Hunner jayvdb@gmail.com trey@treyhunner.com 2022-03-14 10:36:04+08:00 2013-05-20 22:58:08-07:00 GitHub Trey Hunner noreply@github.com trey@treyhunner.com 2022-03-14 02:36:04+00:00 2013-07-25 06:22:12+00:00 True False gmail treyhunner github treyhunner * master True carljm_django-model-utils.git carljm/django-model-utils.git https://github.com/carljm/django-model-utils.git
74 5885bcb3d4145ac159805b56b0b2fc4f13a09a7e f1aa25bcf83eb77eb6476c678d4375039127679a mgetka Steven Loria michal.getka@gmail.com sloria1@gmail.com 2020-08-10 10:37:23+02:00 2013-11-08 13:36:15-06:00 mgetka Steven Loria michal.getka@gmail.com sloria1@gmail.com 2020-08-10 08:37:23+00:00 2013-11-08 19:36:15+00:00 True False gmail gmail * dev True marshmallow-code_marshmallow.git marshmallow-code/marshmallow.git https://github.com/marshmallow-code/flask-marshmallow.git
75 3096a5caa6c37f0e6d5067214829e5b988bc35e7 f684f4ad243abfed03c53946a85493e03d272ec7 Tomas Susanka tsusanka@gmail.com 2020-04-30 14:49:33+02:00 2019-01-16 13:23:44+01:00 Tomas Susanka Pavol Rusnak tsusanka@gmail.com pavol@rusnak.io 2020-04-30 12:49:47+00:00 2019-01-16 12:46:13+00:00 False gmail gmail rusnak * main True trezor_trezor-firmware.git trezor/trezor-firmware.git https://github.com/trezor/trezor-firmware.git
76 edf1d67ff7322d3cf5b747fc0753704a41be098e 33c482078b0ffe85e13dd624cd985e7a69d15041 Gregory Todd Williams greg@evilfunhouse.com 2018-02-03 18:04:22-08:00 2016-02-17 12:57:08-08:00 GitHub Gregory Todd Williams noreply@github.com greg@evilfunhouse.com 2018-02-04 02:04:22+00:00 2016-02-17 20:57:08+00:00 True False evilfunhouse github evilfunhouse * master True kasei_attean.git kasei/attean.git https://github.com/kasei/attean.git
77 543ffdb82b4c5b6af4b135aa76bb988b1bce8ac6 a7cceacf16d2a0f959ec76935c89ccdce1707385 Gaetano Guerriero x.guerriero@tin.it 2018-04-25 15:30:41+02:00 2017-07-15 10:42:40+02:00 Gaetano Guerriero x.guerriero@tin.it 2018-04-25 13:30:41+00:00 2017-07-15 08:42:40+00:00 False tin tin * master True gaetano-guerriero_eyeD3-debian gaetano-guerriero/eyeD3-debian https://github.com/gaetano-guerriero/eyeD3-debian
78 bd2c6282a78954d996ecd989f774b18f6e5c4960 890441240ba4fa5d2f79d4e6e6c326a5f0542c6d Ionel Cristian Mărieș contact@ionelmc.ro 2023-12-13 18:17:28+02:00 2014-12-07 16:37:38+02:00 Ionel Cristian Mărieș contact@ionelmc.ro 2023-12-13 16:17:28+00:00 2014-12-07 14:37:38+00:00 False ionelmc ionelmc * master True ionelmc_python-lazy-object-proxy.git ionelmc/python-lazy-object-proxy.git https://github.com/ionelmc/python-lazy-object-proxy.git
79 134c792df3b6aa84de3e74e81a875493c95dcc2e 1174bff582e4a8c41bec10b7114aa202a32c6b48 Aarni Koskela Lasse Schuirmann akx@iki.fi lasse.schuirmann@gmail.com 2023-03-03 18:51:58+02:00 2015-09-22 23:21:20+02:00 GitHub Lasse Schuirmann noreply@github.com lasse.schuirmann@gmail.com 2023-03-03 16:51:58+00:00 2015-09-22 21:22:40+00:00 True False iki gmail github gmail * master True python-babel_babel python-babel/babel https://github.com/python-babel/flask-babel
80 8cba4a2011f70921d5130e0fbffa7e986ea82593 Chip Kent 5250374+chipkent@users.noreply.github.com 2021-05-19 12:46:19-06:00 GitHub noreply@github.com 2021-05-19 18:46:19+00:00 False users github * master True jpy-consortium_jpy jpy-consortium/jpy https://github.com/jpy-consortium/jpy
81 30167a535c7eac17888d50a08998bccf92469e19 Federico Capoano nemesis@ninux.org 2016-07-08 17:35:25+02:00 Federico Capoano nemesis@ninux.org 2016-07-08 15:35:25+00:00 False ninux ninux * master True openwisp_django-x509 openwisp/django-x509 https://github.com/openwisp/django-x509
82 3e3455ef9ae8f9751f8f1cdc8d08c7ccfdcd2b2f nefrob 25070989+nefrob@users.noreply.github.com 2023-10-27 11:06:58-06:00 GitHub noreply@github.com 2023-10-27 17:06:58+00:00 False users github * main True tox-dev_py-filelock tox-dev/py-filelock https://github.com/tox-dev/py-filelock
83 fdb29683d805781884262ace1df463746bc66caa Juho Vepsäläinen bebraw@gmail.com 2020-10-16 16:47:14+02:00 Juho Vepsäläinen bebraw@gmail.com 2020-10-16 14:47:14+00:00 False gmail gmail * develop True survivejs_webpack-merge.git survivejs/webpack-merge.git https://github.com/survivejs/webpack-merge.git
84 e8acf461093570fd519d4c16d9a18cd0b5bfaf2d c975a20ac362b8097978d9eda4e65a9ba5e25bc6 Matthew Fernandez matthew.fernandez@gmail.com 2020-03-12 18:43:26-07:00 2020-02-06 18:00:29-08:00 Matthew Fernandez matthew.fernandez@gmail.com 2020-03-13 01:43:26+00:00 2020-02-07 02:00:29+00:00 True False gmail gmail * main True Smattr_rumur.git Smattr/rumur.git https://github.com/Smattr/rumur.git
85 369106ced0f0ac43ac5b7a3fb3e98f95b811caa7 4327f5898a3fdf0cb2a29cfa5318ff61670bb97b Lucas Hoffmann lucc@posteo.de 2023-12-01 09:44:19+01:00 2019-06-21 22:34:35+02:00 Lucas Hoffmann lucc@posteo.de 2023-12-01 08:44:19+00:00 2019-06-23 08:33:32+00:00 False posteo posteo * main True lucc_khard lucc/khard https://github.com/lucc/khard
86 7ac26ed9c241d00e8688139b06e804badb25fa46 José Expósito jose.exposito89@gmail.com 2024-02-28 17:07:45+01:00 José Expósito jose.exposito89@gmail.com 2024-02-28 16:07:45+00:00 False gmail gmail * main True libinput_libinput libinput/libinput https://gitlab.freedesktop.org/libinput/libinput
87 706b2b23b0f35d8db5800a6d8c4b02d9e54bee4c ca39efa570755928384f9ad7f60e62f3535a5c6f Chris Simpkins git.simpkins@gmail.com 2017-10-19 20:48:46-04:00 2017-08-10 23:27:07-04:00 Chris Simpkins git.simpkins@gmail.com 2017-10-20 00:48:46+00:00 2017-08-11 03:27:07+00:00 False gmail gmail * master True source-foundry_Hack source-foundry/Hack https://github.com/source-foundry/Hack
88 fcf29c3e74cbc6aa5ab7e6a21a4bd85e63b0acd7 c724fbdbc3041446ba139feaa9bd2a7189706611 Pamela Fox Laura Beaufort pamela.fox@gmail.com 31420082+lbeaufort@users.noreply.github.com 2023-06-19 18:32:37-07:00 2019-05-06 12:32:42-04:00 GitHub David Lord noreply@github.com davidism@gmail.com 2023-06-20 01:32:37+00:00 2020-05-26 13:34:30+00:00 True False gmail users github gmail * main True pallets-eco_flask-sqlalchemy pallets-eco/flask-sqlalchemy https://github.com/pallets-eco/flask-sqlalchemy
89 b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192 Matthew Tretter m@tthewwithanm.com 2013-02-07 19:25:11-05:00 Matthew Tretter m@tthewwithanm.com 2013-02-08 00:47:45+00:00 False tthewwithanm tthewwithanm * master True matthewwithanm_pilkit matthewwithanm/pilkit https://github.com/matthewwithanm/pilkit
90 a1b157f8fe1e12b8028190c81d43e478df7484e5 Ian Cordasco graffatcolmingov@gmail.com 2016-07-19 12:32:21-05:00 Ian Cordasco graffatcolmingov@gmail.com 2016-07-19 17:32:21+00:00 False gmail gmail * main True PyCQA_flake8-polyfill.git PyCQA/flake8-polyfill.git https://github.com/PyCQA/flake8-polyfill.git
91 8ad6fe676e014ec716ee8c4ffcca479eb74f5610 2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2 Brian Quinlan brian@sweetapp.com 2020-06-29 17:46:16-07:00 2018-06-27 13:29:57-07:00 Brian Quinlan brian@sweetapp.com 2020-06-30 00:46:16+00:00 2018-06-27 20:29:57+00:00 True False sweetapp sweetapp * master True google_pybadges.git google/pybadges.git https://github.com/google/pybadges.git
92 788e936fc80cbbe74896d3ff86d2a84d2ceeb989 257e3aca40db8e2cdc004afbc6c8f9549b628a2a Pierre Sassoulas Carlos Coêlho pierre.sassoulas@gmail.com carlospecter@gmail.com 2022-11-30 11:45:41+01:00 2019-07-29 21:46:10-03:00 Pierre Sassoulas GitHub pierre.sassoulas@gmail.com noreply@github.com 2022-11-30 11:23:26+00:00 2019-07-30 00:46:10+00:00 True False gmail gmail github * master True PyCQA_prospector PyCQA/prospector https://github.com/PyCQA/prospector
93 cd1f8eb80fe585557f95829fa2e990d5ab48b83e 30b0f836ff28750fcadfe5511b35e8b00c0de1e5 Kostya Esmukov ijl kostya@esmukov.ru ijl@mailbox.org 2021-03-28 02:23:58+03:00 2015-08-31 23:43:38+00:00 Kostya Esmukov ijl kostya@esmukov.ru ijl@mailbox.org 2021-03-27 23:23:58+00:00 2015-08-31 23:44:42+00:00 False esmukov mailbox esmukov mailbox * master True geopy_geopy geopy/geopy https://github.com/geopython/geolinks.git
94 86945f9a1f7cae10a9ac9ccf4b41ce9ddfabe14c c2c44f0ffc659ebdd1a1faf334c845aefdd371e1 Bruno Oliveira Piotr Banaszkiewicz nicoddemus@gmail.com piotr@banaszkiewicz.org 2024-03-07 19:12:19-03:00 2014-01-22 11:37:02+01:00 GitHub Piotr Banaszkiewicz noreply@github.com piotr@banaszkiewicz.org 2024-03-07 22:12:19+00:00 2014-01-22 10:37:02+00:00 False gmail banaszkiewicz github banaszkiewicz * main True pytest-dev_pytest.git pytest-dev/pytest.git https://github.com/pytest-dev/pytest.git
95 be46440c9b9984b7b091cde504f96e82ee47acc8 b293438ff8f1b39cad9329028b135c768f34c137 Sasha Rudan Gavin M. Roy mprinc@gmail.com gavinr@aweber.com 2022-11-07 00:45:51+01:00 2015-09-02 13:52:56-04:00 GitHub Gavin M. Roy noreply@github.com gavinr@aweber.com 2022-11-06 23:45:51+00:00 2015-09-02 17:52:56+00:00 True False gmail aweber github aweber * main True pika_pika pika/pika https://github.com/pika/pika
96 b51d43ba182d776cbf073c7a796010efc63eee1d 7057bbbf5abd0b2c39940bbc3fb4a253ff920e59 Matt Richards Kelsey Jordahl 45483497+m-richards@users.noreply.github.com kjordahl@alum.mit.edu 2023-09-13 19:14:10+10:00 2013-10-16 07:59:30-04:00 GitHub Kelsey Jordahl noreply@github.com kjordahl@alum.mit.edu 2023-09-13 09:14:10+00:00 2013-10-23 01:45:21+00:00 False users alum github alum * main True geopandas_geopandas.git geopandas/geopandas.git https://github.com/geopandas/geopandas.git
97 c79b6e3e1e7faae5a36d1396c9fce0e0987db8d7 Steven Silvester steven.silvester@ieee.org 2023-12-22 09:43:02-06:00 GitHub noreply@github.com 2023-12-22 15:43:02+00:00 False ieee github * main True jupyter_jupyter-sphinx.git jupyter/jupyter-sphinx.git https://github.com/jupyter/jupyter-sphinx.git
98 966cce897c0a25485918f945eb83968d04933b2d e94e9a8b1fe87b82f3d1eb2269898d8e62b38f81 Tres Seaver tseaver@palladion.com 2023-11-09 15:31:48-05:00 2023-11-04 14:10:26-04:00 GitHub Tres Seaver noreply@github.com tseaver@palladion.com 2023-11-09 20:31:48+00:00 2023-11-04 18:10:26+00:00 True False palladion github palladion * main True Pylons_venusian Pylons/venusian https://github.com/Pylons/venusian
99 946926a20e47543c83f7a2cd2acc9f33d246b19d d5e671f1ce4b4086a7fbfb06efae14dae9a5fccb jjjake jake jake@archive.org 2022-04-26 11:01:16-07:00 2016-02-18 15:42:43-08:00 GitHub jake noreply@github.com jake@archive.org 2022-04-26 18:01:16+00:00 2016-02-18 23:42:43+00:00 True False archive github archive * master True jjjake_internetarchive.git jjjake/internetarchive.git https://github.com/jjjake/internetarchive.git
100 1d9c1e82f33686c80e49edd041fcd8d0253afdb1 8544eabcb99f3bc58052e722e8317ad7a9bfd620 Andrey Kurilin Dina Belova andr.kurilin@gmail.com dbelova@mirantis.com 2021-06-16 18:19:25+03:00 2016-12-06 11:05:15-08:00 Andrey Kurilin Dina Belova andr.kurilin@gmail.com dbelova@mirantis.com 2021-06-16 15:31:48+00:00 2017-01-10 19:25:00+00:00 False gmail mirantis gmail mirantis * master True openstack_rally.git openstack/rally.git https://github.com/openstack/rally.git
101 c484eab8b19ccc8fb63495077297554055f30514 70d28de924a200102d98d55757c986ab2b839753 Kai Ren tyranron tyranron@gmail.com 2023-07-04 15:16:01+03:00 2021-04-13 13:25:03+03:00 GitHub tyranron noreply@github.com tyranron@gmail.com 2023-07-04 12:16:01+00:00 2021-04-13 10:25:03+00:00 False gmail github gmail * master True coturn_coturn coturn/coturn https://github.com/coturn/coturn
102 1ddc368d63b12f7c61826c266ed80db40f32c0c6 841005cbfaa6a3d3f97c96b5228838eba3f41ab9 David Fisher ddfisher@dropbox.com 2017-01-09 15:58:25-08:00 2016-04-11 13:53:06-07:00 David Fisher ddfisher@dropbox.com 2017-01-09 23:59:09+00:00 2016-04-11 21:43:08+00:00 False dropbox dropbox * master True python_typed_ast.git python/typed/ast.git https://github.com/python/typed_ast.git
103 a10b49d7819986a8f0086ff2f3a20b15569584f0 422b3ede6532a10f6171388cd7d4d940e872d044 John Siirola jsiirola@users.noreply.github.com 2019-11-07 09:15:05-07:00 2018-10-27 18:03:23-06:00 GitHub John Siirola noreply@github.com jsiirola@users.noreply.github.com 2019-11-07 16:15:05+00:00 2018-10-28 00:06:46+00:00 True False users github users * master True pyutilib_pyutilib pyutilib/pyutilib https://github.com/pyutilib/pyutilib
104 a112f9a9c6f901f8f249ea40efbfee2aeb36644e Kirill Pavlov k@p99.io 2017-10-30 22:44:25+08:00 Kirill Pavlov k@p99.io 2017-10-30 14:50:08+00:00 False p99 p99 * master True pavlov99_json-rpc pavlov99/json-rpc https://github.com/pavlov99/json-rpc
105 0d3baf27119a4265f7fdf661ca1366e7bdeda4ba 2021e1904a53a1eb7509e488b3216136c5b32f35 Ross Barnowski David Breese rossbar@berkeley.edu dabreese00@gmail.com 2022-10-25 15:23:41-07:00 2022-01-11 22:11:26-06:00 GitHub noreply@github.com 2022-10-25 22:23:41+00:00 2022-01-12 04:11:26+00:00 False berkeley gmail github * main True pygraphviz_pygraphviz.git pygraphviz/pygraphviz.git https://github.com/pygraphviz/pygraphviz.git
106 d1041acfbaabe3df0642f3312f9f0148fe819a7a Rudolf Polzer rpolzer@google.com 2014-06-23 12:15:16+02:00 Rudolf Polzer rpolzer@google.com 2014-06-25 18:26:36+00:00 False google google * master True google_xsecurelock google/xsecurelock https://github.com/google/xsecurelock
107 9e3f1d9ba4e4cfee82e2bef93fee4daaa7d22bf9 7c1ee28f13fe9c947d956d9b2ba298cba4776e1a Bastien Gérard Ross Lawley bast.gerard@gmail.com ross.lawley@gmail.com 2024-03-10 12:56:26+01:00 2012-09-27 10:26:22+00:00 GitHub Ross Lawley noreply@github.com ross.lawley@gmail.com 2024-03-10 11:56:26+00:00 2012-09-27 10:26:22+00:00 True False gmail github gmail * master True mongoengine_mongoengine mongoengine/mongoengine https://github.com/mongoengine/flask-mongoengine
108 08d76df72883f18f651826d81dbf53b28fa78a33 ddbefff7edcf47906373c9fa1175ba7a8927e446 Karen Etheridge ether@cpan.org 2017-07-31 09:25:50-07:00 2017-05-11 11:26:49+02:00 Karen Etheridge ether@cpan.org 2017-07-31 16:25:50+00:00 2017-05-11 09:26:49+00:00 False cpan cpan * master True karenetheridge_B-Hooks-OP-Check karenetheridge/B-Hooks-OP-Check https://github.com/karenetheridge/B-Hooks-OP-Check
109 d0e639b0e5c6e4d763169a18bf2972ce55cec385 24eba1bbc0aafc9e503747e688cacfdb88ad2fb8 Karol Baryła Blake Eggleston git@baryla.org bdeggleston@gmail.com 2023-10-27 21:22:57+02:00 2013-06-03 10:11:38-07:00 GitHub Blake Eggleston noreply@github.com bdeggleston@gmail.com 2023-10-27 19:22:57+00:00 2013-06-03 17:11:38+00:00 False baryla gmail github gmail * master True datastax_python-driver.git datastax/python-driver.git https://github.com/datastax/python-driver.git
110 68fdf01a9144a0a970eb8c0f8f89e303bab01cca 8d52ba7a184305e474eddd1f3f7cacd0e26c2cbe Benjamin Gruenbaum Petka Antonov inglor@gmail.com petka_antonov@hotmail.com 2015-12-29 16:59:44+02:00 2013-11-18 01:34:54+02:00 Benjamin Gruenbaum Petka Antonov inglor@gmail.com petka_antonov@hotmail.com 2015-12-29 14:59:44+00:00 2013-11-17 23:34:54+00:00 False gmail hotmail gmail hotmail * master True petkaantonov_bluebird.git petkaantonov/bluebird.git https://github.com/petkaantonov/bluebird.git
111 620ee415f1d4a30e7de1d2bf995eee7f73087881 fafacbff1595d5e94c7afb633ec84ff1e7229ebb Michael Merickel Hunter Senft-Grupp michael@merickel.org huntcsg@gmail.com 2017-06-11 23:21:50-05:00 2016-06-04 16:11:20-07:00 Michael Merickel Hunter Senft-Grupp michael@merickel.org huntcsg@gmail.com 2017-06-12 04:21:50+00:00 2016-06-04 23:11:20+00:00 False merickel gmail merickel gmail * main True Pylons_plaster_pastedeploy.git Pylons/plaster/pastedeploy.git https://github.com/Pylons/plaster_pastedeploy.git
112 aeed204942a7305dc28ae1523a9befb3cb053fe8 James Tauber jtauber@jtauber.com 2016-05-18 11:23:50+08:00 James Tauber jtauber@jtauber.com 2016-05-18 03:23:50+00:00 False jtauber jtauber * master True jtauber_pyuca jtauber/pyuca https://github.com/jtauber/pyuca
113 3890e8e4641974f4e3194db3ade7ef214479d5be cb947f6d12d125fd84a051f65808fb4a88825307 Stan Hu Bronwyn Barnett stanhu@gmail.com bbarnett@gitlab.com 2021-12-03 01:09:24+00:00 2021-11-15 18:57:26+00:00 Stan Hu Bronwyn Barnett stanhu@gmail.com bbarnett@gitlab.com 2021-12-03 01:09:24+00:00 2021-11-15 18:57:26+00:00 True False gmail gitlab gmail gitlab * master True gitlab-org_ruby_gems_gitlab-mail_room.git gitlab-org/ruby/gems/gitlab-mail/room.git https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git
114 13716d8b48c8380e3e0eb962a9ea2d452182db57 Jan Wassenberg janwas@google.com 2016-03-01 15:44:10+01:00 Jan Wassenberg janwas@google.com 2016-03-01 14:44:10+00:00 False google google * master True google_highwayhash google/highwayhash https://github.com/google/highwayhash
115 6088ce10b9afad415ebe3fc96cb40e271a0cf910 Daniel P. Berrangé berrange@redhat.com 2020-05-01 14:04:51+01:00 Daniel P. Berrangé berrange@redhat.com 2020-05-05 11:10:18+00:00 False redhat redhat * master True libvirt_libvirt-python.git libvirt/libvirt-python.git https://gitlab.com/libvirt/libvirt-python.git
116 2c6b0a65bee700b42c8d0806364f4fc4ebddcc52 03993c4b41ac65105f9a118c6b4624b692ddea30 David I. Lehn dlehn@digitalbazaar.com 2024-02-20 12:50:59-05:00 2015-10-08 19:06:04-04:00 David I. Lehn dil@lehn.org dlehn@digitalbazaar.com 2024-02-20 17:53:04+00:00 2015-10-08 23:06:04+00:00 False digitalbazaar lehn digitalbazaar * master True digitalbazaar_pyld digitalbazaar/pyld https://github.com/digitalbazaar/pyld
117 dd61fb169bbcf43d382ffbd03c7f6bfd9e97b18b 797757bde2e305e035bcba65a93993ecd0716398 Rasmus Andersson rasmus@notion.se 2023-04-20 13:47:14-07:00 2017-08-22 10:23:13-07:00 Rasmus Andersson rasmus@notion.se 2023-04-20 20:47:14+00:00 2017-08-22 17:28:57+00:00 False notion notion * master True rsms_inter rsms/inter https://github.com/rsms/inter
118 9c1a99f065f5a9acb2ddb4fb47e0bfa1e4ccf3f4 44a829cf8946707bd08ed17cc2342b69b9d2cab1 Jérémie Astori Jake Luer jeremie@astori.fr jake@alogicalparadox.com 2017-12-15 21:17:23-05:00 2014-01-29 17:36:01-05:00 GitHub Jake Luer noreply@github.com jake@alogicalparadox.com 2017-12-16 02:17:23+00:00 2014-01-29 22:36:01+00:00 True False astori alogicalparadox github alogicalparadox * main True chaijs_chai chaijs/chai https://github.com/chaijs/chai
119 58699464ee1f3d2707f5a8d5a699dd1dd3dbec9e 232cae5253382d8d8f7678dbda1ee37424904cab Simon McVittie smcv@collabora.com smcv@debian.org 2022-09-06 18:35:51+01:00 2018-01-29 08:47:56+00:00 Simon McVittie smcv@collabora.com smcv@debian.org 2022-09-06 17:35:51+00:00 2018-01-29 08:47:56+00:00 False collabora debian collabora debian * master True dbus_dbus-python dbus/dbus-python https://gitlab.freedesktop.org/dbus/dbus-python
120 4ad46bb0c666d1b04222c1c5f55e1566c8763d60 d4cfa1f208803cb95a4e2261bd2c3fc132f4b347 Jon Dufresne Petr Viktorin jon.dufresne@gmail.com pviktori@redhat.com 2017-12-12 01:29:47-08:00 2017-11-29 13:59:55+01:00 Petr Viktorin encukou@gmail.com pviktori@redhat.com 2017-12-12 09:29:47+00:00 2017-11-29 14:04:24+00:00 False gmail redhat gmail redhat * main True python-ldap_python-ldap python-ldap/python-ldap https://github.com/python-ldap/python-ldap
121 3fcf3380570d1d0bcefe9c07f1921ba4fd2754ad 3b766a866fc78226e43a9efe692220bbcb87e399 David Lord Markus Unterwaditzer davidism@gmail.com markus@unterwaditzer.net 2023-06-28 11:52:24-07:00 2015-04-26 14:06:29+02:00 GitHub Markus Unterwaditzer noreply@github.com markus@unterwaditzer.net 2023-06-28 18:52:24+00:00 2015-04-26 12:06:29+00:00 True False gmail unterwaditzer github unterwaditzer * main True pallets_click.git pallets/click.git https://github.com/pallets/click.git
122 566602cc1a34224b3ef0e88298d865a7249c65e4 a5f5b6f0420786fae6120d54fc8eac9b0f22b745 Kirk Byers ktbyers@twb-tech.com 2023-11-17 09:35:03-08:00 2023-11-15 10:48:11-08:00 GitHub noreply@github.com 2023-11-17 17:35:03+00:00 2023-11-15 18:48:11+00:00 True False twb-tech github * develop True ktbyers_netmiko ktbyers/netmiko https://github.com/ktbyers/netmiko
123 136802a5b2e40735b23635c63b97f69f75c71679 7026b4a2975340fd3535cfebff39171a07008688 Carlos Cordoba dalthviz ccordoba12@gmail.com d.althviz10@uniandes.edu.co 2022-12-10 22:15:58-05:00 2022-10-27 13:33:47-05:00 GitHub dalthviz noreply@github.com d.althviz10@uniandes.edu.co 2022-12-11 03:15:58+00:00 2022-10-27 18:33:47+00:00 True False gmail uniandes github uniandes * master True spyder-ide_qtawesome spyder-ide/qtawesome https://github.com/spyder-ide/qtawesome
124 d81e7114fc4f3e805d3de4dfd8753e53b1b591c9 b13de9045fe41c913cb2ad651eefba6c440a3a9a Josh Cooper Sebastian Miclea 737664+joshcooper@users.noreply.github.com sebastian.miclea@puppet.com 2023-12-04 16:56:05-08:00 2020-04-06 17:08:24+03:00 GitHub noreply@github.com 2023-12-05 00:56:05+00:00 2020-04-06 14:08:24+00:00 True False users puppet github * main True puppetlabs_facter.git puppetlabs/facter.git https://github.com/puppetlabs/facter.git
125 72a11cdb9bf8228df6daf00ac2d192a414051a2b b80894938070fcec09a6dec7c8648f4d167fc45a Steven Loria sloria1@gmail.com 2020-10-20 23:38:24-04:00 2019-03-09 17:18:42-05:00 GitHub Steven Loria noreply@github.com sloria1@gmail.com 2020-10-21 03:38:24+00:00 2019-03-09 22:40:02+00:00 False gmail github gmail * dev True marshmallow-code_flask-marshmallow.git marshmallow-code/flask-marshmallow.git https://github.com/marshmallow-code/flask-marshmallow.git
126 129ce46dc40e72147385082736475c2cc8926968 Joao Eriberto Mota Filho eriberto@eriberto.pro.br 2021-08-20 15:30:19-03:00 Joao Eriberto Mota Filho eriberto@eriberto.pro.br 2021-08-20 18:35:22+00:00 False eriberto eriberto * master True resurrecting-open-source-projects_outguess resurrecting-open-source-projects/outguess https://github.com/resurrecting-open-source-projects/outguess
127 06ba03b183a237cba774a827460da116042dcb02 c474d99907a19deea5a4cb7ee3ebea1add698006 Daniel Althviz Moré Gonzalo Peña-Castellanos 16781833+dalthviz@users.noreply.github.com goanpeca@gmail.com 2023-10-27 14:15:05-05:00 2015-03-01 19:03:19+01:00 GitHub Gonzalo Peña-Castellanos noreply@github.com goanpeca@gmail.com 2023-10-27 19:15:05+00:00 2015-03-01 18:03:19+00:00 True False users gmail github gmail * master True spyder-ide_qtpy spyder-ide/qtpy https://github.com/spyder-ide/qtpy
128 6bad1860740be2a6ab87414773fae8691a86d7d2 d90770d185c28742ee750a732aa3749ff58ff158 Christopher Gallo underscorephil cgallo@us.ibm.com underscorephil@gmail.com 2024-03-05 12:43:06-06:00 2014-07-08 12:46:47-05:00 Christopher Gallo underscorephil cgallo@us.ibm.com underscorephil@gmail.com 2024-03-05 18:43:06+00:00 2014-07-08 17:46:47+00:00 True False us gmail us gmail * master True softlayer_softlayer-python softlayer/softlayer-python https://github.com/softlayer/softlayer-python
129 813a5f94a40fcd69107252af4d7f1f3a9abd8586 3eae6f4fff3fd01a40f56b19f02e0690266fc824 Denis Bardadym bardadymchik@gmail.com 2016-12-10 13:36:05+03:00 2014-03-08 12:37:36+04:00 Denis Bardadym bardadymchik@gmail.com 2016-12-10 10:36:05+00:00 2014-03-08 08:39:25+00:00 True False gmail gmail * master True shouldjs_should.js.git shouldjs/should.js.git https://github.com/shouldjs/should.js.git
130 8dfc19905e8f15e4f96d8ec6520b762076212caa 7c6ed297ddaad3c2f78fed1c3b6bb548c6f658e1 Steven Silvester steven.silvester@ieee.org 2023-09-09 21:49:39-05:00 2022-03-31 11:54:23-05:00 GitHub noreply@github.com 2023-09-10 02:49:39+00:00 2022-03-31 16:54:23+00:00 False ieee github * main True jupyter_terminado jupyter/terminado https://github.com/jupyter/terminado
131 f2378a19388f33c48a859891411721c8964ba007 1e8e049887206b7933b8cc3c7ceeda864fb4c05e Christian Clauss James Socol cclauss@me.com me@jamessocol.com 2022-10-02 00:51:48+02:00 2015-01-10 14:44:37-05:00 GitHub James Socol noreply@github.com me@jamessocol.com 2022-10-01 22:51:48+00:00 2015-01-11 17:42:19+00:00 False me jamessocol github jamessocol * master True django-waffle_django-waffle django-waffle/django-waffle https://github.com/django-waffle/django-waffle
132 a04baae9d96e90955df751e1c1da26589d6e0e30 d9823fcc76a6cdad4cc68ad138cc5bbbf810a764 Stefan Oderbolz oderbolz@gmail.com stefan.oderbolz@liip.ch 2015-05-26 01:35:12+02:00 2015-05-24 16:25:22+02:00 Stefan Oderbolz oderbolz@gmail.com stefan.oderbolz@liip.ch 2015-05-25 23:35:12+00:00 2015-05-24 14:32:18+00:00 True False gmail liip gmail liip * develop True metaodi_osmapi.git metaodi/osmapi.git https://github.com/metaodi/osmapi.git
133 c1df9aa7cbfd8c7e64eaadd8027e9669b5cd5a4e f43f8495c79fa9374ad2a5e5011f31d555e0cdec michalbiesek Christopher M. Cantalupo michal.biesek@intel.com christopher.m.cantalupo@intel.com 2021-03-01 08:28:41+01:00 2015-03-31 10:12:43-07:00 GitHub Christopher M. Cantalupo noreply@github.com christopher.m.cantalupo@intel.com 2021-03-01 07:28:41+00:00 2015-04-08 19:14:32+00:00 True False intel github intel * master True kilobyte_memkind kilobyte/memkind https://github.com/kilobyte/memkind
134 0ab63df6732eafccf36cd3ee2ceb888fde3ae820 e0e50841f91c1d2c77145f475aab67bf02ce1973 David Lord G. Fioravante davidism@gmail.com 40348770+northernSage@users.noreply.github.com 2023-06-28 12:01:56-07:00 2020-08-31 13:22:39-03:00 GitHub noreply@github.com 2023-06-28 19:01:56+00:00 2020-08-31 16:22:39+00:00 True False gmail users github * main True pallets_itsdangerous pallets/itsdangerous https://github.com/pallets/itsdangerous
135 6d305026c5c415d07d2bcd15bf3e8224423902f1 65577d13992ba086bbba7882dda352d7b232b385 kridai Doug Black kridaigoswami@gmail.com dblack@twilio.com 2023-09-29 13:11:05+05:30 2017-07-27 11:56:42-07:00 GitHub Doug Black noreply@github.com dblack@twilio.com 2023-09-29 07:41:05+00:00 2017-07-27 18:56:42+00:00 False gmail twilio github twilio * main True twilio_twilio-python twilio/twilio-python https://github.com/twilio/twilio-python
136 1604f672facd3eb04260464d7a4c982920b7536d d5420216df8a35c16e569a353b41029ec667ebf3 Gael Pasgrimaud gael@gawel.org 2016-10-14 16:48:01+02:00 2016-10-14 10:55:20+02:00 Gael Pasgrimaud gael@gawel.org 2016-10-14 14:56:45+00:00 2016-10-14 08:55:20+00:00 False gawel gawel * master True gawel_panoramisk.git gawel/panoramisk.git https://github.com/gawel/panoramisk.git
137 c89b1ff65b86ae25c51acfa646b1edcf7beb0f23 ab769e86b0e516d37a52038bb337053addf9af4a James Coglan jcoglan@gmail.com 2016-03-25 17:42:53+00:00 2013-09-26 08:48:20+01:00 James Coglan jcoglan@gmail.com 2016-03-25 17:42:53+00:00 2013-09-26 07:48:20+00:00 True False gmail gmail * master True faye_faye faye/faye https://github.com/faye/faye
138 ec47bd12bf438e7b416035e913fc8f114242242d fdf55c2817c9a457de4d5609cabfda0aa0620dc1 Zuul Samuel Merritt zuul@review.opendev.org sam@swiftstack.com 2022-12-13 19:51:08+00:00 2012-11-21 11:08:37-08:00 Gerrit Code Review Samuel Merritt review@openstack.org sam@swiftstack.com 2022-12-13 19:51:08+00:00 2012-11-21 19:23:15+00:00 True False review swiftstack openstack swiftstack * master True openstack_swift.git openstack/swift.git https://github.com/openstack/swift.git
139 6e1fc74ed936860f9609f964d48d63f380c58170 Andreas Strikos astrikos@ripe.net 2016-01-16 17:11:40+01:00 Andreas Strikos astrikos@ripe.net 2016-01-16 16:11:40+00:00 False ripe ripe * master True RIPE-NCC_ripe-atlas-cousteau.git RIPE-NCC/ripe-atlas-cousteau.git https://github.com/RIPE-NCC/ripe-atlas-cousteau.git
140 0383474ce6e4c6f173b61ecac91e6c3faaec94e8 2cc5f14309704d80063a750b85861cb86dc40e7f Vladimir Rusinov vrusinov vrusinov@google.com 2017-10-27 13:59:06+01:00 2016-02-03 11:48:09-08:00 Vladimir Rusinov vrusinov@google.com 2017-10-27 12:59:06+00:00 2016-02-05 20:41:41+00:00 False google google * master True google_python-gflags.git google/python-gflags.git https://github.com/google/python-gflags.git
141 3be3d101ce2f9c54bae2a0d8824298f0501f2ce0 1094a4c862d1b600a6a93d04f276809f5cd03701 unknown Filip Kapusta a.jakubowski@mdbootstrap.com f.kapusta@mdbootstrap.com 2022-03-24 10:44:03+01:00 2022-03-23 15:12:15+01:00 unknown Filip Kapusta a.jakubowski@mdbootstrap.com f.kapusta@mdbootstrap.com 2022-03-24 09:44:03+00:00 2022-03-23 14:12:15+00:00 False mdbootstrap mdbootstrap * main True mdbootstrap_perfect-scrollbar mdbootstrap/perfect-scrollbar https://github.com/mdbootstrap/perfect-scrollbar
142 350b191468d1a701d945a062bbf4df9fbdaaaaae geemus geemus@gmail.com 2014-10-15 09:03:48-05:00 geemus geemus@gmail.com 2014-10-15 14:03:48+00:00 False gmail gmail * master True heroku_netrc heroku/netrc https://github.com/heroku/netrc
143 ebffdc2ca0a43fd87dfd270bbb16007591139626 48b19a2272867854f097058dda4f55d05d93e28d Pierre Fersing Roger Light pierre.fersing@bleemeo.com roger@atchoo.org 2024-02-10 13:48:25+00:00 2014-03-27 12:33:15+00:00 Pierre Fersing Roger Light pierre.fersing@bleemeo.com roger@atchoo.org 2024-02-10 13:48:25+00:00 2014-03-27 12:33:15+00:00 False bleemeo atchoo bleemeo atchoo * master True eclipse_paho.mqtt.python.git eclipse/paho.mqtt.python.git https://github.com/eclipse/paho.mqtt.python.git
144 e51433d361736806896f10d971c0f28556bb94a4 d424c38e59bca66492f90817a5990922b4b004d0 Jordan Cook jordan.cook.git@proton.me jordan.cook@pioneer.com 2024-02-07 13:11:53-06:00 2021-03-03 08:11:20-06:00 Jordan Cook jordan.cook.git@proton.me jordan.cook@pioneer.com 2024-02-07 19:18:49+00:00 2021-03-03 14:27:30+00:00 False proton pioneer proton pioneer * main True requests-cache_requests-cache requests-cache/requests-cache https://github.com/requests-cache/requests-cache
145 b00e214476c8a399157234106b28df993f243ce4 fc5abc05876bbffb8aa8776868492a5bcb596c99 Eemeli Aro Nick Fitzgerald eemeli@mozilla.com fitzgen@gmail.com 2022-11-09 23:47:17+02:00 2015-08-28 15:15:34-07:00 GitHub Nick Fitzgerald noreply@github.com fitzgen@gmail.com 2022-11-09 21:47:17+00:00 2015-09-10 14:57:30+00:00 False mozilla gmail github gmail * master True mozilla_source-map mozilla/source-map https://github.com/mozilla/source-map
146 e2d247f40339088710ba2322bea3e44f801acfac David Golden dagolden@cpan.org 2013-06-09 14:54:54-04:00 David Golden dagolden@cpan.org 2013-06-09 18:54:54+00:00 False cpan cpan * master True dagolden_math-random-oo.git dagolden/math-random-oo.git https://github.com/dagolden/math-random-oo.git
147 7d375e1b7502995703fb3c1729ed4f746d169751 Luis R. Rodriguez mcgrof@suse.com 2014-03-07 14:28:50-08:00 Johannes Berg johannes.berg@intel.com 2014-03-28 08:56:54+00:00 False suse intel * master True pub_scm_linux_kernel_git_jberg_iw.git pub/scm/linux/kernel/git/jberg/iw.git https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git
148 d479009d79374dc4a56c9f4346b1af38f5ac182c 3a995294a99a00a62fb451c8dc3f0c404c8e92f5 Joe Hamman jhamman1@gmail.com jhamman@ucar.edu 2022-02-10 11:44:51-08:00 2017-10-27 18:24:02-07:00 GitHub noreply@github.com 2022-02-10 19:44:51+00:00 2017-10-28 01:24:02+00:00 False gmail ucar github * main True pydata_xarray pydata/xarray https://github.com/pydata/xarray
149 c5dbcb4f349046389828ccf645a2e9446f2bba72 27c2db2bf26039bef41323c964bc4e0317a7b4f5 John Sirois john.sirois@gmail.com 2024-02-13 21:24:16-08:00 2024-02-09 21:40:18-08:00 GitHub noreply@github.com 2024-02-14 05:24:16+00:00 2024-02-10 05:40:18+00:00 False gmail github * main True pantsbuild_pex.git pantsbuild/pex.git https://github.com/pantsbuild/pex.git
150 069c9d190c67ba55fb48b716422bb9b38b0d23c4 8d90a86cdf4da7bc1ea520ef5701a63780638c13 Luca Comellini Michael Pleshakov luca.com@gmail.com michael@nginx.com 2023-07-25 17:31:34-07:00 2018-05-30 14:49:53+01:00 GitHub Michael Pleshakov noreply@github.com michael@nginx.com 2023-07-26 00:31:34+00:00 2018-05-30 13:49:53+00:00 False gmail nginx github nginx * main True nginxinc_nginx-prometheus-exporter nginxinc/nginx-prometheus-exporter https://github.com/nginxinc/nginx-prometheus-exporter
151 be8871192aa75398198184699097661ea5ba3142 ba1ef7a8f47a6140f8323a393f0e04f818f5f52d Freek Dijkstra freek@macfreek.nl 2021-04-27 21:17:41+02:00 2021-02-28 15:10:33+01:00 Freek Dijkstra freek@macfreek.nl 2021-04-27 19:17:41+00:00 2021-02-28 14:10:33+00:00 False macfreek macfreek * master True sphinx-contrib_restbuilder.git sphinx-contrib/restbuilder.git https://github.com/sphinx-contrib/restbuilder.git
152 1c6af940c08ca2fdb142916974a192ab6ff9ea7c Michael Howitz mh@gocept.com 2023-04-14 08:03:36+02:00 GitHub noreply@github.com 2023-04-14 06:03:36+00:00 False gocept github * master True zopefoundation_zope.component zopefoundation/zope.component https://github.com/zopefoundation/zope.component
153 d01f4593c2fa9547c9912ac443ee67b9604b3e88 87d2f69a591b29c254f6ce1974a8347d746bfe9f Brendan Gregg brendan.d.gregg@gmail.com 2019-01-18 09:11:03-08:00 2016-02-05 13:36:06-08:00 yonghong-song Brendan Gregg ys114321@gmail.com bgregg@netflix.com 2019-01-18 17:11:03+00:00 2016-02-05 21:49:28+00:00 False gmail gmail netflix * master True iovisor_bcc.git iovisor/bcc.git https://github.com/iovisor/bcc.git
154 d60918099930bd1809e56a9227ab3e5bf0f06a94 04693fc6beb2d2dbb3aa8d33932a171900ea239c Amethyst Reese John Reese amethyst@n7.gg john@noswap.com 2023-04-30 13:56:56-07:00 2018-11-05 18:23:24-08:00 Amethyst Reese John Reese amethyst@n7.gg john@noswap.com 2023-04-30 21:16:24+00:00 2018-11-06 02:23:24+00:00 False n7 noswap n7 noswap * main True diff-match-patch-python_diff-match-patch diff-match-patch-python/diff-match-patch https://github.com/diff-match-patch-python/diff-match-patch
155 1d475905976bb91dd77f1f4383b28307f98e19ed 0d125a567e7ffa9dfe285df8c436783d29594c79 Nate Prewitt Daniel G. Taylor nate.prewitt@gmail.com danielgtaylor@gmail.com 2022-06-16 10:59:27-06:00 2013-08-09 13:31:16-07:00 GitHub Daniel G. Taylor noreply@github.com danielgtaylor@gmail.com 2022-06-16 16:59:27+00:00 2013-08-09 20:31:16+00:00 True False gmail github gmail * develop True boto_botocore boto/botocore https://github.com/boto/botocore
156 cdee20eb79b3623e200545b3eb44e72c08697acf fc679cf33ed2c65c2deaf9235f08889ef95dd2f2 Erik Michaels-Ober sferik@gmail.com 2013-12-31 04:18:39+01:00 2012-10-07 11:08:23-07:00 Erik Michaels-Ober sferik@gmail.com 2013-12-31 03:18:39+00:00 2012-10-07 18:08:28+00:00 False gmail gmail * master True sferik_twitter sferik/twitter https://github.com/sferik/twitter
157 c79ee1e8ba5af3ce1c627882a6b75c1c8fb150dc 3ce1cbdc192a709b51290725506c31a8959423ad Michael R. Crusoe michael.crusoe@gmail.com 1330696+mr-c@users.noreply.github.com 2023-08-14 17:57:54+02:00 2019-07-29 18:44:11+02:00 Michael R. Crusoe GitHub 1330696+mr-c@users.noreply.github.com noreply@github.com 2023-08-14 16:19:43+00:00 2019-07-29 16:44:11+00:00 False gmail users users github * main True common-workflow-language_schema_salad common-workflow-language/schema/salad https://github.com/common-workflow-language/schema_salad
158 892ea9e222ca7148551c3d00bb37ce9e24316b16 Aleksi Häkli aleksi.hakli@iki.fi 2022-01-26 12:00:58+02:00 Aleksi Häkli aleksi.hakli@iki.fi 2022-01-26 10:00:58+00:00 False iki iki * master True jazzband_django-recurrence jazzband/django-recurrence https://github.com/jazzband/django-recurrence
159 905cba2b0591ef09edcbb800c84dc4cbd2f97a1e 915f126b9484ad7fe6df0d7f323bd55f93f1c917 Geremia Taglialatela Nathan Esquenazi tagliala@users.noreply.github.com nesquena@gmail.com 2021-12-07 14:05:52+01:00 2012-11-08 12:01:59-08:00 GitHub Nathan Esquenazi noreply@github.com nesquena@gmail.com 2021-12-07 13:05:52+00:00 2012-11-08 20:01:59+00:00 True False users gmail github gmail * master True nesquena_rabl nesquena/rabl https://github.com/nesquena/rabl
160 679935b82e8177799c34981e8f384a5466840301 0a6b00dd73c2c49d38e50d01add558e1bb4f3c92 Ionel Cristian Mărieș Marc Schlaich contact@ionelmc.ro marc.schlaich@googlemail.com 2021-09-28 14:02:52+03:00 2014-11-24 18:15:44+01:00 GitHub Marc Schlaich noreply@github.com marc.schlaich@googlemail.com 2021-09-28 11:02:52+00:00 2014-11-24 17:15:44+00:00 True False ionelmc googlemail github googlemail * master True pytest-dev_pytest-cov.git pytest-dev/pytest-cov.git https://github.com/pytest-dev/pytest-cov.git
161 f538ea7afaed6b5bd26d24a62795576679d0f5c0 90014cb496817f7b9544832073137f9e463e746a Michael Jones m.pricejones@gmail.com 2021-09-04 11:51:11+01:00 2014-09-28 11:31:08+01:00 GitHub Michael Jones noreply@github.com m.pricejones@gmail.com 2021-09-04 10:51:11+00:00 2014-09-28 10:33:18+00:00 True False gmail github gmail * main True michaeljones_breathe.git michaeljones/breathe.git https://github.com/michaeljones/breathe.git
162 cacbd0dabef064a49ce1c1aa0c41a7d145a6c655 f6ee96cf37bdb805ed35416b4370e3e407875bca Michael Merickel michael@merickel.org 2022-12-28 13:31:29-06:00 2016-10-18 01:26:21-05:00 GitHub Michael Merickel noreply@github.com michael@merickel.org 2022-12-28 19:31:29+00:00 2016-10-18 06:39:25+00:00 True False merickel github merickel * main True Pylons_hupper Pylons/hupper https://github.com/Pylons/hupper
163 a2270b0cbd71c39194acb28b1206f374f87a8856 451c9909d4fd7bc5301bf032a0b6f21982dac4cb Bas van Oostveen abhiabhi94 bas.van.oostveen@solera.nl 13880786+abhiabhi94@users.noreply.github.com 2022-07-08 22:28:22+02:00 2020-09-12 16:51:48+05:30 Bas van Oostveen abhiabhi94 bas.van.oostveen@solera.nl 13880786+abhiabhi94@users.noreply.github.com 2022-07-08 20:28:22+00:00 2020-09-12 11:21:48+00:00 False solera users solera users * main True django-extensions_django-extensions django-extensions/django-extensions https://github.com/django-extensions/django-extensions
164 fe623bbfadfe8d32efffa9dcded4db1f9b3d9550 Matthias C. M. Troffaes matthias.troffaes@gmail.com 2021-09-14 22:45:40+01:00 GitHub noreply@github.com 2021-09-14 21:45:40+00:00 False gmail github * develop True mcmtroffaes_pathlib2.git mcmtroffaes/pathlib2.git https://github.com/mcmtroffaes/pathlib2.git
165 d2922ea4bfb097814573d70633e08bc99945af61 937da03f5709f943f9ed23ff786b42aa78fac336 Christoffer Jansson Jiayang Liu jansson@google.com jiayl@chromium.org 2018-02-13 15:09:44+01:00 2015-01-14 12:58:05-08:00 GitHub Jiayang Liu noreply@github.com jiayl@chromium.org 2018-02-13 14:09:44+00:00 2015-01-14 21:03:32+00:00 True False google chromium github chromium * main True webrtchacks_adapter webrtchacks/adapter https://github.com/webrtchacks/adapter
166 da2b0f065eb084d7c9f607a8e1f8fbad8036e1ba Jannis Leidel jannis@leidel.info 2016-07-26 11:00:46+02:00 Jannis Leidel jannis@leidel.info 2016-07-26 09:01:06+00:00 False leidel leidel * main True jazzband_django-debug-toolbar.git jazzband/django-debug-toolbar.git https://github.com/jazzband/django-debug-toolbar.git
167 51efb0d7a8afbac2df2cc31aa7840e4f8a32b4bf 048b33b80c9a11bf11dd72a385e16152dc1ec48b Alan D. Snow Sean Gillies alansnow21@gmail.com sean@mapbox.com 2023-01-10 12:48:09-06:00 2016-05-11 16:05:57-06:00 GitHub Sean Gillies noreply@github.com sean@mapbox.com 2023-01-10 18:48:09+00:00 2016-05-11 22:05:57+00:00 False gmail mapbox github mapbox * main True rasterio_rasterio.git rasterio/rasterio.git https://github.com/rasterio/rasterio.git
168 44be7c4582c077924d88a7a551cc31700f1014f3 Zygmunt Krynicki zygmunt.krynicki@canonical.com 2015-02-11 19:39:51+01:00 Zygmunt Krynicki zygmunt.krynicki@canonical.com 2015-02-11 19:42:49+00:00 False canonical canonical * master True zyga_padme zyga/padme https://github.com/zyga/padme
169 ef994be749c1c175ca7d1f9f580304fc68a6f519 4471b7e8506082ed7daf92304cc2f35eb844a5d2 Brad Rogers brad12rogers@gmail.com 2020-11-03 13:50:52-05:00 2020-04-15 19:04:28-07:00 GitHub noreply@github.com 2020-11-03 18:50:52+00:00 2020-04-16 02:04:28+00:00 False gmail github * main True dropbox_dropbox-sdk-python dropbox/dropbox-sdk-python https://github.com/dropbox/dropbox-sdk-python
170 57d33863ac817372f853bd68afd893f73591ed89 29f13ea202f07dce62f9073f24b2daa3d780a55f Gavish Elias Dorneles gavishpoddar@hotmail.com eliasdorneles@gmail.com 2021-08-09 21:33:36+05:30 2014-11-24 15:17:18-02:00 GitHub Elias Dorneles noreply@github.com eliasdorneles@gmail.com 2021-08-09 16:03:36+00:00 2014-11-24 17:17:18+00:00 True False hotmail gmail github gmail * master True scrapinghub_dateparser scrapinghub/dateparser https://github.com/scrapinghub/dateparser
171 e92ad6d5c0fd699e8d39d3756e5fee09626991ef 02a8a52e005c0fdfff80f0b709b59f8cfccdf7fc Jorge Zapata jorgeluis.zapata@gmail.com 2024-01-24 12:21:44+01:00 2024-01-08 11:34:43+01:00 Jorge Zapata jorgeluis.zapata@gmail.com 2024-03-12 09:03:58+00:00 2024-01-09 09:11:05+00:00 False gmail gmail * main True gstreamer_orc gstreamer/orc https://gitlab.freedesktop.org/gstreamer/orc
172 5448e7ee9a18599042e3adf6e9cb34d812a82323 Kornel Lesiński kornel@geekhood.net 2016-11-18 01:21:15+00:00 Kornel Lesiński kornel@geekhood.net 2016-11-18 01:21:15+00:00 False geekhood geekhood * main True kornelski_pngquant.git kornelski/pngquant.git https://github.com/kornelski/pngquant.git
173 c85a2572e53218716359126d9465cc63447817e5 14eb52c34131bd702778b6d9a02d5f754e329e76 Tim Gates Timothée Peignier tim.gates@iress.com timothee.peignier@tryphon.org 2022-08-06 13:59:07+10:00 2012-09-17 21:54:57+02:00 GitHub Timothée Peignier noreply@github.com timothee.peignier@tryphon.org 2022-08-06 03:59:07+00:00 2012-09-17 19:54:57+00:00 False iress tryphon github tryphon * master True jazzband_django-pipeline jazzband/django-pipeline https://github.com/jazzband/django-pipeline
174 1c146ac76219e52b6cc07939eecad282ffb1a554 fdf513302703d830eddbac40a8757c6b02549261 ghiggi davidh-ssec gionata.ghiggi@gmail.com david.hoese@ssec.wisc.edu 2023-05-25 08:12:40+02:00 2018-01-12 15:02:08-06:00 ghiggi davidh-ssec gionata.ghiggi@gmail.com david.hoese@ssec.wisc.edu 2023-05-25 06:12:40+00:00 2018-01-26 21:56:02+00:00 False gmail ssec gmail ssec * main True pytroll_satpy pytroll/satpy https://github.com/pytroll/satpy
175 27f59cb37166dc25824613c8ebbbfc63ce1f29bf 647f21332d37c05e888eb9d01261310450704d53 Andre Klapper Lubomir Rintel a9016009@gmx.de lkundrak@v3.sk 2022-02-21 11:27:15+01:00 2019-03-15 20:59:05+01:00 Andre Klapper Lubomir Rintel a9016009@gmx.de lkundrak@v3.sk 2022-02-21 10:27:15+00:00 2019-04-10 17:02:46+00:00 False gmx v3 gmx v3 * main True GNOME_mobile-broadband-provider-info GNOME/mobile-broadband-provider-info https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info
176 b41442a89e3a5a26637b07f665cca4595811dfc3 e903b9c057a41ce5039c9d91ccbce549e5b71126 Daniel Roy Greenfeld pydanny@users.noreply.github.com danny@eventbrite.com 2018-10-09 21:46:08-07:00 2015-09-09 20:56:45-07:00 GitHub Daniel Roy Greenfeld noreply@github.com danny@eventbrite.com 2018-10-10 04:46:08+00:00 2015-09-10 03:56:45+00:00 False users eventbrite github eventbrite * master True cookiecutter_whichcraft cookiecutter/whichcraft https://github.com/cookiecutter/whichcraft
177 5a01a4c8a900a98ca0186b742d03d02c55846632 f0f7a91b3157790aac8c568e3349dde8dca1fac5 Daniel Tom Christie 107224353+daniel-web-developer@users.noreply.github.com tom@tomchristie.com 2023-08-31 10:19:25+02:00 2013-12-16 11:59:37+00:00 GitHub Tom Christie noreply@github.com tom@tomchristie.com 2023-08-31 08:19:25+00:00 2013-12-16 11:59:37+00:00 False users tomchristie github tomchristie * master True encode_django-rest-framework encode/django-rest-framework https://github.com/encode/django-rest-framework
178 dea4b862e6548858f5645b6359eff9a4cb51b594 idle sign idlesign@yandex.ru 2018-02-07 20:33:38+07:00 idle sign idlesign@yandex.ru 2018-02-07 13:33:38+00:00 False yandex yandex * master True idlesign_django-sitetree idlesign/django-sitetree https://github.com/idlesign/django-sitetree
179 06a7fac32cfcd6c42fd6541a4d7770dc65588f68 232cae5253382d8d8f7678dbda1ee37424904cab Simon McVittie smcv@collabora.com smcv@debian.org 2019-07-29 13:29:18+01:00 2018-01-29 08:47:56+00:00 Simon McVittie smcv@collabora.com smcv@debian.org 2021-03-26 11:09:42+00:00 2018-01-29 08:47:56+00:00 False collabora debian collabora debian * master True dbus_dbus-glib.git dbus/dbus-glib.git https://gitlab.freedesktop.org/dbus/dbus-glib.git
180 8c4557cdb9270996176e8874b16ab095a525dcd6 638713daab211eb104f0228a7d59af227a89008f Quentin Pradet Honza Kral quentin.pradet@elastic.co honza.kral@gmail.com 2024-01-15 15:04:29+01:00 2013-09-26 11:34:15+02:00 GitHub Honza Kral noreply@github.com honza.kral@gmail.com 2024-01-15 14:04:29+00:00 2013-09-26 09:34:15+00:00 False elastic gmail github gmail * main True elastic_elasticsearch-py.git elastic/elasticsearch-py.git https://github.com/elastic/elasticsearch-py.git
181 e7cbaafce2647eb9b33577366b178ae66250473f 5445c0a95352506da2677f3de09c07286d5140ea Michael Merickel michael@merickel.org 2017-06-11 23:20:09-05:00 2016-06-01 21:27:09-07:00 Michael Merickel michael@merickel.org 2017-06-12 04:20:09+00:00 2016-06-02 04:48:54+00:00 False merickel merickel * main True pylons_plaster pylons/plaster https://github.com/pylons/plaster
182 ca82caaeb6ee6ef2820ca6726eba5b8f86f5e566 Teemu R tpr@iki.fi 2021-09-17 12:17:20+02:00 GitHub noreply@github.com 2021-09-17 10:17:20+00:00 False iki github * master True rytilahti_python-miio.git rytilahti/python-miio.git https://github.com/rytilahti/python-miio.git
183 0b6eb7abe6a839c27c4828ad5671b8816cd967f5 d5d49519e52c665b4789ce9e44c558cbcc127b8a Ron Frederick ronf@timeheart.net 2018-09-01 20:51:22-07:00 2015-05-17 19:54:17-07:00 Ron Frederick ronf@timeheart.net 2018-09-02 03:51:22+00:00 2015-05-18 02:54:17+00:00 False timeheart timeheart * develop True ronf_asyncssh ronf/asyncssh https://github.com/ronf/asyncssh
184 717482dd873a9032cbb019062aa06401f871f765 Michael Howitz mh@gocept.com 2023-02-23 08:17:11+01:00 GitHub noreply@github.com 2023-02-23 07:17:11+00:00 False gocept github * master True zopefoundation_zc.lockfile zopefoundation/zc.lockfile https://github.com/zopefoundation/zc.lockfile
185 77cf9560ceb833f7dd51c10b6d10519ef7875084 Ianaré Sévi ianare@gmail.com 2015-05-15 22:40:37+02:00 Ianaré Sévi ianare@gmail.com 2015-05-15 20:40:37+00:00 False gmail gmail * develop True ianare_exif-py ianare/exif-py https://github.com/ianare/exif-py
186 ff5eb53f487341774b24930f8243c41a32d16d09 c6c10123301a20c6d6981c7062617edb9425fac2 Luciano Lionello Andrey Smirnov lucianolio@protonmail.com smirnov.andrey@gmail.com 2022-02-04 20:22:28-03:00 2017-03-22 17:38:32+03:00 Benj Fassbind Andrey Smirnov randombenj@gmail.com smirnov.andrey@gmail.com 2022-02-05 08:28:44+00:00 2017-03-22 16:24:06+00:00 False protonmail gmail gmail * master True aptly-dev_aptly.git aptly-dev/aptly.git https://github.com/aptly-dev/aptly.git
187 779967e0f7c1438c37cf74a4a85bf8597486b23a e43ab548b28c8d1af01253088a44a41e35c08722 jan iversen jancasacondor@gmail.com 2024-03-03 13:48:40+01:00 2023-03-16 21:02:03+01:00 jan iversen GitHub jancasacondor@gmail.com noreply@github.com 2024-03-03 12:48:40+00:00 2023-03-16 20:02:03+00:00 True False gmail gmail github * dev True pymodbus-dev_pymodbus.git pymodbus-dev/pymodbus.git https://github.com/pymodbus-dev/pymodbus.git
188 2cf826f236222d517c847fd5c61d48d3d85333d2 b7759b7b62bce8f658aab5a1b8968a539d10208d Saurabh Kumar theskumar@users.noreply.github.com saurabh@saurabh-kumar.com 2022-06-05 12:54:25+05:30 2019-09-10 16:49:51+05:30 GitHub Saurabh Kumar noreply@github.com saurabh@saurabh-kumar.com 2022-06-05 07:24:25+00:00 2019-09-10 11:19:51+00:00 False users saurabh-kumar github saurabh-kumar * main True theskumar_python-dotenv.git theskumar/python-dotenv.git https://github.com/theskumar/python-dotenv.git
189 50f35d4a0091c2da6d87f5d43365f7eddaa3faa8 aca958de3e7d22375a10a642d551a27e3686415c Nikita Sobolev sobolevn mail@sobolevn.me n.a.sobolev@gmail.com 2019-09-15 21:08:02+03:00 2015-05-04 21:06:16+03:00 GitHub sobolevn noreply@github.com n.a.sobolev@gmail.com 2019-09-15 18:08:02+00:00 2015-05-04 18:06:16+00:00 False sobolevn gmail github gmail * master True sobolevn_django-split-settings sobolevn/django-split-settings https://github.com/sobolevn/django-split-settings
190 6633f27a28ae048e0a5e352bbe0251f8c32b3469 edfc090ddb977752557febb1c99981a4efb612da Nikolai Aleksandrovich Pavlov Kim Silkebækken kp-pav@yandex.ru kim.silkebaekken@gmail.com 2014-12-08 08:37:39+03:00 2013-03-15 15:20:00+01:00 Nikolai Aleksandrovich Pavlov Kim Silkebækken kp-pav@yandex.ru kim.silkebaekken@gmail.com 2014-12-08 05:37:39+00:00 2013-03-15 14:23:41+00:00 True False yandex gmail yandex gmail * develop True powerline_powerline powerline/powerline https://github.com/powerline/powerline
191 a557ccc7a87ebe0ae1222bff9cb5eb82d54db726 Karen Etheridge ether@cpan.org 2017-12-19 17:34:46-08:00 Karen Etheridge ether@cpan.org 2017-12-20 01:34:46+00:00 False cpan cpan * master True karenetheridge_Module-Manifest karenetheridge/Module-Manifest https://github.com/karenetheridge/Module-Manifest
192 d9401ec5344f103826ef83fd9138250a32d020fe 1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0 Laurent LAPORTE tantale.solutions@gmail.com 2020-05-13 21:59:46+02:00 2017-11-20 14:13:26+01:00 Laurent LAPORTE tantale.solutions@gmail.com 2020-05-13 19:59:46+00:00 2017-11-20 13:13:26+00:00 False gmail gmail * master True tantale_deprecated.git tantale/deprecated.git https://github.com/tantale/deprecated.git
193 feed17b67d83bc8e7b8a72c62c56c5103c7bebf2 Joelle Maslak jmaslak@antelope.net 2018-06-03 21:03:34-06:00 Joelle Maslak jmaslak@antelope.net 2018-06-04 03:03:34+00:00 False antelope antelope * master True jmaslak_Net-Netmask.git jmaslak/Net-Netmask.git https://github.com/jmaslak/Net-Netmask.git
194 b4ec64228d65e2ed9917b3f9da442f039fbf2a5e 26075d8710cc4f460cb8645352ca63cf4398568c Patrick Totzke Dylan Baker patricktotzke@gmail.com dylan@pnwbakers.com 2021-09-23 18:16:03+01:00 2017-08-18 10:49:06-07:00 Patrick Totzke Dylan Baker patricktotzke@gmail.com dylan@pnwbakers.com 2021-09-23 17:16:03+00:00 2017-08-18 22:44:42+00:00 False gmail pnwbakers gmail pnwbakers * master True pazz_alot pazz/alot https://github.com/pazz/alot
195 6429d57dde582371fc7204307c857bbd5cfa0c6e b656d864ed490c8370304c5170e95c42d8fa966a Joao Eriberto Mota Filho eriberto@eriberto.pro.br 2021-04-26 16:19:21-03:00 2021-04-26 16:09:23-03:00 Joao Eriberto Mota Filho eriberto@eriberto.pro.br 2021-04-26 19:19:21+00:00 2021-04-26 19:09:23+00:00 False eriberto eriberto * master True resurrecting-open-source-projects_cbm resurrecting-open-source-projects/cbm https://github.com/resurrecting-open-source-projects/cbm
196 ff9658b9e170031daa6dc66b9116c53a214652eb Bernardo Heynemann heynemann@gmail.com 2014-03-19 19:18:17-03:00 Bernardo Heynemann heynemann@gmail.com 2014-03-19 22:18:17+00:00 False gmail gmail * master True thumbor_libthumbor thumbor/libthumbor https://github.com/thumbor/libthumbor
197 f1c39b4c1404d5dfdf13dbea40b3c0186e7d84a5 dc0c5a37faf31c28bcf4765206482ef693b83ecd Stoeffel Esa-Matti Suuronen schtoeffel@gmail.com esa-matti@suuronen.org 2016-02-24 09:27:48+01:00 2014-12-11 13:41:01+02:00 Stoeffel Esa-Matti Suuronen schtoeffel@gmail.com esa-matti@suuronen.org 2016-02-24 08:27:48+00:00 2014-12-11 11:41:01+00:00 False gmail suuronen gmail suuronen * master True epeli_underscore.string epeli/underscore.string https://github.com/epeli/underscore.string
198 117c4f758cd5da2eea272f7ef5418aaa41996008 Simon Josefsson simon@josefsson.org 2023-12-31 13:29:07+01:00 Simon Josefsson simon@josefsson.org 2023-12-31 12:36:42+00:00 False josefsson josefsson * master True jas_libntlm jas/libntlm https://gitlab.com/jas/libntlm
199 25ef5ec3afd1fcb2a1c3f4f4bff050414d3a9bd8 4425735296e32c33781be0c76e77a0d9811b6206 Markus Unterwaditzer markus@unterwaditzer.net 2016-08-12 18:00:33+02:00 2016-08-12 17:44:09+02:00 Markus Unterwaditzer markus@unterwaditzer.net 2016-08-12 16:00:33+00:00 2016-08-12 15:44:09+00:00 False unterwaditzer unterwaditzer * master True untitaker_python-atomicwrites untitaker/python-atomicwrites https://github.com/untitaker/python-atomicwrites
200 0acc6486652024304058da5baf87113fe97f5464 Adam Donaghy adamdonaghy1994@gmail.com 2023-11-23 18:15:35+11:00 Diederik van der Boor vdboor@codingdomain.com 2023-11-23 07:30:38+00:00 False gmail codingdomain * master True django-polymorphic_django-polymorphic django-polymorphic/django-polymorphic https://github.com/django-polymorphic/django-polymorphic
201 a2d601630bf405d29747a95a4b5038c706a46bf5 af6b7f05af97c6be88e1e3dc2be5e2a5a108d464 ryneeverett ryneeverett@gmail.com 2023-12-31 14:21:16-05:00 2016-05-20 17:46:04-04:00 ryneeverett ryneeverett@gmail.com 2023-12-31 20:05:22+00:00 2016-05-20 21:46:04+00:00 False gmail gmail * develop True ralphbean_bugwarrior ralphbean/bugwarrior https://github.com/ralphbean/bugwarrior
202 e02d5e4788e7a477d061accdefbd701d6fa876cf Michael Williamson mike@zwobble.org 2014-04-16 16:52:45+01:00 Michael Williamson mike@zwobble.org 2014-04-16 15:52:45+00:00 False zwobble zwobble * master True mwilliamson_spur.py.git mwilliamson/spur.py.git https://github.com/mwilliamson/spur.py.git

File diff suppressed because it is too large Load Diff

View File

@ -82,6 +82,7 @@ def get_file(vcs_link, commit_hash, is_readme):
os.chdir(temp_repo_path) os.chdir(temp_repo_path)
reset_command = f"git reset --hard {commit_hash}" reset_command = f"git reset --hard {commit_hash}"
#print(reset_command)
os.system(reset_command) os.system(reset_command)
doc_name = "CONTRIBUTING" doc_name = "CONTRIBUTING"
@ -89,7 +90,7 @@ def get_file(vcs_link, commit_hash, is_readme):
doc_name = "README" doc_name = "README"
und_repo_id = '_'.join(repo_id.split("/")) und_repo_id = '_'.join(repo_id.split("/"))
doc_found = False
for root, dirs, files in os.walk(temp_repo_path): for root, dirs, files in os.walk(temp_repo_path):
for file in files: for file in files:
if file.startswith(doc_name): if file.startswith(doc_name):
@ -108,10 +109,10 @@ def get_file(vcs_link, commit_hash, is_readme):
und_repo_id = "" und_repo_id = ""
delete_clone(temp_dir) delete_clone(temp_dir)
os.chdir(cwd) os.chdir(cwd)
return True, dest_path return True, dest_path
def for_all_files(csv_path, is_readme): def for_all_files(csv_path, is_readme):
parsing_error = []
doc = "CONTRIBUTING" doc = "CONTRIBUTING"
if is_readme: if is_readme:
doc = "README" doc = "README"
@ -125,7 +126,7 @@ def for_all_files(csv_path, is_readme):
index += 1 index += 1
if index < 1: if index < 1:
continue continue
time.sleep(4) time.sleep(5)
manifest_df = pd.DataFrame({ manifest_df = pd.DataFrame({
'commit_hash': [row[0]], 'commit_hash': [row[0]],
'upstream_vcs_link': [row[14]], 'upstream_vcs_link': [row[14]],
@ -136,16 +137,20 @@ def for_all_files(csv_path, is_readme):
_check, new_filepath = get_file(manifest_df['upstream_vcs_link'][0], manifest_df['commit_hash'][0], is_readme) _check, new_filepath = get_file(manifest_df['upstream_vcs_link'][0], manifest_df['commit_hash'][0], is_readme)
manifest_df['new_filepath'] = new_filepath manifest_df['new_filepath'] = new_filepath
if _check == False: if _check == True:
break new_manifest_list.append(manifest_df)
else:
new_manifest_list.append(manifest_df) parsing_error.append([manifest_df['upstream_vcs_link'][0], manifest_df['commit_hash'][0]])
except KeyboardInterrupt: except KeyboardInterrupt:
print("KeyBoardInterrrupt") print("KeyBoardInterrrupt")
finally: finally:
with open(f"s_{doc}-parsing-output.txt", "w") as txt_file:
for error in parsing_error:
txt_file.write(', '.join(error) + "\n")
manifest_df = pd.concat(new_manifest_list, ignore_index=True) manifest_df = pd.concat(new_manifest_list, ignore_index=True)
manifest_df.to_csv(f"013025_{doc}_manifest.csv", index=False) manifest_df.to_csv(f"013025_{doc}_manifest.csv", index=False)
if __name__ == "__main__": if __name__ == "__main__":
for_all_files("../misc_data_files/README_for_download.csv", True) for_all_files("../misc_data_files/README_for_download.csv", True)
#get_file("https://github.com/breakfastquay/rubberband", "a94f3f33577bf9d71166392febbfdf3cace6f1c8", True) #get_file("https://github.com/breakfastquay/rubberband", "a94f3f33577bf9d71166392febbfdf3cace6f1c8", True)