fix more file validation

This commit is contained in:
Matthew Gaughan 2025-01-31 16:50:18 -06:00
parent 6d851731af
commit e90fa6b363
9 changed files with 5073 additions and 6 deletions

View File

@ -147,6 +147,7 @@ def get_doc_publication(dirpath, file, doc_name):
return first_instance return first_instance
def get_doc_pub_for_all(is_readme): def get_doc_pub_for_all(is_readme):
full_data = pd.read_csv('for_batching/deb_full_data.csv')
if is_readme: if is_readme:
dirpath = "/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/readme/" dirpath = "/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/readme/"
doc_name = "README" doc_name = "README"
@ -155,7 +156,9 @@ def get_doc_pub_for_all(is_readme):
doc_name = "CONTRIBUTING" doc_name = "CONTRIBUTING"
csv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')] csv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')]
first_instances = [] first_instances = []
index = 0
for file in csv_files: for file in csv_files:
index += 1
first_instance = get_doc_publication(dirpath, file, doc_name) first_instance = get_doc_publication(dirpath, file, doc_name)
if file.startswith('_'): if file.startswith('_'):
repo_id = file[1:-12] repo_id = file[1:-12]
@ -163,10 +166,33 @@ def get_doc_pub_for_all(is_readme):
repo_id = file[:-12] repo_id = file[:-12]
first_instance['repo_id'] = repo_id first_instance['repo_id'] = repo_id
# find the upstream vcs from the full_data list # find the upstream vcs from the full_data list
if not first_instance.empty: id_array = repo_id.split("_")
project_handle = ("/").join(id_array)
first_instance['project_handle'] = project_handle
full_data['upstream_vcs_link'] = full_data['upstream_vcs_link'].str.strip()
#matching with vcs
mask = pd.Series([True] * len(full_data))
for id_part in id_array:
mask &= full_data['upstream_vcs_link'].str.contains(id_part, case=False, na=False)
result = full_data[mask]
#print(repo_id)
first_match = result['upstream_vcs_link'].values[0]
#print(first_match)
first_instance['upstream_vcs_link'] = first_match
#print(first_instance['upstream_vcs_link'])
first_instance.drop(['message', 'diff_info'], axis=1, inplace=True)
# https://invent.kde.org/plasma/powerdevil.git
if (not first_instance.empty and first_instance['upstream_vcs_link'] is not None):
first_instances.append(first_instance) first_instances.append(first_instance)
else:
print(f"at index: {index}")
print(f"no first commit found for {repo_id}")
break
#save the #save the
#first_instances_df = pd.concat(first_instances, ignore_index=True) first_instances_df = pd.concat(first_instances, ignore_index=True)
first_instances_df.to_csv(f'13125_test_{doc_name}_publication_commits.csv', index = False)
def list_for_doc_collection(unmatched_files, is_readme): def list_for_doc_collection(unmatched_files, is_readme):
if is_readme: if is_readme:
@ -218,9 +244,10 @@ def list_for_doc_collection(unmatched_files, is_readme):
if __name__ == "__main__": 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") #get_doc_pub_for_all(is_readme)
print(len(matched_repo_ids)) #unmatched_files, matched_repo_ids = check_collected_files("/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing")
#print(len(matched_repo_ids))
#cp_existing_docs(matched_repo_ids, is_readme) #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

@ -0,0 +1,478 @@
repo_id,commits_filepath,fvf_filepath
aio-libs_aiomysql.git,_aio-libs_aiomysql.git_commits.csv,aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst
aio-libs_aiohttp.git,_aio-libs_aiohttp.git_commits.csv,aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst
jupyter_jupyter_console,_jupyter_jupyter_console_commits.csv,jupyter_jupyter_console_hullabaloo_CONTRIBUTING.md
ixion_ixion.git,ixion_ixion.git_commits.csv,ixion_ixion.git_hullabaloo_CONTRIBUTING.md
box_genty.git,_box_genty.git_commits.csv,box_genty.git_hullabaloo_CONTRIBUTING.rst
hackebrot_jinja2-time,_hackebrot_jinja2-time_commits.csv,hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_nbtscan,_resurrecting-open-source-projects_nbtscan_commits.csv,resurrecting-open-source-projects_nbtscan_hullabaloo_CONTRIBUTING.md
DonyorM_weresync.git,_DonyorM_weresync.git_commits.csv,DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst
datalad_datalad,datalad_datalad_commits.csv,datalad_datalad_hullabaloo_CONTRIBUTING.md
korfuri_django-prometheus,_korfuri_django-prometheus_commits.csv,korfuri_django-prometheus_hullabaloo_CONTRIBUTING.md
iovisor_bpftrace,_iovisor_bpftrace_commits.csv,iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md
stachenov_quazip.git,_stachenov_quazip.git_commits.csv,stachenov_quazip.git_hullabaloo_CONTRIBUTING.md
netty_netty,_netty_netty_commits.csv,netty_netty_hullabaloo_CONTRIBUTING.md
twbs_bootstrap-sass,_twbs_bootstrap-sass_commits.csv,twbs_bootstrap-sass_hullabaloo_CONTRIBUTING.md
libosinfo_libosinfo.git,libosinfo_libosinfo.git_commits.csv,libosinfo_libosinfo.git_hullabaloo_CONTRIBUTING.md
zopefoundation_roman,_zopefoundation_roman_commits.csv,zopefoundation_roman_hullabaloo_CONTRIBUTING.md
googlei18n_fontmake.git,_googlei18n_fontmake.git_commits.csv,googlei18n_fontmake.git_hullabaloo_CONTRIBUTING.md
Graylog2_gelf-rb,_Graylog2_gelf-rb_commits.csv,Graylog2_gelf-rb_hullabaloo_CONTRIBUTING.md
mqttjs_mqtt-packet,_mqttjs_mqtt-packet_commits.csv,mqttjs_mqtt-packet_hullabaloo_CONTRIBUTING.md
tqdm_tqdm.git,_tqdm_tqdm.git_commits.csv,tqdm_tqdm.git_hullabaloo_CONTRIBUTING.md
ranger_ranger.git,_ranger_ranger.git_commits.csv,ranger_ranger.git_hullabaloo_CONTRIBUTING.md
intridea_oauth2,_intridea_oauth2_commits.csv,intridea_oauth2_hullabaloo_CONTRIBUTING.md
timothycrosley_hug.git,_timothycrosley_hug.git_commits.csv,timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md
eavgerinos_pkg-pick,eavgerinos_pkg-pick_commits.csv,eavgerinos_pkg-pick_hullabaloo_CONTRIBUTING.md
bk138_gromit-mpx.git,_bk138_gromit-mpx.git_commits.csv,bk138_gromit-mpx.git_hullabaloo_CONTRIBUTING.md
watson-developer-cloud_python-sdk.git,_watson-developer-cloud_python-sdk.git_commits.csv,watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md
vcr_vcr,_vcr_vcr_commits.csv,_vcr_vcr_CONTRIBUTING.md
scikit-learn-contrib_imbalanced-learn.git,_scikit-learn-contrib_imbalanced-learn.git_commits.csv,scikit-learn-contrib_imbalanced-learn.git_hullabaloo_CONTRIBUTING.rst
ninja-build_ninja.git,_ninja-build_ninja.git_commits.csv,ninja-build_ninja.git_hullabaloo_CONTRIBUTING.md
olive-editor_olive,_olive-editor_olive_commits.csv,olive-editor_olive_hullabaloo_CONTRIBUTING.md
lostisland_faraday_middleware,_lostisland_faraday_middleware_commits.csv,lostisland_faraday_middleware_hullabaloo_CONTRIBUTING.md
moose_MooseX-Runnable,_moose_MooseX-Runnable_commits.csv,moose_MooseX-Runnable_hullabaloo_CONTRIBUTING
tpope_vim-pathogen.git,_tpope_vim-pathogen.git_commits.csv,tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown
ocaml_dune.git,_ocaml_dune.git_commits.csv,ocaml_dune.git_hullabaloo_CONTRIBUTING.md
pyqtgraph_pyqtgraph.git,_pyqtgraph_pyqtgraph.git_commits.csv,pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt
processone_eimp.git,_processone_eimp.git_commits.csv,processone_eimp.git_hullabaloo_CONTRIBUTING.md
processone_stun.git,_processone_stun.git_commits.csv,processone_stun.git_hullabaloo_CONTRIBUTING.md
jazzband_django-push-notifications,_jazzband_django-push-notifications_commits.csv,jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md
box_flaky.git,_box_flaky.git_commits.csv,box_flaky.git_hullabaloo_CONTRIBUTING.rst
amueller_word_cloud,_amueller_word_cloud_commits.csv,amueller_word_cloud_hullabaloo_CONTRIBUTING.md
bitletorg_weupnp.git,_bitletorg_weupnp.git_commits.csv,bitletorg_weupnp.git_hullabaloo_CONTRIBUTING.md
heynemann_pyvows.git,_heynemann_pyvows.git_commits.csv,heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md
puppetlabs_marionette-collective,_puppetlabs_marionette-collective_commits.csv,puppetlabs_marionette-collective_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-xinetd,_puppetlabs_puppetlabs-xinetd_commits.csv,puppetlabs_puppetlabs-xinetd_hullabaloo_CONTRIBUTING.md
docker_compose,_docker_compose_commits.csv,docker_compose_hullabaloo_CONTRIBUTING.md
plasma_kscreen.git,plasma_kscreen.git_commits.csv,plasma_kscreen.git_hullabaloo_CONTRIBUTING.md
nvbn_thefuck.git,_nvbn_thefuck.git_commits.csv,nvbn_thefuck.git_hullabaloo_CONTRIBUTING.md
eslint_eslint-scope.git,_eslint_eslint-scope.git_commits.csv,eslint_eslint-scope.git_hullabaloo_CONTRIBUTING.md
jupyter_notebook.git,_jupyter_notebook.git_commits.csv,jupyter_notebook.git_hullabaloo_CONTRIBUTING.md
mfontanini_libtins.git,_mfontanini_libtins.git_commits.csv,mfontanini_libtins.git_hullabaloo_CONTRIBUTING.md
pimutils_vdirsyncer,_pimutils_vdirsyncer_commits.csv,pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst
openalpr_openalpr,openalpr_openalpr_commits.csv,openalpr_openalpr_hullabaloo_CONTRIBUTING.md
nikic_PHP-Parser,_nikic_PHP-Parser_commits.csv,nikic_PHP-Parser_hullabaloo_CONTRIBUTING.md
tmuxinator_tmuxinator,_tmuxinator_tmuxinator_commits.csv,tmuxinator_tmuxinator_hullabaloo_CONTRIBUTING.md
dahlia_libsass-python.git,_dahlia_libsass-python.git_commits.csv,dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst
mkdocs_mkdocs,_mkdocs_mkdocs_commits.csv,mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md
boto_boto3,_boto_boto3_commits.csv,boto_boto3_hullabaloo_CONTRIBUTING.rst
jquast_blessed,_jquast_blessed_commits.csv,jquast_blessed_hullabaloo_CONTRIBUTING.rst
Storyyeller_enjarify,_Storyyeller_enjarify_commits.csv,Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt
ignitionrobotics_ign-cmake.git,_ignitionrobotics_ign-cmake.git_commits.csv,ignitionrobotics_ign-cmake.git_hullabaloo_CONTRIBUTING.md
boto_s3transfer,_boto_s3transfer_commits.csv,boto_s3transfer_hullabaloo_CONTRIBUTING.rst
derek73_python-nameparser,_derek73_python-nameparser_commits.csv,derek73_python-nameparser_hullabaloo_CONTRIBUTING.md
kaminari_kaminari,_kaminari_kaminari_commits.csv,kaminari_kaminari_hullabaloo_CONTRIBUTING.md
coddingtonbear_python-measurement,_coddingtonbear_python-measurement_commits.csv,coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md
editorconfig_editorconfig-core-c.git,_editorconfig_editorconfig-core-c.git_commits.csv,editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING
libosinfo_osinfo-db.git,libosinfo_osinfo-db.git_commits.csv,libosinfo_osinfo-db.git_hullabaloo_CONTRIBUTING.md
joke2k_faker,_joke2k_faker_commits.csv,joke2k_faker_hullabaloo_CONTRIBUTING.rst
zopefoundation_zope.testing,_zopefoundation_zope.testing_commits.csv,zopefoundation_zope.testing_hullabaloo_CONTRIBUTING.md
npm_nopt,_npm_nopt_commits.csv,npm_nopt_hullabaloo_CONTRIBUTING.md
google_gemmlowp,_google_gemmlowp_commits.csv,google_gemmlowp_hullabaloo_CONTRIBUTING.txt
iustin_pylibacl,_iustin_pylibacl_commits.csv,iustin_pylibacl_hullabaloo_CONTRIBUTING.md
PyFilesystem_pyfilesystem2,_PyFilesystem_pyfilesystem2_commits.csv,PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md
pallets_werkzeug,_pallets_werkzeug_commits.csv,pallets_werkzeug_hullabaloo_CONTRIBUTING.rst
include-what-you-use_include-what-you-use,_include-what-you-use_include-what-you-use_commits.csv,include-what-you-use_include-what-you-use_hullabaloo_CONTRIBUTING.md
GNOME_gjs.git,GNOME_gjs.git_commits.csv,GNOME_gjs.git_hullabaloo_CONTRIBUTING.md
zeromq_pyzmq.git,_zeromq_pyzmq.git_commits.csv,zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md
hamcrest_hamcrest-php.git,_hamcrest_hamcrest-php.git_commits.csv,hamcrest_hamcrest-php.git_hullabaloo_CONTRIBUTING.md
swaywm_wlroots,_swaywm_wlroots_commits.csv,swaywm_wlroots_hullabaloo_CONTRIBUTING.md
WoLpH_numpy-stl,_WoLpH_numpy-stl_commits.csv,WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst
prometheus_client_python.git,_prometheus_client_python.git_commits.csv,prometheus_client_python.git_hullabaloo_CONTRIBUTING.md
heynemann_preggy,_heynemann_preggy_commits.csv,heynemann_preggy_hullabaloo_CONTRIBUTING.md
zeromq_czmq.git,_zeromq_czmq.git_commits.csv,zeromq_czmq.git_hullabaloo_CONTRIBUTING.md
python-trio_trio,_python-trio_trio_commits.csv,python-trio_trio_hullabaloo_CONTRIBUTING.md
mongoengine_flask-mongoengine,_mongoengine_flask-mongoengine_commits.csv,mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md
ionelmc_python-tblib,_ionelmc_python-tblib_commits.csv,ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst
brunonova_drmips,brunonova_drmips_commits.csv,brunonova_drmips_hullabaloo_CONTRIBUTING.md
analogdevicesinc_libiio.git,_analogdevicesinc_libiio.git_commits.csv,analogdevicesinc_libiio.git_hullabaloo_CONTRIBUTING.md
rails_sprockets.git,_rails_sprockets.git_commits.csv,rails_sprockets.git_hullabaloo_CONTRIBUTING.md
ocaml_ocamlbuild.git,_ocaml_ocamlbuild.git_commits.csv,ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc
karenetheridge_B-Hooks-Parser.git,_karenetheridge_B-Hooks-Parser.git_commits.csv,karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING
ceres-solver_ceres-solver.git,_ceres-solver_ceres-solver.git_commits.csv,ceres-solver_ceres-solver.git_hullabaloo_CONTRIBUTING.md
jupyter_nbconvert,_jupyter_nbconvert_commits.csv,jupyter_nbconvert_hullabaloo_CONTRIBUTING.md
ComplianceAsCode_content,_ComplianceAsCode_content_commits.csv,ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md
mu-editor_mu,_mu-editor_mu_commits.csv,mu-editor_mu_hullabaloo_CONTRIBUTING.rst
dask_dask,_dask_dask_commits.csv,dask_dask_hullabaloo_CONTRIBUTING.md
jashkenas_underscore.git,_jashkenas_underscore.git_commits.csv,jashkenas_underscore.git_hullabaloo_CONTRIBUTING.md
npm_abbrev-js,_npm_abbrev-js_commits.csv,npm_abbrev-js_hullabaloo_CONTRIBUTING.md
jupyter_jupyter_core,_jupyter_jupyter_core_commits.csv,jupyter_jupyter_core_hullabaloo_CONTRIBUTING.md
tpm2-software_tpm2-abrmd.git,_tpm2-software_tpm2-abrmd.git_commits.csv,tpm2-software_tpm2-abrmd.git_hullabaloo_CONTRIBUTING.md
matthewwithanm_django-imagekit.git,_matthewwithanm_django-imagekit.git_commits.csv,matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst
fog_fog-rackspace,_fog_fog-rackspace_commits.csv,fog_fog-rackspace_hullabaloo_CONTRIBUTING.md
tinfoil_devise-two-factor.git,_tinfoil_devise-two-factor.git_commits.csv,tinfoil_devise-two-factor.git_hullabaloo_CONTRIBUTING.md
isaacs_node-glob.git,_isaacs_node-glob.git_commits.csv,isaacs_node-glob.git_hullabaloo_CONTRIBUTING.md
dagolden_class-insideout.git,_dagolden_class-insideout.git_commits.csv,dagolden_class-insideout.git_hullabaloo_CONTRIBUTING
lastpass_lastpass-cli,_lastpass_lastpass-cli_commits.csv,lastpass_lastpass-cli_hullabaloo_CONTRIBUTING
mlpack_ensmallen,_mlpack_ensmallen_commits.csv,mlpack_ensmallen_hullabaloo_CONTRIBUTING.md
RIPE-NCC_ripe.atlas.sagan,_RIPE-NCC_ripe.atlas.sagan_commits.csv,RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst
intridea_multi_json,_intridea_multi_json_commits.csv,intridea_multi_json_hullabaloo_CONTRIBUTING.md
zsh-users_antigen,_zsh-users_antigen_commits.csv,zsh-users_antigen_hullabaloo_CONTRIBUTING.md
emcconville_wand,_emcconville_wand_commits.csv,emcconville_wand_hullabaloo_CONTRIBUTING.rst
perl-catalyst_Catalyst-Authentication-Credential-HTTP,_perl-catalyst_Catalyst-Authentication-Credential-HTTP_commits.csv,perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING
sslmate_certspotter,_sslmate_certspotter_commits.csv,sslmate_certspotter_hullabaloo_CONTRIBUTING
jazzband_django-sortedm2m.git,_jazzband_django-sortedm2m.git_commits.csv,jazzband_django-sortedm2m.git_hullabaloo_CONTRIBUTING.md
python-hyper_h11.git,_python-hyper_h11.git_commits.csv,python-hyper_h11.git_hullabaloo_CONTRIBUTING.md
felixge_node-dateformat,_felixge_node-dateformat_commits.csv,felixge_node-dateformat_hullabaloo_CONTRIBUTING.md
Grokzen_redis-py-cluster,_Grokzen_redis-py-cluster_commits.csv,Grokzen_redis-py-cluster_hullabaloo_CONTRIBUTING.md
lttng-ust.git,lttng-ust.git_commits.csv,lttng-ust.git_hullabaloo_CONTRIBUTING.md
mongodb_motor,_mongodb_motor_commits.csv,mongodb_motor_hullabaloo_CONTRIBUTING.rst
libevent_libevent,_libevent_libevent_commits.csv,libevent_libevent_hullabaloo_CONTRIBUTING.md
bbatsov_powerpack.git,_bbatsov_powerpack.git_commits.csv,bbatsov_powerpack.git_hullabaloo_CONTRIBUTING.md
rthalley_dnspython.git,_rthalley_dnspython.git_commits.csv,rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md
Ableton_link.git,_Ableton_link.git_commits.csv,Ableton_link.git_hullabaloo_CONTRIBUTING.md
Ranks_emojione,_Ranks_emojione_commits.csv,Ranks_emojione_hullabaloo_CONTRIBUTING.md
kelektiv_node-uuid,_kelektiv_node-uuid_commits.csv,kelektiv_node-uuid_hullabaloo_CONTRIBUTING.md
prometheus_pushgateway,_prometheus_pushgateway_commits.csv,prometheus_pushgateway_hullabaloo_CONTRIBUTING.md
pyjokes_pyjokes,_pyjokes_pyjokes_commits.csv,pyjokes_pyjokes_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_openrdate,_resurrecting-open-source-projects_openrdate_commits.csv,resurrecting-open-source-projects_openrdate_hullabaloo_CONTRIBUTING.md
ARMmbed_yotta.git,_ARMmbed_yotta.git_commits.csv,ARMmbed_yotta.git_hullabaloo_CONTRIBUTING.md
django-ldapdb_django-ldapdb,_django-ldapdb_django-ldapdb_commits.csv,django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst
voxpupuli_beaker,_voxpupuli_beaker_commits.csv,voxpupuli_beaker_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.deprecation.git,_zopefoundation_zope.deprecation.git_commits.csv,zopefoundation_zope.deprecation.git_hullabaloo_CONTRIBUTING.md
PracticallyGreen_omniauth-saml.git,_PracticallyGreen_omniauth-saml.git_commits.csv,PracticallyGreen_omniauth-saml.git_hullabaloo_CONTRIBUTING.md
django-haystack_django-haystack,_django-haystack_django-haystack_commits.csv,django-haystack_django-haystack_hullabaloo_CONTRIBUTING.md
google_fscrypt,_google_fscrypt_commits.csv,google_fscrypt_hullabaloo_CONTRIBUTING.md
puppetlabs_clj-kitchensink.git,_puppetlabs_clj-kitchensink.git_commits.csv,puppetlabs_clj-kitchensink.git_hullabaloo_CONTRIBUTING.md
porridge_bambam,porridge_bambam_commits.csv,porridge_bambam_hullabaloo_CONTRIBUTING.md
joewing_jwm,_joewing_jwm_commits.csv,joewing_jwm_hullabaloo_CONTRIBUTING.md
hickford_MechanicalSoup,_hickford_MechanicalSoup_commits.csv,hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md
cubiq_iscroll,_cubiq_iscroll_commits.csv,cubiq_iscroll_hullabaloo_CONTRIBUTING.md
gtimelog_gtimelog,_gtimelog_gtimelog_commits.csv,gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst
openstack_python-swiftclient.git,_openstack_python-swiftclient.git_commits.csv,openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md
prehor_amavisd-milter,_prehor_amavisd-milter_commits.csv,prehor_amavisd-milter_hullabaloo_CONTRIBUTING.md
GNOME_network-manager-applet,GNOME_network-manager-applet_commits.csv,GNOME_network-manager-applet_hullabaloo_CONTRIBUTING
resurrecting-open-source-projects_scrot,_resurrecting-open-source-projects_scrot_commits.csv,resurrecting-open-source-projects_scrot_hullabaloo_CONTRIBUTING.md
mypaint_libmypaint,_mypaint_libmypaint_commits.csv,mypaint_libmypaint_hullabaloo_CONTRIBUTING.md
virt-manager_virt-manager,_virt-manager_virt-manager_commits.csv,virt-manager_virt-manager_hullabaloo_CONTRIBUTING.md
rails_jbuilder,_rails_jbuilder_commits.csv,rails_jbuilder_hullabaloo_CONTRIBUTING.md
libvirt_libvirt-ruby.git,libvirt_libvirt-ruby.git_commits.csv,libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst
DamienCassou_beginend.git,_DamienCassou_beginend.git_commits.csv,DamienCassou_beginend.git_hullabaloo_CONTRIBUTING.md
FirefighterBlu3_python-pam,_FirefighterBlu3_python-pam_commits.csv,FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md
MatMoul_g810-led.git,_MatMoul_g810-led.git_commits.csv,MatMoul_g810-led.git_hullabaloo_CONTRIBUTING.md
GoogleCloudPlatform_cloudsql-proxy.git,_GoogleCloudPlatform_cloudsql-proxy.git_commits.csv,GoogleCloudPlatform_cloudsql-proxy.git_hullabaloo_CONTRIBUTING.md
awslabs_amazon-ecr-credential-helper,awslabs_amazon-ecr-credential-helper_commits.csv,awslabs_amazon-ecr-credential-helper_hullabaloo_CONTRIBUTING.md
Exa-Networks_exabgp,Exa-Networks_exabgp_commits.csv,Exa-Networks_exabgp_hullabaloo_CONTRIBUTING.md
lxqt_qterminal.git,_lxqt_qterminal.git_commits.csv,lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md
ddclient_ddclient.git,_ddclient_ddclient.git_commits.csv,ddclient_ddclient.git_hullabaloo_CONTRIBUTING.md
python-gitlab_python-gitlab.git,_python-gitlab_python-gitlab.git_commits.csv,python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_packit,_resurrecting-open-source-projects_packit_commits.csv,resurrecting-open-source-projects_packit_hullabaloo_CONTRIBUTING.md
elmar_aptitude-robot,elmar_aptitude-robot_commits.csv,elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown
doorkeeper-gem_doorkeeper,_doorkeeper-gem_doorkeeper_commits.csv,doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md
rsyslog_rsyslog-doc,_rsyslog_rsyslog-doc_commits.csv,rsyslog_rsyslog-doc_hullabaloo_CONTRIBUTING.md
breunigs_python-librtmp-debian,breunigs_python-librtmp-debian_commits.csv,breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst
google_python_portpicker,_google_python_portpicker_commits.csv,google_python_portpicker_hullabaloo_CONTRIBUTING.md
carljm_django-model-utils.git,_carljm_django-model-utils.git_commits.csv,carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst
GNOME_template-glib.git,GNOME_template-glib.git_commits.csv,GNOME_template-glib.git_hullabaloo_CONTRIBUTING.md
alanxz_rabbitmq-c.git,_alanxz_rabbitmq-c.git_commits.csv,alanxz_rabbitmq-c.git_hullabaloo_CONTRIBUTING.md
davesteele_comitup,davesteele_comitup_commits.csv,davesteele_comitup_hullabaloo_CONTRIBUTING.md
un33k_django-ipware,_un33k_django-ipware_commits.csv,un33k_django-ipware_hullabaloo_CONTRIBUTING.md
luakit_luakit,_luakit_luakit_commits.csv,luakit_luakit_hullabaloo_CONTRIBUTING.md
trezor_trezor-firmware.git,_trezor_trezor-firmware.git_commits.csv,trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md
kasei_attean.git,_kasei_attean.git_commits.csv,kasei_attean.git_hullabaloo_CONTRIBUTING
gaetano-guerriero_eyeD3-debian,gaetano-guerriero_eyeD3-debian_commits.csv,gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst
ionelmc_python-lazy-object-proxy.git,_ionelmc_python-lazy-object-proxy.git_commits.csv,ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_stress,_resurrecting-open-source-projects_stress_commits.csv,resurrecting-open-source-projects_stress_hullabaloo_CONTRIBUTING.md
google_stenographer,_google_stenographer_commits.csv,google_stenographer_hullabaloo_CONTRIBUTING
jpy-consortium_jpy,_jpy-consortium_jpy_commits.csv,jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md
xtaran_unburden-home-dir,xtaran_unburden-home-dir_commits.csv,xtaran_unburden-home-dir_hullabaloo_CONTRIBUTING.md
mongoengine_mongoengine,mongoengine_mongoengine_commits.csv,mongoengine_mongoengine_hullabaloo_CONTRIBUTING.rst
openwisp_django-x509,_openwisp_django-x509_commits.csv,openwisp_django-x509_hullabaloo_CONTRIBUTING.rst
tox-dev_py-filelock,_tox-dev_py-filelock_commits.csv,tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md
survivejs_webpack-merge.git,_survivejs_webpack-merge.git_commits.csv,survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md
libcgroup_libcgroup,_libcgroup_libcgroup_commits.csv,libcgroup_libcgroup_hullabaloo_CONTRIBUTING.md
Smattr_rumur.git,Smattr_rumur.git_commits.csv,Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst
lucc_khard,_lucc_khard_commits.csv,lucc_khard_hullabaloo_CONTRIBUTING.rst
Xaviju_inkscape-open-symbols,_Xaviju_inkscape-open-symbols_commits.csv,Xaviju_inkscape-open-symbols_hullabaloo_CONTRIBUTING.md
htop-dev_htop,_htop-dev_htop_commits.csv,htop-dev_htop_hullabaloo_CONTRIBUTING.md
doorkeeper-gem_doorkeeper-openid_connect.git,_doorkeeper-gem_doorkeeper-openid_connect.git_commits.csv,doorkeeper-gem_doorkeeper-openid_connect.git_hullabaloo_CONTRIBUTING.md
libinput_libinput,libinput_libinput_commits.csv,libinput_libinput_hullabaloo_CONTRIBUTING.md
o9000_tint2,o9000_tint2_commits.csv,o9000_tint2_hullabaloo_CONTRIBUTING.md
source-foundry_Hack,_source-foundry_Hack_commits.csv,source-foundry_Hack_hullabaloo_CONTRIBUTING.md
pallets-eco_flask-sqlalchemy,_pallets-eco_flask-sqlalchemy_commits.csv,pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst
jashkenas_backbone,_jashkenas_backbone_commits.csv,jashkenas_backbone_hullabaloo_CONTRIBUTING.md
rails_rails-html-sanitizer,_rails_rails-html-sanitizer_commits.csv,rails_rails-html-sanitizer_hullabaloo_CONTRIBUTING.md
ipython_traitlets.git,_ipython_traitlets.git_commits.csv,ipython_traitlets.git_hullabaloo_CONTRIBUTING.md
isaacs_inherits,_isaacs_inherits_commits.csv,isaacs_inherits_hullabaloo_CONTRIBUTING.md
erlware_erlware_commons.git,_erlware_erlware_commons.git_commits.csv,erlware_erlware_commons.git_hullabaloo_CONTRIBUTING.md
openstreetmap_osm2pgsql.git,_openstreetmap_osm2pgsql.git_commits.csv,openstreetmap_osm2pgsql.git_hullabaloo_CONTRIBUTING.md
google_gopacket.git,_google_gopacket.git_commits.csv,google_gopacket.git_hullabaloo_CONTRIBUTING.md
janestreet_variantslib.git,_janestreet_variantslib.git_commits.csv,janestreet_variantslib.git_hullabaloo_CONTRIBUTING.md
ipython_ipython_genutils,_ipython_ipython_genutils_commits.csv,ipython_ipython_genutils_hullabaloo_CONTRIBUTING.md
matthewwithanm_pilkit,_matthewwithanm_pilkit_commits.csv,matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst
puppetlabs_puppetlabs-mysql,_puppetlabs_puppetlabs-mysql_commits.csv,puppetlabs_puppetlabs-mysql_hullabaloo_CONTRIBUTING.md
sinatra_sinatra.git,_sinatra_sinatra.git_commits.csv,sinatra_sinatra.git_hullabaloo_CONTRIBUTING.md
PyCQA_flake8-polyfill.git,_PyCQA_flake8-polyfill.git_commits.csv,PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst
google_pybadges.git,_google_pybadges.git_commits.csv,google_pybadges.git_hullabaloo_CONTRIBUTING.md
infirit_caja-admin,_infirit_caja-admin_commits.csv,infirit_caja-admin_hullabaloo_CONTRIBUTING.md
terser_terser,_terser_terser_commits.csv,terser_terser_hullabaloo_CONTRIBUTING.md
PyCQA_prospector,_PyCQA_prospector_commits.csv,PyCQA_prospector_hullabaloo_CONTRIBUTING.rst
GNOME_vala.git,GNOME_vala.git_commits.csv,GNOME_vala.git_hullabaloo_CONTRIBUTING.md
aws_aws-cli,_aws_aws-cli_commits.csv,aws_aws-cli_hullabaloo_CONTRIBUTING.md
google_yapf.git,_google_yapf.git_commits.csv,google_yapf.git_hullabaloo_CONTRIBUTING
pytest-dev_pytest.git,_pytest-dev_pytest.git_commits.csv,pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt
pika_pika,_pika_pika_commits.csv,pika_pika_hullabaloo_CONTRIBUTING.md
Backblaze_b2-sdk-python.git,_Backblaze_b2-sdk-python.git_commits.csv,Backblaze_b2-sdk-python.git_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-ntp.git,_puppetlabs_puppetlabs-ntp.git_commits.csv,puppetlabs_puppetlabs-ntp.git_hullabaloo_CONTRIBUTING.md
geopandas_geopandas.git,_geopandas_geopandas.git_commits.csv,geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md
jupyter_jupyter-sphinx.git,_jupyter_jupyter-sphinx.git_commits.csv,jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md
Pylons_venusian,_Pylons_venusian_commits.csv,Pylons_venusian_hullabaloo_CONTRIBUTING.rst
jjjake_internetarchive.git,_jjjake_internetarchive.git_commits.csv,jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst
cucumber_aruba.git,_cucumber_aruba.git_commits.csv,cucumber_aruba.git_hullabaloo_CONTRIBUTING.md
rackerlabs_kthresher,_rackerlabs_kthresher_commits.csv,rackerlabs_kthresher_hullabaloo_CONTRIBUTING.md
google_jimfs.git,_google_jimfs.git_commits.csv,google_jimfs.git_hullabaloo_CONTRIBUTING.md
openstack_rally.git,_openstack_rally.git_commits.csv,openstack_rally.git_hullabaloo_CONTRIBUTING.rst
jupyter_jupyter_client,_jupyter_jupyter_client_commits.csv,jupyter_jupyter_client_hullabaloo_CONTRIBUTING.md
KDAB_hotspot.git,_KDAB_hotspot.git_commits.csv,KDAB_hotspot.git_hullabaloo_CONTRIBUTING.md
lunarmodules_say.git,_lunarmodules_say.git_commits.csv,lunarmodules_say.git_hullabaloo_CONTRIBUTING.md
coturn_coturn,coturn_coturn_commits.csv,coturn_coturn_hullabaloo_CONTRIBUTING.md
cleishm_libneo4j-client,cleishm_libneo4j-client_commits.csv,cleishm_libneo4j-client_hullabaloo_CONTRIBUTING.md
python_typed_ast.git,_python_typed_ast.git_commits.csv,python_typed_ast.git_hullabaloo_CONTRIBUTING.md
pyutilib_pyutilib,_pyutilib_pyutilib_commits.csv,pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md
prometheus_haproxy_exporter,_prometheus_haproxy_exporter_commits.csv,prometheus_haproxy_exporter_hullabaloo_CONTRIBUTING.md
ahmetb_kubectx,_ahmetb_kubectx_commits.csv,ahmetb_kubectx_hullabaloo_CONTRIBUTING.md
guillaumechereau_goxel.git,_guillaumechereau_goxel.git_commits.csv,guillaumechereau_goxel.git_hullabaloo_CONTRIBUTING.md
pavlov99_json-rpc,_pavlov99_json-rpc_commits.csv,pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md
pygraphviz_pygraphviz.git,_pygraphviz_pygraphviz.git_commits.csv,pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst
google_xsecurelock,google_xsecurelock_commits.csv,google_xsecurelock_hullabaloo_CONTRIBUTING
solnic_virtus.git,_solnic_virtus.git_commits.csv,solnic_virtus.git_hullabaloo_CONTRIBUTING.md
karenetheridge_B-Hooks-OP-Check,_karenetheridge_B-Hooks-OP-Check_commits.csv,karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING
robert7_nixnote2,_robert7_nixnote2_commits.csv,robert7_nixnote2_hullabaloo_CONTRIBUTING.md
datastax_python-driver.git,_datastax_python-driver.git_commits.csv,datastax_python-driver.git_hullabaloo_CONTRIBUTING.md
petkaantonov_bluebird.git,_petkaantonov_bluebird.git_commits.csv,petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md
Pylons_plaster_pastedeploy.git,_Pylons_plaster_pastedeploy.git_commits.csv,Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst
zkat_ssri.git,_zkat_ssri.git_commits.csv,zkat_ssri.git_hullabaloo_CONTRIBUTING.md
jtauber_pyuca,_jtauber_pyuca_commits.csv,jtauber_pyuca_hullabaloo_CONTRIBUTING.md
fog_fog-local,_fog_fog-local_commits.csv,fog_fog-local_hullabaloo_CONTRIBUTING.md
cespare_reflex.git,_cespare_reflex.git_commits.csv,cespare_reflex.git_hullabaloo_CONTRIBUTING.md
darold_pgbadger.git,_darold_pgbadger.git_commits.csv,darold_pgbadger.git_hullabaloo_CONTRIBUTING.md
gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org_ruby_gems_gitlab-mail_room.git_commits.csv,gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md
google_highwayhash,_google_highwayhash_commits.csv,google_highwayhash_hullabaloo_CONTRIBUTING
libvirt_libvirt-python.git,libvirt_libvirt-python.git_commits.csv,libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst
seccomp_libseccomp,_seccomp_libseccomp_commits.csv,seccomp_libseccomp_hullabaloo_CONTRIBUTING.md
cesbit_libcleri.git,_cesbit_libcleri.git_commits.csv,cesbit_libcleri.git_hullabaloo_CONTRIBUTING.md
ruby-ldap_ruby-net-ldap.git,_ruby-ldap_ruby-net-ldap.git_commits.csv,ruby-ldap_ruby-net-ldap.git_hullabaloo_CONTRIBUTING.md
vim-airline_vim-airline.git,_vim-airline_vim-airline.git_commits.csv,vim-airline_vim-airline.git_hullabaloo_CONTRIBUTING.md
jackfranklin_gulp-load-plugins,_jackfranklin_gulp-load-plugins_commits.csv,jackfranklin_gulp-load-plugins_hullabaloo_CONTRIBUTING.md
digitalbazaar_pyld,_digitalbazaar_pyld_commits.csv,digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst
rsms_inter,_rsms_inter_commits.csv,rsms_inter_hullabaloo_CONTRIBUTING.md
chaijs_chai,_chaijs_chai_commits.csv,chaijs_chai_hullabaloo_CONTRIBUTING.md
mathjax_MathJax,_mathjax_MathJax_commits.csv,mathjax_MathJax_hullabaloo_CONTRIBUTING.md
dbus_dbus-python,dbus_dbus-python_commits.csv,dbus_dbus-python_hullabaloo_CONTRIBUTING
python-ldap_python-ldap,_python-ldap_python-ldap_commits.csv,python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst
pallets_click.git,_pallets_click.git_commits.csv,pallets_click.git_hullabaloo_CONTRIBUTING.rst
ktbyers_netmiko,_ktbyers_netmiko_commits.csv,ktbyers_netmiko_hullabaloo_CONTRIBUTING.md
ipython_ipykernel.git,_ipython_ipykernel.git_commits.csv,ipython_ipykernel.git_hullabaloo_CONTRIBUTING.md
calamares_calamares.git,_calamares_calamares.git_commits.csv,calamares_calamares.git_hullabaloo_CONTRIBUTING.md
osantana_dicteval.git,_osantana_dicteval.git_commits.csv,osantana_dicteval.git_hullabaloo_CONTRIBUTING.md
doctrine_instantiator,_doctrine_instantiator_commits.csv,doctrine_instantiator_hullabaloo_CONTRIBUTING.md
nojhan_liquidprompt.git,_nojhan_liquidprompt.git_commits.csv,nojhan_liquidprompt.git_hullabaloo_CONTRIBUTING.md
marshmallow-code_marshmallow.git,marshmallow-code_marshmallow.git_commits.csv,marshmallow-code_marshmallow.git_CONTRIBUTING.rst
aws_aws-xray-sdk-python,_aws_aws-xray-sdk-python_commits.csv,aws_aws-xray-sdk-python_hullabaloo_CONTRIBUTING.md
JDimproved_JDim.git,_JDimproved_JDim.git_commits.csv,JDimproved_JDim.git_hullabaloo_CONTRIBUTING.md
spyder-ide_qtawesome,_spyder-ide_qtawesome_commits.csv,spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md
puppetlabs_facter.git,_puppetlabs_facter.git_commits.csv,puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md
elasticsearch_curator.git,_elasticsearch_curator.git_commits.csv,elasticsearch_curator.git_hullabaloo_CONTRIBUTING.md
marshmallow-code_flask-marshmallow.git,_marshmallow-code_flask-marshmallow.git_commits.csv,marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_outguess,_resurrecting-open-source-projects_outguess_commits.csv,resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md
GNOME_geary.git,GNOME_geary.git_commits.csv,GNOME_geary.git_hullabaloo_CONTRIBUTING.md
jashkenas_coffeescript,_jashkenas_coffeescript_commits.csv,jashkenas_coffeescript_hullabaloo_CONTRIBUTING.md
spyder-ide_qtpy,_spyder-ide_qtpy_commits.csv,spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst
thoughtbot_shoulda-matchers,_thoughtbot_shoulda-matchers_commits.csv,thoughtbot_shoulda-matchers_hullabaloo_CONTRIBUTING.md
defunkt_mustache,_defunkt_mustache_commits.csv,defunkt_mustache_hullabaloo_CONTRIBUTING.md
thoughtbot_factory_girl.git,_thoughtbot_factory_girl.git_commits.csv,thoughtbot_factory_girl.git_hullabaloo_CONTRIBUTING.md
oauth-xx_oauth-ruby,_oauth-xx_oauth-ruby_commits.csv,oauth-xx_oauth-ruby_hullabaloo_CONTRIBUTING.md
psf_black.git,_psf_black.git_commits.csv,psf_black.git_hullabaloo_CONTRIBUTING.md
GNOME_gnome-builder.git,GNOME_gnome-builder.git_commits.csv,GNOME_gnome-builder.git_hullabaloo_CONTRIBUTING.md
softlayer_softlayer-python,_softlayer_softlayer-python_commits.csv,softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md
tkf_emacs-jedi.git,_tkf_emacs-jedi.git_commits.csv,tkf_emacs-jedi.git_hullabaloo_CONTRIBUTING.md
pgbackrest_pgbackrest,_pgbackrest_pgbackrest_commits.csv,pgbackrest_pgbackrest_hullabaloo_CONTRIBUTING.md
shouldjs_should.js.git,_shouldjs_should.js.git_commits.csv,shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md
pytest-dev_pytest-bdd.git,_pytest-dev_pytest-bdd.git_commits.csv,pytest-dev_pytest-bdd.git_hullabaloo_CONTRIBUTING.md
jupyter_terminado,_jupyter_terminado_commits.csv,jupyter_terminado_hullabaloo_CONTRIBUTING.rst
django-waffle_django-waffle,_django-waffle_django-waffle_commits.csv,django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst
processone_fast_tls.git,_processone_fast_tls.git_commits.csv,processone_fast_tls.git_hullabaloo_CONTRIBUTING.md
metaodi_osmapi.git,_metaodi_osmapi.git_commits.csv,metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md
kilobyte_ndctl,kilobyte_ndctl_commits.csv,kilobyte_ndctl_hullabaloo_CONTRIBUTING.md
kilobyte_memkind,kilobyte_memkind_commits.csv,kilobyte_memkind_hullabaloo_CONTRIBUTING
pallets_itsdangerous,_pallets_itsdangerous_commits.csv,pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst
office_ghostwriter,office_ghostwriter_commits.csv,office_ghostwriter_hullabaloo_CONTRIBUTING.md
prometheus_mysqld_exporter,_prometheus_mysqld_exporter_commits.csv,prometheus_mysqld_exporter_hullabaloo_CONTRIBUTING.md
twilio_twilio-python,_twilio_twilio-python_commits.csv,twilio_twilio-python_hullabaloo_CONTRIBUTING.md
c4urself_bump2version,_c4urself_bump2version_commits.csv,c4urself_bump2version_hullabaloo_CONTRIBUTING.md
google_benchmark,_google_benchmark_commits.csv,google_benchmark_hullabaloo_CONTRIBUTING.md
pgRouting_pgrouting.git,_pgRouting_pgrouting.git_commits.csv,pgRouting_pgrouting.git_hullabaloo_CONTRIBUTING
galaxyproject_bioblend,_galaxyproject_bioblend_commits.csv,galaxyproject_bioblend_hullabaloo_CONTRIBUTING.md
gawel_panoramisk.git,_gawel_panoramisk.git_commits.csv,gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst
rails_jquery-rails.git,_rails_jquery-rails.git_commits.csv,rails_jquery-rails.git_hullabaloo_CONTRIBUTING.md
kilobyte_pmemkv,kilobyte_pmemkv_commits.csv,kilobyte_pmemkv_hullabaloo_CONTRIBUTING.md
processone_pkix.git,_processone_pkix.git_commits.csv,processone_pkix.git_hullabaloo_CONTRIBUTING.md
faye_faye,_faye_faye_commits.csv,faye_faye_hullabaloo_CONTRIBUTING.md
openstack_swift.git,_openstack_swift.git_commits.csv,openstack_swift.git_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.proxy,_zopefoundation_zope.proxy_commits.csv,zopefoundation_zope.proxy_hullabaloo_CONTRIBUTING.md
alastair_python-musicbrainz-ngs,_alastair_python-musicbrainz-ngs_commits.csv,alastair_python-musicbrainz-ngs_hullabaloo_CONTRIBUTING.md
RIPE-NCC_ripe-atlas-cousteau.git,_RIPE-NCC_ripe-atlas-cousteau.git_commits.csv,RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst
google_python-gflags.git,_google_python-gflags.git_commits.csv,google_python-gflags.git_hullabaloo_CONTRIBUTING.md
numba_numba.git,_numba_numba.git_commits.csv,numba_numba.git_hullabaloo_CONTRIBUTING.md
composer_semver,_composer_semver_commits.csv,composer_semver_hullabaloo_CONTRIBUTING.md
mdbootstrap_perfect-scrollbar,_mdbootstrap_perfect-scrollbar_commits.csv,mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md
heroku_netrc,_heroku_netrc_commits.csv,heroku_netrc_hullabaloo_CONTRIBUTING.md
eclipse_paho.mqtt.python.git,_eclipse_paho.mqtt.python.git_commits.csv,eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md
GNOME_folks,GNOME_folks_commits.csv,GNOME_folks_hullabaloo_CONTRIBUTING.md
sshguard_sshguard.git,sshguard_sshguard.git_commits.csv,sshguard_sshguard.git_hullabaloo_CONTRIBUTING.rst
requests-cache_requests-cache,_requests-cache_requests-cache_commits.csv,requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.testrunner,_zopefoundation_zope.testrunner_commits.csv,zopefoundation_zope.testrunner_hullabaloo_CONTRIBUTING.md
ua-parser_uap-core.git,_ua-parser_uap-core.git_commits.csv,ua-parser_uap-core.git_hullabaloo_CONTRIBUTING.md
voxpupuli_pypuppetdb,_voxpupuli_pypuppetdb_commits.csv,voxpupuli_pypuppetdb_hullabaloo_CONTRIBUTING.md
mozilla_source-map,_mozilla_source-map_commits.csv,mozilla_source-map_hullabaloo_CONTRIBUTING.md
libosinfo_osinfo-db-tools.git,libosinfo_osinfo-db-tools.git_commits.csv,libosinfo_osinfo-db-tools.git_hullabaloo_CONTRIBUTING.md
dagolden_math-random-oo.git,_dagolden_math-random-oo.git_commits.csv,dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING
clojure_core.cache,_clojure_core.cache_commits.csv,clojure_core.cache_hullabaloo_CONTRIBUTING.md
pub_scm_linux_kernel_git_jberg_iw.git,pub_scm_linux_kernel_git_jberg_iw.git_commits.csv,pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING
pydata_xarray,_pydata_xarray_commits.csv,pydata_xarray_hullabaloo_CONTRIBUTING.md
pantsbuild_pex.git,_pantsbuild_pex.git_commits.csv,pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md
Diaoul_subliminal.git,_Diaoul_subliminal.git_commits.csv,Diaoul_subliminal.git_hullabaloo_CONTRIBUTING.md
janestreet_sexplib.git,_janestreet_sexplib.git_commits.csv,janestreet_sexplib.git_hullabaloo_CONTRIBUTING.md
google_googletest.git,_google_googletest.git_commits.csv,google_googletest.git_hullabaloo_CONTRIBUTING.md
nginxinc_nginx-prometheus-exporter,_nginxinc_nginx-prometheus-exporter_commits.csv,nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md
simd-everywhere_simde,_simd-everywhere_simde_commits.csv,simd-everywhere_simde_hullabaloo_CONTRIBUTING.md
EnterpriseDB_mysql_fdw.git,_EnterpriseDB_mysql_fdw.git_commits.csv,EnterpriseDB_mysql_fdw.git_hullabaloo_CONTRIBUTING.md
sphinx-contrib_restbuilder.git,_sphinx-contrib_restbuilder.git_commits.csv,sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst
davidcelis_api-pagination.git,_davidcelis_api-pagination.git_commits.csv,davidcelis_api-pagination.git_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.component,_zopefoundation_zope.component_commits.csv,zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md
iovisor_bcc.git,_iovisor_bcc.git_commits.csv,iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md
puppetlabs_puppetlabs-firewall,_puppetlabs_puppetlabs-firewall_commits.csv,puppetlabs_puppetlabs-firewall_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-concat,_puppetlabs_puppetlabs-concat_commits.csv,puppetlabs_puppetlabs-concat_hullabaloo_CONTRIBUTING.md
philpem_printer-driver-ptouch.git,_philpem_printer-driver-ptouch.git_commits.csv,philpem_printer-driver-ptouch.git_hullabaloo_CONTRIBUTING.md
diff-match-patch-python_diff-match-patch,_diff-match-patch-python_diff-match-patch_commits.csv,diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md
dask_partd.git,_dask_partd.git_commits.csv,dask_partd.git_hullabaloo_CONTRIBUTING.md
boto_botocore,_boto_botocore_commits.csv,boto_botocore_hullabaloo_CONTRIBUTING.md
locationtech_jts.git,_locationtech_jts.git_commits.csv,locationtech_jts.git_hullabaloo_CONTRIBUTING.md
osmcode_osmium-tool.git,_osmcode_osmium-tool.git_commits.csv,osmcode_osmium-tool.git_hullabaloo_CONTRIBUTING.md
sferik_twitter,_sferik_twitter_commits.csv,sferik_twitter_hullabaloo_CONTRIBUTING.md
developit_preact.git,_developit_preact.git_commits.csv,developit_preact.git_hullabaloo_CONTRIBUTING.md
matrix-org_synapse.git,_matrix-org_synapse.git_commits.csv,matrix-org_synapse.git_hullabaloo_CONTRIBUTING.rst
common-workflow-language_schema_salad,_common-workflow-language_schema_salad_commits.csv,common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md
eproxus_meck.git,_eproxus_meck.git_commits.csv,eproxus_meck.git_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-apache,_puppetlabs_puppetlabs-apache_commits.csv,puppetlabs_puppetlabs-apache_hullabaloo_CONTRIBUTING.md
jazzband_django-recurrence,_jazzband_django-recurrence_commits.csv,jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst
Backblaze_B2_Command_Line_Tool,_Backblaze_B2_Command_Line_Tool_commits.csv,Backblaze_B2_Command_Line_Tool_hullabaloo_CONTRIBUTING.md
mvz_ruby-gir-ffi,_mvz_ruby-gir-ffi_commits.csv,mvz_ruby-gir-ffi_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.event,_zopefoundation_zope.event_commits.csv,zopefoundation_zope.event_hullabaloo_CONTRIBUTING.md
nesquena_rabl,_nesquena_rabl_commits.csv,nesquena_rabl_hullabaloo_CONTRIBUTING.md
pytest-dev_pytest-cov.git,_pytest-dev_pytest-cov.git_commits.csv,pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md
linuxmint_cjs.git,_linuxmint_cjs.git_commits.csv,linuxmint_cjs.git_hullabaloo_CONTRIBUTING.md
michaeljones_breathe.git,_michaeljones_breathe.git_commits.csv,michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst
GoalSmashers_clean-css.git,_GoalSmashers_clean-css.git_commits.csv,GoalSmashers_clean-css.git_hullabaloo_CONTRIBUTING.md
mapbox_leaflet-image,_mapbox_leaflet-image_commits.csv,mapbox_leaflet-image_hullabaloo_CONTRIBUTING.md
httpie_httpie,_httpie_httpie_commits.csv,httpie_httpie_hullabaloo_CONTRIBUTING.rst
bit-team_backintime,_bit-team_backintime_commits.csv,bit-team_backintime_hullabaloo_CONTRIBUTING.md
howardabrams_node-mocks-http,_howardabrams_node-mocks-http_commits.csv,howardabrams_node-mocks-http_hullabaloo_CONTRIBUTING.md
yrro_command-t,yrro_command-t_commits.csv,yrro_command-t_hullabaloo_CONTRIBUTING.md
zaach_jison,_zaach_jison_commits.csv,zaach_jison_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.interface.git,_zopefoundation_zope.interface.git_commits.csv,zopefoundation_zope.interface.git_hullabaloo_CONTRIBUTING.md
rbenv_ruby-build.git,_rbenv_ruby-build.git_commits.csv,rbenv_ruby-build.git_hullabaloo_CONTRIBUTING.md
mishoo_UglifyJS2,_mishoo_UglifyJS2_commits.csv,mishoo_UglifyJS2_hullabaloo_CONTRIBUTING.md
Pylons_hupper,_Pylons_hupper_commits.csv,Pylons_hupper_hullabaloo_CONTRIBUTING.rst
abishekvashok_cmatrix.git,_abishekvashok_cmatrix.git_commits.csv,abishekvashok_cmatrix.git_hullabaloo_CONTRIBUTING.md
django-extensions_django-extensions,_django-extensions_django-extensions_commits.csv,django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md
P403n1x87_austin,P403n1x87_austin_commits.csv,P403n1x87_austin_hullabaloo_CONTRIBUTING.md
mcmtroffaes_pathlib2.git,_mcmtroffaes_pathlib2.git_commits.csv,mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst
zmartzone_cjose.git,_zmartzone_cjose.git_commits.csv,zmartzone_cjose.git_hullabaloo_CONTRIBUTING.md
webrtchacks_adapter,_webrtchacks_adapter_commits.csv,webrtchacks_adapter_hullabaloo_CONTRIBUTING
python-bugzilla_python-bugzilla,_python-bugzilla_python-bugzilla_commits.csv,python-bugzilla_python-bugzilla_hullabaloo_CONTRIBUTING.md
markdown-it_markdown-it,_markdown-it_markdown-it_commits.csv,markdown-it_markdown-it_hullabaloo_CONTRIBUTING.md
jazzband_django-debug-toolbar.git,_jazzband_django-debug-toolbar.git_commits.csv,jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md
rasterio_rasterio.git,_rasterio_rasterio.git_commits.csv,rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst
zyga_padme,_zyga_padme_commits.csv,zyga_padme_hullabaloo_CONTRIBUTING.rst
zloirock_core-js.git,_zloirock_core-js.git_commits.csv,zloirock_core-js.git_hullabaloo_CONTRIBUTING.md
dropbox_dropbox-sdk-python,_dropbox_dropbox-sdk-python_commits.csv,dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst
scrapinghub_dateparser,_scrapinghub_dateparser_commits.csv,scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst
gstreamer_orc,gstreamer_orc_commits.csv,gstreamer_orc_hullabaloo_CONTRIBUTING.md
nodejs_node-gyp.git,_nodejs_node-gyp.git_commits.csv,nodejs_node-gyp.git_hullabaloo_CONTRIBUTING.md
kornelski_pngquant.git,_kornelski_pngquant.git_commits.csv,kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md
Iotic-Labs_py-ubjson,_Iotic-Labs_py-ubjson_commits.csv,Iotic-Labs_py-ubjson_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-postgresql.git,_puppetlabs_puppetlabs-postgresql.git_commits.csv,puppetlabs_puppetlabs-postgresql.git_hullabaloo_CONTRIBUTING.md
GNOME_json-glib.git,GNOME_json-glib.git_commits.csv,GNOME_json-glib.git_hullabaloo_CONTRIBUTING.md
GNOME_gnome-clocks.git,GNOME_gnome-clocks.git_commits.csv,GNOME_gnome-clocks.git_hullabaloo_CONTRIBUTING.md
Leaflet_Leaflet.markercluster,_Leaflet_Leaflet.markercluster_commits.csv,Leaflet_Leaflet.markercluster_hullabaloo_CONTRIBUTING.md
osmcode_libosmium.git,_osmcode_libosmium.git_commits.csv,osmcode_libosmium.git_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_dcfldd,_resurrecting-open-source-projects_dcfldd_commits.csv,resurrecting-open-source-projects_dcfldd_hullabaloo_CONTRIBUTING.md
jazzband_django-pipeline,_jazzband_django-pipeline_commits.csv,jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst
jquery_qunit.git,_jquery_qunit.git_commits.csv,jquery_qunit.git_hullabaloo_CONTRIBUTING.md
gpodder_mygpoclient,_gpodder_mygpoclient_commits.csv,gpodder_mygpoclient_hullabaloo_CONTRIBUTING.md
pytroll_satpy,_pytroll_satpy_commits.csv,pytroll_satpy_hullabaloo_CONTRIBUTING.rst
GNOME_mobile-broadband-provider-info,GNOME_mobile-broadband-provider-info_commits.csv,GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING
01org_isa-l.git,_01org_isa-l.git_commits.csv,01org_isa-l.git_hullabaloo_CONTRIBUTING.md
jbeder_yaml-cpp,_jbeder_yaml-cpp_commits.csv,jbeder_yaml-cpp_hullabaloo_CONTRIBUTING.md
cookiecutter_whichcraft,_cookiecutter_whichcraft_commits.csv,cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst
clojure_tools.logging.git,_clojure_tools.logging.git_commits.csv,clojure_tools.logging.git_hullabaloo_CONTRIBUTING.md
encode_django-rest-framework,_encode_django-rest-framework_commits.csv,encode_django-rest-framework_hullabaloo_CONTRIBUTING.md
matthewdeanmartin_terminaltables,_matthewdeanmartin_terminaltables_commits.csv,matthewdeanmartin_terminaltables_hullabaloo_CONTRIBUTING.md
namhyung_uftrace,_namhyung_uftrace_commits.csv,namhyung_uftrace_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_sniffit,_resurrecting-open-source-projects_sniffit_commits.csv,resurrecting-open-source-projects_sniffit_hullabaloo_CONTRIBUTING.md
nicolargo_glances,_nicolargo_glances_commits.csv,nicolargo_glances_hullabaloo_CONTRIBUTING.md
elastic_elasticsearch-ruby,_elastic_elasticsearch-ruby_commits.csv,elastic_elasticsearch-ruby_hullabaloo_CONTRIBUTING.md
idlesign_django-sitetree,_idlesign_django-sitetree_commits.csv,idlesign_django-sitetree_hullabaloo_CONTRIBUTING
intridea_grape-entity,_intridea_grape-entity_commits.csv,intridea_grape-entity_hullabaloo_CONTRIBUTING.md
dbus_dbus-glib.git,dbus_dbus-glib.git_commits.csv,dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
SethMMorton_natsort.git,_SethMMorton_natsort.git_commits.csv,SethMMorton_natsort.git_hullabaloo_CONTRIBUTING.md
guessit-io_guessit.git,_guessit-io_guessit.git_commits.csv,guessit-io_guessit.git_hullabaloo_CONTRIBUTING.rst
elastic_elasticsearch-py.git,_elastic_elasticsearch-py.git_commits.csv,elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md
NagiosEnterprises_nrpe.git,_NagiosEnterprises_nrpe.git_commits.csv,NagiosEnterprises_nrpe.git_hullabaloo_CONTRIBUTING.md
pylons_plaster,_pylons_plaster_commits.csv,pylons_plaster_hullabaloo_CONTRIBUTING.rst
oath-toolkit_oath-toolkit,oath-toolkit_oath-toolkit_commits.csv,oath-toolkit_oath-toolkit_hullabaloo_CONTRIBUTING.md
rytilahti_python-miio.git,_rytilahti_python-miio.git_commits.csv,rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md
RiotGames_buff-extensions,_RiotGames_buff-extensions_commits.csv,RiotGames_buff-extensions_hullabaloo_CONTRIBUTING.md
ronf_asyncssh,_ronf_asyncssh_commits.csv,ronf_asyncssh_hullabaloo_CONTRIBUTING.rst
zopefoundation_zc.lockfile,_zopefoundation_zc.lockfile_commits.csv,zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md
ImageOptim_libimagequant.git,_ImageOptim_libimagequant.git_commits.csv,ImageOptim_libimagequant.git_hullabaloo_CONTRIBUTING.md
ianare_exif-py,_ianare_exif-py_commits.csv,ianare_exif-py_hullabaloo_CONTRIBUTING.rst
websocket-client_websocket-client,_websocket-client_websocket-client_commits.csv,websocket-client_websocket-client_hullabaloo_CONTRIBUTING.md
i18next_i18next,_i18next_i18next_commits.csv,i18next_i18next_hullabaloo_CONTRIBUTING.md
aptly-dev_aptly.git,_aptly-dev_aptly.git_commits.csv,aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md
pymodbus-dev_pymodbus.git,_pymodbus-dev_pymodbus.git_commits.csv,pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.i18nmessageid,_zopefoundation_zope.i18nmessageid_commits.csv,zopefoundation_zope.i18nmessageid_hullabaloo_CONTRIBUTING.md
theskumar_python-dotenv.git,_theskumar_python-dotenv.git_commits.csv,theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md
sobolevn_django-split-settings,_sobolevn_django-split-settings_commits.csv,sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst
powerline_powerline,_powerline_powerline_commits.csv,powerline_powerline_hullabaloo_CONTRIBUTING.rst
varvet_pundit,_varvet_pundit_commits.csv,varvet_pundit_hullabaloo_CONTRIBUTING.md
karenetheridge_Module-Manifest,_karenetheridge_Module-Manifest_commits.csv,karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING
lxc_lxcfs.git,_lxc_lxcfs.git_commits.csv,lxc_lxcfs.git_hullabaloo_CONTRIBUTING.md
colmap_colmap,_colmap_colmap_commits.csv,colmap_colmap_hullabaloo_CONTRIBUTING.md
tantale_deprecated.git,_tantale_deprecated.git_commits.csv,tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst
voxpupuli_librarian-puppet.git,_voxpupuli_librarian-puppet.git_commits.csv,voxpupuli_librarian-puppet.git_hullabaloo_CONTRIBUTING.md
jmaslak_Net-Netmask.git,_jmaslak_Net-Netmask.git_commits.csv,jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING
jobovy_galpy.git,_jobovy_galpy.git_commits.csv,jobovy_galpy.git_hullabaloo_CONTRIBUTING.md
pydanny_cached-property.git,_pydanny_cached-property.git_commits.csv,pydanny_cached-property.git_hullabaloo_CONTRIBUTING.rst
ros_robot_state_publisher,_ros_robot_state_publisher_commits.csv,ros_robot_state_publisher_hullabaloo_CONTRIBUTING.md
pazz_alot,_pazz_alot_commits.csv,pazz_alot_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_cbm,_resurrecting-open-source-projects_cbm_commits.csv,resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md
thumbor_libthumbor,_thumbor_libthumbor_commits.csv,thumbor_libthumbor_hullabaloo_CONTRIBUTING
epeli_underscore.string,_epeli_underscore.string_commits.csv,epeli_underscore.string_hullabaloo_CONTRIBUTING.md
geopython_geolinks.git,_geopython_geolinks.git_commits.csv,geopython_geolinks.git_hullabaloo_CONTRIBUTING.md
zeroc-ice_ice-builder-gradle-debian-packaging.git,zeroc-ice_ice-builder-gradle-debian-packaging.git_commits.csv,zeroc-ice_ice-builder-gradle-debian-packaging.git_hullabaloo_CONTRIBUTING.md
maxmind_geoip-api-perl.git,_maxmind_geoip-api-perl.git_commits.csv,maxmind_geoip-api-perl.git_hullabaloo_CONTRIBUTING.md
httprb_http.rb,_httprb_http.rb_commits.csv,httprb_http.rb_hullabaloo_CONTRIBUTING.md
rails_rails-dom-testing,_rails_rails-dom-testing_commits.csv,rails_rails-dom-testing_hullabaloo_CONTRIBUTING.md
jas_libntlm,jas_libntlm_commits.csv,jas_libntlm_hullabaloo_CONTRIBUTING.md
silx-kit_pyFAI,_silx-kit_pyFAI_commits.csv,silx-kit_pyFAI_hullabaloo_CONTRIBUTING.md
rakhimov_scram.git,_rakhimov_scram.git_commits.csv,rakhimov_scram.git_hullabaloo_CONTRIBUTING.md
capistrano_sshkit.git,_capistrano_sshkit.git_commits.csv,capistrano_sshkit.git_hullabaloo_CONTRIBUTING.md
X0rg_CPU-X.git,_X0rg_CPU-X.git_commits.csv,X0rg_CPU-X.git_hullabaloo_CONTRIBUTING.md
florimondmanca_djangorestframework-api-key,_florimondmanca_djangorestframework-api-key_commits.csv,florimondmanca_djangorestframework-api-key_hullabaloo_CONTRIBUTING.md
zopefoundation_BTrees.git,_zopefoundation_BTrees.git_commits.csv,zopefoundation_BTrees.git_hullabaloo_CONTRIBUTING.md
selectize_selectize.js,_selectize_selectize.js_commits.csv,selectize_selectize.js_hullabaloo_CONTRIBUTING.md
jupyter_nbformat,_jupyter_nbformat_commits.csv,jupyter_nbformat_hullabaloo_CONTRIBUTING.md
checkpoint-restore_criu.git,_checkpoint-restore_criu.git_commits.csv,checkpoint-restore_criu.git_hullabaloo_CONTRIBUTING.md
untitaker_python-atomicwrites,_untitaker_python-atomicwrites_commits.csv,untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst
dpmb_dpmb,dpmb_dpmb_commits.csv,dpmb_dpmb_hullabaloo_CONTRIBUTING.md
emcrisostomo_fswatch.git,_emcrisostomo_fswatch.git_commits.csv,emcrisostomo_fswatch.git_hullabaloo_CONTRIBUTING.md
flask-restful_flask-restful,_flask-restful_flask-restful_commits.csv,flask-restful_flask-restful_hullabaloo_CONTRIBUTING.md
geopython_stetl.git,_geopython_stetl.git_commits.csv,geopython_stetl.git_hullabaloo_CONTRIBUTING.md
django-polymorphic_django-polymorphic,_django-polymorphic_django-polymorphic_commits.csv,django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst
jendrikseipp_vulture.git,_jendrikseipp_vulture.git_commits.csv,jendrikseipp_vulture.git_hullabaloo_CONTRIBUTING.rst
GNOME_gnome-calendar.git,GNOME_gnome-calendar.git_commits.csv,GNOME_gnome-calendar.git_hullabaloo_CONTRIBUTING.md
capistrano_capistrano.git,_capistrano_capistrano.git_commits.csv,capistrano_capistrano.git_hullabaloo_CONTRIBUTING
mwilliamson_spur.py.git,_mwilliamson_spur.py.git_commits.csv,mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst
troglobit_inadyn,_troglobit_inadyn_commits.csv,troglobit_inadyn_hullabaloo_CONTRIBUTING.md
1 repo_id commits_filepath fvf_filepath
2 aio-libs_aiomysql.git _aio-libs_aiomysql.git_commits.csv aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst
3 aio-libs_aiohttp.git _aio-libs_aiohttp.git_commits.csv aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst
4 jupyter_jupyter_console _jupyter_jupyter_console_commits.csv jupyter_jupyter_console_hullabaloo_CONTRIBUTING.md
5 ixion_ixion.git ixion_ixion.git_commits.csv ixion_ixion.git_hullabaloo_CONTRIBUTING.md
6 box_genty.git _box_genty.git_commits.csv box_genty.git_hullabaloo_CONTRIBUTING.rst
7 hackebrot_jinja2-time _hackebrot_jinja2-time_commits.csv hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst
8 resurrecting-open-source-projects_nbtscan _resurrecting-open-source-projects_nbtscan_commits.csv resurrecting-open-source-projects_nbtscan_hullabaloo_CONTRIBUTING.md
9 DonyorM_weresync.git _DonyorM_weresync.git_commits.csv DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst
10 datalad_datalad datalad_datalad_commits.csv datalad_datalad_hullabaloo_CONTRIBUTING.md
11 korfuri_django-prometheus _korfuri_django-prometheus_commits.csv korfuri_django-prometheus_hullabaloo_CONTRIBUTING.md
12 iovisor_bpftrace _iovisor_bpftrace_commits.csv iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md
13 stachenov_quazip.git _stachenov_quazip.git_commits.csv stachenov_quazip.git_hullabaloo_CONTRIBUTING.md
14 netty_netty _netty_netty_commits.csv netty_netty_hullabaloo_CONTRIBUTING.md
15 twbs_bootstrap-sass _twbs_bootstrap-sass_commits.csv twbs_bootstrap-sass_hullabaloo_CONTRIBUTING.md
16 libosinfo_libosinfo.git libosinfo_libosinfo.git_commits.csv libosinfo_libosinfo.git_hullabaloo_CONTRIBUTING.md
17 zopefoundation_roman _zopefoundation_roman_commits.csv zopefoundation_roman_hullabaloo_CONTRIBUTING.md
18 googlei18n_fontmake.git _googlei18n_fontmake.git_commits.csv googlei18n_fontmake.git_hullabaloo_CONTRIBUTING.md
19 Graylog2_gelf-rb _Graylog2_gelf-rb_commits.csv Graylog2_gelf-rb_hullabaloo_CONTRIBUTING.md
20 mqttjs_mqtt-packet _mqttjs_mqtt-packet_commits.csv mqttjs_mqtt-packet_hullabaloo_CONTRIBUTING.md
21 tqdm_tqdm.git _tqdm_tqdm.git_commits.csv tqdm_tqdm.git_hullabaloo_CONTRIBUTING.md
22 ranger_ranger.git _ranger_ranger.git_commits.csv ranger_ranger.git_hullabaloo_CONTRIBUTING.md
23 intridea_oauth2 _intridea_oauth2_commits.csv intridea_oauth2_hullabaloo_CONTRIBUTING.md
24 timothycrosley_hug.git _timothycrosley_hug.git_commits.csv timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md
25 eavgerinos_pkg-pick eavgerinos_pkg-pick_commits.csv eavgerinos_pkg-pick_hullabaloo_CONTRIBUTING.md
26 bk138_gromit-mpx.git _bk138_gromit-mpx.git_commits.csv bk138_gromit-mpx.git_hullabaloo_CONTRIBUTING.md
27 watson-developer-cloud_python-sdk.git _watson-developer-cloud_python-sdk.git_commits.csv watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md
28 vcr_vcr _vcr_vcr_commits.csv _vcr_vcr_CONTRIBUTING.md
29 scikit-learn-contrib_imbalanced-learn.git _scikit-learn-contrib_imbalanced-learn.git_commits.csv scikit-learn-contrib_imbalanced-learn.git_hullabaloo_CONTRIBUTING.rst
30 ninja-build_ninja.git _ninja-build_ninja.git_commits.csv ninja-build_ninja.git_hullabaloo_CONTRIBUTING.md
31 olive-editor_olive _olive-editor_olive_commits.csv olive-editor_olive_hullabaloo_CONTRIBUTING.md
32 lostisland_faraday_middleware _lostisland_faraday_middleware_commits.csv lostisland_faraday_middleware_hullabaloo_CONTRIBUTING.md
33 moose_MooseX-Runnable _moose_MooseX-Runnable_commits.csv moose_MooseX-Runnable_hullabaloo_CONTRIBUTING
34 tpope_vim-pathogen.git _tpope_vim-pathogen.git_commits.csv tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown
35 ocaml_dune.git _ocaml_dune.git_commits.csv ocaml_dune.git_hullabaloo_CONTRIBUTING.md
36 pyqtgraph_pyqtgraph.git _pyqtgraph_pyqtgraph.git_commits.csv pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt
37 processone_eimp.git _processone_eimp.git_commits.csv processone_eimp.git_hullabaloo_CONTRIBUTING.md
38 processone_stun.git _processone_stun.git_commits.csv processone_stun.git_hullabaloo_CONTRIBUTING.md
39 jazzband_django-push-notifications _jazzband_django-push-notifications_commits.csv jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md
40 box_flaky.git _box_flaky.git_commits.csv box_flaky.git_hullabaloo_CONTRIBUTING.rst
41 amueller_word_cloud _amueller_word_cloud_commits.csv amueller_word_cloud_hullabaloo_CONTRIBUTING.md
42 bitletorg_weupnp.git _bitletorg_weupnp.git_commits.csv bitletorg_weupnp.git_hullabaloo_CONTRIBUTING.md
43 heynemann_pyvows.git _heynemann_pyvows.git_commits.csv heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md
44 puppetlabs_marionette-collective _puppetlabs_marionette-collective_commits.csv puppetlabs_marionette-collective_hullabaloo_CONTRIBUTING.md
45 puppetlabs_puppetlabs-xinetd _puppetlabs_puppetlabs-xinetd_commits.csv puppetlabs_puppetlabs-xinetd_hullabaloo_CONTRIBUTING.md
46 docker_compose _docker_compose_commits.csv docker_compose_hullabaloo_CONTRIBUTING.md
47 plasma_kscreen.git plasma_kscreen.git_commits.csv plasma_kscreen.git_hullabaloo_CONTRIBUTING.md
48 nvbn_thefuck.git _nvbn_thefuck.git_commits.csv nvbn_thefuck.git_hullabaloo_CONTRIBUTING.md
49 eslint_eslint-scope.git _eslint_eslint-scope.git_commits.csv eslint_eslint-scope.git_hullabaloo_CONTRIBUTING.md
50 jupyter_notebook.git _jupyter_notebook.git_commits.csv jupyter_notebook.git_hullabaloo_CONTRIBUTING.md
51 mfontanini_libtins.git _mfontanini_libtins.git_commits.csv mfontanini_libtins.git_hullabaloo_CONTRIBUTING.md
52 pimutils_vdirsyncer _pimutils_vdirsyncer_commits.csv pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst
53 openalpr_openalpr openalpr_openalpr_commits.csv openalpr_openalpr_hullabaloo_CONTRIBUTING.md
54 nikic_PHP-Parser _nikic_PHP-Parser_commits.csv nikic_PHP-Parser_hullabaloo_CONTRIBUTING.md
55 tmuxinator_tmuxinator _tmuxinator_tmuxinator_commits.csv tmuxinator_tmuxinator_hullabaloo_CONTRIBUTING.md
56 dahlia_libsass-python.git _dahlia_libsass-python.git_commits.csv dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst
57 mkdocs_mkdocs _mkdocs_mkdocs_commits.csv mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md
58 boto_boto3 _boto_boto3_commits.csv boto_boto3_hullabaloo_CONTRIBUTING.rst
59 jquast_blessed _jquast_blessed_commits.csv jquast_blessed_hullabaloo_CONTRIBUTING.rst
60 Storyyeller_enjarify _Storyyeller_enjarify_commits.csv Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt
61 ignitionrobotics_ign-cmake.git _ignitionrobotics_ign-cmake.git_commits.csv ignitionrobotics_ign-cmake.git_hullabaloo_CONTRIBUTING.md
62 boto_s3transfer _boto_s3transfer_commits.csv boto_s3transfer_hullabaloo_CONTRIBUTING.rst
63 derek73_python-nameparser _derek73_python-nameparser_commits.csv derek73_python-nameparser_hullabaloo_CONTRIBUTING.md
64 kaminari_kaminari _kaminari_kaminari_commits.csv kaminari_kaminari_hullabaloo_CONTRIBUTING.md
65 coddingtonbear_python-measurement _coddingtonbear_python-measurement_commits.csv coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md
66 editorconfig_editorconfig-core-c.git _editorconfig_editorconfig-core-c.git_commits.csv editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING
67 libosinfo_osinfo-db.git libosinfo_osinfo-db.git_commits.csv libosinfo_osinfo-db.git_hullabaloo_CONTRIBUTING.md
68 joke2k_faker _joke2k_faker_commits.csv joke2k_faker_hullabaloo_CONTRIBUTING.rst
69 zopefoundation_zope.testing _zopefoundation_zope.testing_commits.csv zopefoundation_zope.testing_hullabaloo_CONTRIBUTING.md
70 npm_nopt _npm_nopt_commits.csv npm_nopt_hullabaloo_CONTRIBUTING.md
71 google_gemmlowp _google_gemmlowp_commits.csv google_gemmlowp_hullabaloo_CONTRIBUTING.txt
72 iustin_pylibacl _iustin_pylibacl_commits.csv iustin_pylibacl_hullabaloo_CONTRIBUTING.md
73 PyFilesystem_pyfilesystem2 _PyFilesystem_pyfilesystem2_commits.csv PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md
74 pallets_werkzeug _pallets_werkzeug_commits.csv pallets_werkzeug_hullabaloo_CONTRIBUTING.rst
75 include-what-you-use_include-what-you-use _include-what-you-use_include-what-you-use_commits.csv include-what-you-use_include-what-you-use_hullabaloo_CONTRIBUTING.md
76 GNOME_gjs.git GNOME_gjs.git_commits.csv GNOME_gjs.git_hullabaloo_CONTRIBUTING.md
77 zeromq_pyzmq.git _zeromq_pyzmq.git_commits.csv zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md
78 hamcrest_hamcrest-php.git _hamcrest_hamcrest-php.git_commits.csv hamcrest_hamcrest-php.git_hullabaloo_CONTRIBUTING.md
79 swaywm_wlroots _swaywm_wlroots_commits.csv swaywm_wlroots_hullabaloo_CONTRIBUTING.md
80 WoLpH_numpy-stl _WoLpH_numpy-stl_commits.csv WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst
81 prometheus_client_python.git _prometheus_client_python.git_commits.csv prometheus_client_python.git_hullabaloo_CONTRIBUTING.md
82 heynemann_preggy _heynemann_preggy_commits.csv heynemann_preggy_hullabaloo_CONTRIBUTING.md
83 zeromq_czmq.git _zeromq_czmq.git_commits.csv zeromq_czmq.git_hullabaloo_CONTRIBUTING.md
84 python-trio_trio _python-trio_trio_commits.csv python-trio_trio_hullabaloo_CONTRIBUTING.md
85 mongoengine_flask-mongoengine _mongoengine_flask-mongoengine_commits.csv mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md
86 ionelmc_python-tblib _ionelmc_python-tblib_commits.csv ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst
87 brunonova_drmips brunonova_drmips_commits.csv brunonova_drmips_hullabaloo_CONTRIBUTING.md
88 analogdevicesinc_libiio.git _analogdevicesinc_libiio.git_commits.csv analogdevicesinc_libiio.git_hullabaloo_CONTRIBUTING.md
89 rails_sprockets.git _rails_sprockets.git_commits.csv rails_sprockets.git_hullabaloo_CONTRIBUTING.md
90 ocaml_ocamlbuild.git _ocaml_ocamlbuild.git_commits.csv ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc
91 karenetheridge_B-Hooks-Parser.git _karenetheridge_B-Hooks-Parser.git_commits.csv karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING
92 ceres-solver_ceres-solver.git _ceres-solver_ceres-solver.git_commits.csv ceres-solver_ceres-solver.git_hullabaloo_CONTRIBUTING.md
93 jupyter_nbconvert _jupyter_nbconvert_commits.csv jupyter_nbconvert_hullabaloo_CONTRIBUTING.md
94 ComplianceAsCode_content _ComplianceAsCode_content_commits.csv ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md
95 mu-editor_mu _mu-editor_mu_commits.csv mu-editor_mu_hullabaloo_CONTRIBUTING.rst
96 dask_dask _dask_dask_commits.csv dask_dask_hullabaloo_CONTRIBUTING.md
97 jashkenas_underscore.git _jashkenas_underscore.git_commits.csv jashkenas_underscore.git_hullabaloo_CONTRIBUTING.md
98 npm_abbrev-js _npm_abbrev-js_commits.csv npm_abbrev-js_hullabaloo_CONTRIBUTING.md
99 jupyter_jupyter_core _jupyter_jupyter_core_commits.csv jupyter_jupyter_core_hullabaloo_CONTRIBUTING.md
100 tpm2-software_tpm2-abrmd.git _tpm2-software_tpm2-abrmd.git_commits.csv tpm2-software_tpm2-abrmd.git_hullabaloo_CONTRIBUTING.md
101 matthewwithanm_django-imagekit.git _matthewwithanm_django-imagekit.git_commits.csv matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst
102 fog_fog-rackspace _fog_fog-rackspace_commits.csv fog_fog-rackspace_hullabaloo_CONTRIBUTING.md
103 tinfoil_devise-two-factor.git _tinfoil_devise-two-factor.git_commits.csv tinfoil_devise-two-factor.git_hullabaloo_CONTRIBUTING.md
104 isaacs_node-glob.git _isaacs_node-glob.git_commits.csv isaacs_node-glob.git_hullabaloo_CONTRIBUTING.md
105 dagolden_class-insideout.git _dagolden_class-insideout.git_commits.csv dagolden_class-insideout.git_hullabaloo_CONTRIBUTING
106 lastpass_lastpass-cli _lastpass_lastpass-cli_commits.csv lastpass_lastpass-cli_hullabaloo_CONTRIBUTING
107 mlpack_ensmallen _mlpack_ensmallen_commits.csv mlpack_ensmallen_hullabaloo_CONTRIBUTING.md
108 RIPE-NCC_ripe.atlas.sagan _RIPE-NCC_ripe.atlas.sagan_commits.csv RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst
109 intridea_multi_json _intridea_multi_json_commits.csv intridea_multi_json_hullabaloo_CONTRIBUTING.md
110 zsh-users_antigen _zsh-users_antigen_commits.csv zsh-users_antigen_hullabaloo_CONTRIBUTING.md
111 emcconville_wand _emcconville_wand_commits.csv emcconville_wand_hullabaloo_CONTRIBUTING.rst
112 perl-catalyst_Catalyst-Authentication-Credential-HTTP _perl-catalyst_Catalyst-Authentication-Credential-HTTP_commits.csv perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING
113 sslmate_certspotter _sslmate_certspotter_commits.csv sslmate_certspotter_hullabaloo_CONTRIBUTING
114 jazzband_django-sortedm2m.git _jazzband_django-sortedm2m.git_commits.csv jazzband_django-sortedm2m.git_hullabaloo_CONTRIBUTING.md
115 python-hyper_h11.git _python-hyper_h11.git_commits.csv python-hyper_h11.git_hullabaloo_CONTRIBUTING.md
116 felixge_node-dateformat _felixge_node-dateformat_commits.csv felixge_node-dateformat_hullabaloo_CONTRIBUTING.md
117 Grokzen_redis-py-cluster _Grokzen_redis-py-cluster_commits.csv Grokzen_redis-py-cluster_hullabaloo_CONTRIBUTING.md
118 lttng-ust.git lttng-ust.git_commits.csv lttng-ust.git_hullabaloo_CONTRIBUTING.md
119 mongodb_motor _mongodb_motor_commits.csv mongodb_motor_hullabaloo_CONTRIBUTING.rst
120 libevent_libevent _libevent_libevent_commits.csv libevent_libevent_hullabaloo_CONTRIBUTING.md
121 bbatsov_powerpack.git _bbatsov_powerpack.git_commits.csv bbatsov_powerpack.git_hullabaloo_CONTRIBUTING.md
122 rthalley_dnspython.git _rthalley_dnspython.git_commits.csv rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md
123 Ableton_link.git _Ableton_link.git_commits.csv Ableton_link.git_hullabaloo_CONTRIBUTING.md
124 Ranks_emojione _Ranks_emojione_commits.csv Ranks_emojione_hullabaloo_CONTRIBUTING.md
125 kelektiv_node-uuid _kelektiv_node-uuid_commits.csv kelektiv_node-uuid_hullabaloo_CONTRIBUTING.md
126 prometheus_pushgateway _prometheus_pushgateway_commits.csv prometheus_pushgateway_hullabaloo_CONTRIBUTING.md
127 pyjokes_pyjokes _pyjokes_pyjokes_commits.csv pyjokes_pyjokes_hullabaloo_CONTRIBUTING.md
128 resurrecting-open-source-projects_openrdate _resurrecting-open-source-projects_openrdate_commits.csv resurrecting-open-source-projects_openrdate_hullabaloo_CONTRIBUTING.md
129 ARMmbed_yotta.git _ARMmbed_yotta.git_commits.csv ARMmbed_yotta.git_hullabaloo_CONTRIBUTING.md
130 django-ldapdb_django-ldapdb _django-ldapdb_django-ldapdb_commits.csv django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst
131 voxpupuli_beaker _voxpupuli_beaker_commits.csv voxpupuli_beaker_hullabaloo_CONTRIBUTING.md
132 zopefoundation_zope.deprecation.git _zopefoundation_zope.deprecation.git_commits.csv zopefoundation_zope.deprecation.git_hullabaloo_CONTRIBUTING.md
133 PracticallyGreen_omniauth-saml.git _PracticallyGreen_omniauth-saml.git_commits.csv PracticallyGreen_omniauth-saml.git_hullabaloo_CONTRIBUTING.md
134 django-haystack_django-haystack _django-haystack_django-haystack_commits.csv django-haystack_django-haystack_hullabaloo_CONTRIBUTING.md
135 google_fscrypt _google_fscrypt_commits.csv google_fscrypt_hullabaloo_CONTRIBUTING.md
136 puppetlabs_clj-kitchensink.git _puppetlabs_clj-kitchensink.git_commits.csv puppetlabs_clj-kitchensink.git_hullabaloo_CONTRIBUTING.md
137 porridge_bambam porridge_bambam_commits.csv porridge_bambam_hullabaloo_CONTRIBUTING.md
138 joewing_jwm _joewing_jwm_commits.csv joewing_jwm_hullabaloo_CONTRIBUTING.md
139 hickford_MechanicalSoup _hickford_MechanicalSoup_commits.csv hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md
140 cubiq_iscroll _cubiq_iscroll_commits.csv cubiq_iscroll_hullabaloo_CONTRIBUTING.md
141 gtimelog_gtimelog _gtimelog_gtimelog_commits.csv gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst
142 openstack_python-swiftclient.git _openstack_python-swiftclient.git_commits.csv openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md
143 prehor_amavisd-milter _prehor_amavisd-milter_commits.csv prehor_amavisd-milter_hullabaloo_CONTRIBUTING.md
144 GNOME_network-manager-applet GNOME_network-manager-applet_commits.csv GNOME_network-manager-applet_hullabaloo_CONTRIBUTING
145 resurrecting-open-source-projects_scrot _resurrecting-open-source-projects_scrot_commits.csv resurrecting-open-source-projects_scrot_hullabaloo_CONTRIBUTING.md
146 mypaint_libmypaint _mypaint_libmypaint_commits.csv mypaint_libmypaint_hullabaloo_CONTRIBUTING.md
147 virt-manager_virt-manager _virt-manager_virt-manager_commits.csv virt-manager_virt-manager_hullabaloo_CONTRIBUTING.md
148 rails_jbuilder _rails_jbuilder_commits.csv rails_jbuilder_hullabaloo_CONTRIBUTING.md
149 libvirt_libvirt-ruby.git libvirt_libvirt-ruby.git_commits.csv libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst
150 DamienCassou_beginend.git _DamienCassou_beginend.git_commits.csv DamienCassou_beginend.git_hullabaloo_CONTRIBUTING.md
151 FirefighterBlu3_python-pam _FirefighterBlu3_python-pam_commits.csv FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md
152 MatMoul_g810-led.git _MatMoul_g810-led.git_commits.csv MatMoul_g810-led.git_hullabaloo_CONTRIBUTING.md
153 GoogleCloudPlatform_cloudsql-proxy.git _GoogleCloudPlatform_cloudsql-proxy.git_commits.csv GoogleCloudPlatform_cloudsql-proxy.git_hullabaloo_CONTRIBUTING.md
154 awslabs_amazon-ecr-credential-helper awslabs_amazon-ecr-credential-helper_commits.csv awslabs_amazon-ecr-credential-helper_hullabaloo_CONTRIBUTING.md
155 Exa-Networks_exabgp Exa-Networks_exabgp_commits.csv Exa-Networks_exabgp_hullabaloo_CONTRIBUTING.md
156 lxqt_qterminal.git _lxqt_qterminal.git_commits.csv lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md
157 ddclient_ddclient.git _ddclient_ddclient.git_commits.csv ddclient_ddclient.git_hullabaloo_CONTRIBUTING.md
158 python-gitlab_python-gitlab.git _python-gitlab_python-gitlab.git_commits.csv python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst
159 resurrecting-open-source-projects_packit _resurrecting-open-source-projects_packit_commits.csv resurrecting-open-source-projects_packit_hullabaloo_CONTRIBUTING.md
160 elmar_aptitude-robot elmar_aptitude-robot_commits.csv elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown
161 doorkeeper-gem_doorkeeper _doorkeeper-gem_doorkeeper_commits.csv doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md
162 rsyslog_rsyslog-doc _rsyslog_rsyslog-doc_commits.csv rsyslog_rsyslog-doc_hullabaloo_CONTRIBUTING.md
163 breunigs_python-librtmp-debian breunigs_python-librtmp-debian_commits.csv breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst
164 google_python_portpicker _google_python_portpicker_commits.csv google_python_portpicker_hullabaloo_CONTRIBUTING.md
165 carljm_django-model-utils.git _carljm_django-model-utils.git_commits.csv carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst
166 GNOME_template-glib.git GNOME_template-glib.git_commits.csv GNOME_template-glib.git_hullabaloo_CONTRIBUTING.md
167 alanxz_rabbitmq-c.git _alanxz_rabbitmq-c.git_commits.csv alanxz_rabbitmq-c.git_hullabaloo_CONTRIBUTING.md
168 davesteele_comitup davesteele_comitup_commits.csv davesteele_comitup_hullabaloo_CONTRIBUTING.md
169 un33k_django-ipware _un33k_django-ipware_commits.csv un33k_django-ipware_hullabaloo_CONTRIBUTING.md
170 luakit_luakit _luakit_luakit_commits.csv luakit_luakit_hullabaloo_CONTRIBUTING.md
171 trezor_trezor-firmware.git _trezor_trezor-firmware.git_commits.csv trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md
172 kasei_attean.git _kasei_attean.git_commits.csv kasei_attean.git_hullabaloo_CONTRIBUTING
173 gaetano-guerriero_eyeD3-debian gaetano-guerriero_eyeD3-debian_commits.csv gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst
174 ionelmc_python-lazy-object-proxy.git _ionelmc_python-lazy-object-proxy.git_commits.csv ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst
175 resurrecting-open-source-projects_stress _resurrecting-open-source-projects_stress_commits.csv resurrecting-open-source-projects_stress_hullabaloo_CONTRIBUTING.md
176 google_stenographer _google_stenographer_commits.csv google_stenographer_hullabaloo_CONTRIBUTING
177 jpy-consortium_jpy _jpy-consortium_jpy_commits.csv jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md
178 xtaran_unburden-home-dir xtaran_unburden-home-dir_commits.csv xtaran_unburden-home-dir_hullabaloo_CONTRIBUTING.md
179 mongoengine_mongoengine mongoengine_mongoengine_commits.csv mongoengine_mongoengine_hullabaloo_CONTRIBUTING.rst
180 openwisp_django-x509 _openwisp_django-x509_commits.csv openwisp_django-x509_hullabaloo_CONTRIBUTING.rst
181 tox-dev_py-filelock _tox-dev_py-filelock_commits.csv tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md
182 survivejs_webpack-merge.git _survivejs_webpack-merge.git_commits.csv survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md
183 libcgroup_libcgroup _libcgroup_libcgroup_commits.csv libcgroup_libcgroup_hullabaloo_CONTRIBUTING.md
184 Smattr_rumur.git Smattr_rumur.git_commits.csv Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst
185 lucc_khard _lucc_khard_commits.csv lucc_khard_hullabaloo_CONTRIBUTING.rst
186 Xaviju_inkscape-open-symbols _Xaviju_inkscape-open-symbols_commits.csv Xaviju_inkscape-open-symbols_hullabaloo_CONTRIBUTING.md
187 htop-dev_htop _htop-dev_htop_commits.csv htop-dev_htop_hullabaloo_CONTRIBUTING.md
188 doorkeeper-gem_doorkeeper-openid_connect.git _doorkeeper-gem_doorkeeper-openid_connect.git_commits.csv doorkeeper-gem_doorkeeper-openid_connect.git_hullabaloo_CONTRIBUTING.md
189 libinput_libinput libinput_libinput_commits.csv libinput_libinput_hullabaloo_CONTRIBUTING.md
190 o9000_tint2 o9000_tint2_commits.csv o9000_tint2_hullabaloo_CONTRIBUTING.md
191 source-foundry_Hack _source-foundry_Hack_commits.csv source-foundry_Hack_hullabaloo_CONTRIBUTING.md
192 pallets-eco_flask-sqlalchemy _pallets-eco_flask-sqlalchemy_commits.csv pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst
193 jashkenas_backbone _jashkenas_backbone_commits.csv jashkenas_backbone_hullabaloo_CONTRIBUTING.md
194 rails_rails-html-sanitizer _rails_rails-html-sanitizer_commits.csv rails_rails-html-sanitizer_hullabaloo_CONTRIBUTING.md
195 ipython_traitlets.git _ipython_traitlets.git_commits.csv ipython_traitlets.git_hullabaloo_CONTRIBUTING.md
196 isaacs_inherits _isaacs_inherits_commits.csv isaacs_inherits_hullabaloo_CONTRIBUTING.md
197 erlware_erlware_commons.git _erlware_erlware_commons.git_commits.csv erlware_erlware_commons.git_hullabaloo_CONTRIBUTING.md
198 openstreetmap_osm2pgsql.git _openstreetmap_osm2pgsql.git_commits.csv openstreetmap_osm2pgsql.git_hullabaloo_CONTRIBUTING.md
199 google_gopacket.git _google_gopacket.git_commits.csv google_gopacket.git_hullabaloo_CONTRIBUTING.md
200 janestreet_variantslib.git _janestreet_variantslib.git_commits.csv janestreet_variantslib.git_hullabaloo_CONTRIBUTING.md
201 ipython_ipython_genutils _ipython_ipython_genutils_commits.csv ipython_ipython_genutils_hullabaloo_CONTRIBUTING.md
202 matthewwithanm_pilkit _matthewwithanm_pilkit_commits.csv matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst
203 puppetlabs_puppetlabs-mysql _puppetlabs_puppetlabs-mysql_commits.csv puppetlabs_puppetlabs-mysql_hullabaloo_CONTRIBUTING.md
204 sinatra_sinatra.git _sinatra_sinatra.git_commits.csv sinatra_sinatra.git_hullabaloo_CONTRIBUTING.md
205 PyCQA_flake8-polyfill.git _PyCQA_flake8-polyfill.git_commits.csv PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst
206 google_pybadges.git _google_pybadges.git_commits.csv google_pybadges.git_hullabaloo_CONTRIBUTING.md
207 infirit_caja-admin _infirit_caja-admin_commits.csv infirit_caja-admin_hullabaloo_CONTRIBUTING.md
208 terser_terser _terser_terser_commits.csv terser_terser_hullabaloo_CONTRIBUTING.md
209 PyCQA_prospector _PyCQA_prospector_commits.csv PyCQA_prospector_hullabaloo_CONTRIBUTING.rst
210 GNOME_vala.git GNOME_vala.git_commits.csv GNOME_vala.git_hullabaloo_CONTRIBUTING.md
211 aws_aws-cli _aws_aws-cli_commits.csv aws_aws-cli_hullabaloo_CONTRIBUTING.md
212 google_yapf.git _google_yapf.git_commits.csv google_yapf.git_hullabaloo_CONTRIBUTING
213 pytest-dev_pytest.git _pytest-dev_pytest.git_commits.csv pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt
214 pika_pika _pika_pika_commits.csv pika_pika_hullabaloo_CONTRIBUTING.md
215 Backblaze_b2-sdk-python.git _Backblaze_b2-sdk-python.git_commits.csv Backblaze_b2-sdk-python.git_hullabaloo_CONTRIBUTING.md
216 puppetlabs_puppetlabs-ntp.git _puppetlabs_puppetlabs-ntp.git_commits.csv puppetlabs_puppetlabs-ntp.git_hullabaloo_CONTRIBUTING.md
217 geopandas_geopandas.git _geopandas_geopandas.git_commits.csv geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md
218 jupyter_jupyter-sphinx.git _jupyter_jupyter-sphinx.git_commits.csv jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md
219 Pylons_venusian _Pylons_venusian_commits.csv Pylons_venusian_hullabaloo_CONTRIBUTING.rst
220 jjjake_internetarchive.git _jjjake_internetarchive.git_commits.csv jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst
221 cucumber_aruba.git _cucumber_aruba.git_commits.csv cucumber_aruba.git_hullabaloo_CONTRIBUTING.md
222 rackerlabs_kthresher _rackerlabs_kthresher_commits.csv rackerlabs_kthresher_hullabaloo_CONTRIBUTING.md
223 google_jimfs.git _google_jimfs.git_commits.csv google_jimfs.git_hullabaloo_CONTRIBUTING.md
224 openstack_rally.git _openstack_rally.git_commits.csv openstack_rally.git_hullabaloo_CONTRIBUTING.rst
225 jupyter_jupyter_client _jupyter_jupyter_client_commits.csv jupyter_jupyter_client_hullabaloo_CONTRIBUTING.md
226 KDAB_hotspot.git _KDAB_hotspot.git_commits.csv KDAB_hotspot.git_hullabaloo_CONTRIBUTING.md
227 lunarmodules_say.git _lunarmodules_say.git_commits.csv lunarmodules_say.git_hullabaloo_CONTRIBUTING.md
228 coturn_coturn coturn_coturn_commits.csv coturn_coturn_hullabaloo_CONTRIBUTING.md
229 cleishm_libneo4j-client cleishm_libneo4j-client_commits.csv cleishm_libneo4j-client_hullabaloo_CONTRIBUTING.md
230 python_typed_ast.git _python_typed_ast.git_commits.csv python_typed_ast.git_hullabaloo_CONTRIBUTING.md
231 pyutilib_pyutilib _pyutilib_pyutilib_commits.csv pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md
232 prometheus_haproxy_exporter _prometheus_haproxy_exporter_commits.csv prometheus_haproxy_exporter_hullabaloo_CONTRIBUTING.md
233 ahmetb_kubectx _ahmetb_kubectx_commits.csv ahmetb_kubectx_hullabaloo_CONTRIBUTING.md
234 guillaumechereau_goxel.git _guillaumechereau_goxel.git_commits.csv guillaumechereau_goxel.git_hullabaloo_CONTRIBUTING.md
235 pavlov99_json-rpc _pavlov99_json-rpc_commits.csv pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md
236 pygraphviz_pygraphviz.git _pygraphviz_pygraphviz.git_commits.csv pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst
237 google_xsecurelock google_xsecurelock_commits.csv google_xsecurelock_hullabaloo_CONTRIBUTING
238 solnic_virtus.git _solnic_virtus.git_commits.csv solnic_virtus.git_hullabaloo_CONTRIBUTING.md
239 karenetheridge_B-Hooks-OP-Check _karenetheridge_B-Hooks-OP-Check_commits.csv karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING
240 robert7_nixnote2 _robert7_nixnote2_commits.csv robert7_nixnote2_hullabaloo_CONTRIBUTING.md
241 datastax_python-driver.git _datastax_python-driver.git_commits.csv datastax_python-driver.git_hullabaloo_CONTRIBUTING.md
242 petkaantonov_bluebird.git _petkaantonov_bluebird.git_commits.csv petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md
243 Pylons_plaster_pastedeploy.git _Pylons_plaster_pastedeploy.git_commits.csv Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst
244 zkat_ssri.git _zkat_ssri.git_commits.csv zkat_ssri.git_hullabaloo_CONTRIBUTING.md
245 jtauber_pyuca _jtauber_pyuca_commits.csv jtauber_pyuca_hullabaloo_CONTRIBUTING.md
246 fog_fog-local _fog_fog-local_commits.csv fog_fog-local_hullabaloo_CONTRIBUTING.md
247 cespare_reflex.git _cespare_reflex.git_commits.csv cespare_reflex.git_hullabaloo_CONTRIBUTING.md
248 darold_pgbadger.git _darold_pgbadger.git_commits.csv darold_pgbadger.git_hullabaloo_CONTRIBUTING.md
249 gitlab-org_ruby_gems_gitlab-mail_room.git gitlab-org_ruby_gems_gitlab-mail_room.git_commits.csv gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md
250 google_highwayhash _google_highwayhash_commits.csv google_highwayhash_hullabaloo_CONTRIBUTING
251 libvirt_libvirt-python.git libvirt_libvirt-python.git_commits.csv libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst
252 seccomp_libseccomp _seccomp_libseccomp_commits.csv seccomp_libseccomp_hullabaloo_CONTRIBUTING.md
253 cesbit_libcleri.git _cesbit_libcleri.git_commits.csv cesbit_libcleri.git_hullabaloo_CONTRIBUTING.md
254 ruby-ldap_ruby-net-ldap.git _ruby-ldap_ruby-net-ldap.git_commits.csv ruby-ldap_ruby-net-ldap.git_hullabaloo_CONTRIBUTING.md
255 vim-airline_vim-airline.git _vim-airline_vim-airline.git_commits.csv vim-airline_vim-airline.git_hullabaloo_CONTRIBUTING.md
256 jackfranklin_gulp-load-plugins _jackfranklin_gulp-load-plugins_commits.csv jackfranklin_gulp-load-plugins_hullabaloo_CONTRIBUTING.md
257 digitalbazaar_pyld _digitalbazaar_pyld_commits.csv digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst
258 rsms_inter _rsms_inter_commits.csv rsms_inter_hullabaloo_CONTRIBUTING.md
259 chaijs_chai _chaijs_chai_commits.csv chaijs_chai_hullabaloo_CONTRIBUTING.md
260 mathjax_MathJax _mathjax_MathJax_commits.csv mathjax_MathJax_hullabaloo_CONTRIBUTING.md
261 dbus_dbus-python dbus_dbus-python_commits.csv dbus_dbus-python_hullabaloo_CONTRIBUTING
262 python-ldap_python-ldap _python-ldap_python-ldap_commits.csv python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst
263 pallets_click.git _pallets_click.git_commits.csv pallets_click.git_hullabaloo_CONTRIBUTING.rst
264 ktbyers_netmiko _ktbyers_netmiko_commits.csv ktbyers_netmiko_hullabaloo_CONTRIBUTING.md
265 ipython_ipykernel.git _ipython_ipykernel.git_commits.csv ipython_ipykernel.git_hullabaloo_CONTRIBUTING.md
266 calamares_calamares.git _calamares_calamares.git_commits.csv calamares_calamares.git_hullabaloo_CONTRIBUTING.md
267 osantana_dicteval.git _osantana_dicteval.git_commits.csv osantana_dicteval.git_hullabaloo_CONTRIBUTING.md
268 doctrine_instantiator _doctrine_instantiator_commits.csv doctrine_instantiator_hullabaloo_CONTRIBUTING.md
269 nojhan_liquidprompt.git _nojhan_liquidprompt.git_commits.csv nojhan_liquidprompt.git_hullabaloo_CONTRIBUTING.md
270 marshmallow-code_marshmallow.git marshmallow-code_marshmallow.git_commits.csv marshmallow-code_marshmallow.git_CONTRIBUTING.rst
271 aws_aws-xray-sdk-python _aws_aws-xray-sdk-python_commits.csv aws_aws-xray-sdk-python_hullabaloo_CONTRIBUTING.md
272 JDimproved_JDim.git _JDimproved_JDim.git_commits.csv JDimproved_JDim.git_hullabaloo_CONTRIBUTING.md
273 spyder-ide_qtawesome _spyder-ide_qtawesome_commits.csv spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md
274 puppetlabs_facter.git _puppetlabs_facter.git_commits.csv puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md
275 elasticsearch_curator.git _elasticsearch_curator.git_commits.csv elasticsearch_curator.git_hullabaloo_CONTRIBUTING.md
276 marshmallow-code_flask-marshmallow.git _marshmallow-code_flask-marshmallow.git_commits.csv marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
277 resurrecting-open-source-projects_outguess _resurrecting-open-source-projects_outguess_commits.csv resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md
278 GNOME_geary.git GNOME_geary.git_commits.csv GNOME_geary.git_hullabaloo_CONTRIBUTING.md
279 jashkenas_coffeescript _jashkenas_coffeescript_commits.csv jashkenas_coffeescript_hullabaloo_CONTRIBUTING.md
280 spyder-ide_qtpy _spyder-ide_qtpy_commits.csv spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst
281 thoughtbot_shoulda-matchers _thoughtbot_shoulda-matchers_commits.csv thoughtbot_shoulda-matchers_hullabaloo_CONTRIBUTING.md
282 defunkt_mustache _defunkt_mustache_commits.csv defunkt_mustache_hullabaloo_CONTRIBUTING.md
283 thoughtbot_factory_girl.git _thoughtbot_factory_girl.git_commits.csv thoughtbot_factory_girl.git_hullabaloo_CONTRIBUTING.md
284 oauth-xx_oauth-ruby _oauth-xx_oauth-ruby_commits.csv oauth-xx_oauth-ruby_hullabaloo_CONTRIBUTING.md
285 psf_black.git _psf_black.git_commits.csv psf_black.git_hullabaloo_CONTRIBUTING.md
286 GNOME_gnome-builder.git GNOME_gnome-builder.git_commits.csv GNOME_gnome-builder.git_hullabaloo_CONTRIBUTING.md
287 softlayer_softlayer-python _softlayer_softlayer-python_commits.csv softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md
288 tkf_emacs-jedi.git _tkf_emacs-jedi.git_commits.csv tkf_emacs-jedi.git_hullabaloo_CONTRIBUTING.md
289 pgbackrest_pgbackrest _pgbackrest_pgbackrest_commits.csv pgbackrest_pgbackrest_hullabaloo_CONTRIBUTING.md
290 shouldjs_should.js.git _shouldjs_should.js.git_commits.csv shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md
291 pytest-dev_pytest-bdd.git _pytest-dev_pytest-bdd.git_commits.csv pytest-dev_pytest-bdd.git_hullabaloo_CONTRIBUTING.md
292 jupyter_terminado _jupyter_terminado_commits.csv jupyter_terminado_hullabaloo_CONTRIBUTING.rst
293 django-waffle_django-waffle _django-waffle_django-waffle_commits.csv django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst
294 processone_fast_tls.git _processone_fast_tls.git_commits.csv processone_fast_tls.git_hullabaloo_CONTRIBUTING.md
295 metaodi_osmapi.git _metaodi_osmapi.git_commits.csv metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md
296 kilobyte_ndctl kilobyte_ndctl_commits.csv kilobyte_ndctl_hullabaloo_CONTRIBUTING.md
297 kilobyte_memkind kilobyte_memkind_commits.csv kilobyte_memkind_hullabaloo_CONTRIBUTING
298 pallets_itsdangerous _pallets_itsdangerous_commits.csv pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst
299 office_ghostwriter office_ghostwriter_commits.csv office_ghostwriter_hullabaloo_CONTRIBUTING.md
300 prometheus_mysqld_exporter _prometheus_mysqld_exporter_commits.csv prometheus_mysqld_exporter_hullabaloo_CONTRIBUTING.md
301 twilio_twilio-python _twilio_twilio-python_commits.csv twilio_twilio-python_hullabaloo_CONTRIBUTING.md
302 c4urself_bump2version _c4urself_bump2version_commits.csv c4urself_bump2version_hullabaloo_CONTRIBUTING.md
303 google_benchmark _google_benchmark_commits.csv google_benchmark_hullabaloo_CONTRIBUTING.md
304 pgRouting_pgrouting.git _pgRouting_pgrouting.git_commits.csv pgRouting_pgrouting.git_hullabaloo_CONTRIBUTING
305 galaxyproject_bioblend _galaxyproject_bioblend_commits.csv galaxyproject_bioblend_hullabaloo_CONTRIBUTING.md
306 gawel_panoramisk.git _gawel_panoramisk.git_commits.csv gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst
307 rails_jquery-rails.git _rails_jquery-rails.git_commits.csv rails_jquery-rails.git_hullabaloo_CONTRIBUTING.md
308 kilobyte_pmemkv kilobyte_pmemkv_commits.csv kilobyte_pmemkv_hullabaloo_CONTRIBUTING.md
309 processone_pkix.git _processone_pkix.git_commits.csv processone_pkix.git_hullabaloo_CONTRIBUTING.md
310 faye_faye _faye_faye_commits.csv faye_faye_hullabaloo_CONTRIBUTING.md
311 openstack_swift.git _openstack_swift.git_commits.csv openstack_swift.git_hullabaloo_CONTRIBUTING.md
312 zopefoundation_zope.proxy _zopefoundation_zope.proxy_commits.csv zopefoundation_zope.proxy_hullabaloo_CONTRIBUTING.md
313 alastair_python-musicbrainz-ngs _alastair_python-musicbrainz-ngs_commits.csv alastair_python-musicbrainz-ngs_hullabaloo_CONTRIBUTING.md
314 RIPE-NCC_ripe-atlas-cousteau.git _RIPE-NCC_ripe-atlas-cousteau.git_commits.csv RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst
315 google_python-gflags.git _google_python-gflags.git_commits.csv google_python-gflags.git_hullabaloo_CONTRIBUTING.md
316 numba_numba.git _numba_numba.git_commits.csv numba_numba.git_hullabaloo_CONTRIBUTING.md
317 composer_semver _composer_semver_commits.csv composer_semver_hullabaloo_CONTRIBUTING.md
318 mdbootstrap_perfect-scrollbar _mdbootstrap_perfect-scrollbar_commits.csv mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md
319 heroku_netrc _heroku_netrc_commits.csv heroku_netrc_hullabaloo_CONTRIBUTING.md
320 eclipse_paho.mqtt.python.git _eclipse_paho.mqtt.python.git_commits.csv eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md
321 GNOME_folks GNOME_folks_commits.csv GNOME_folks_hullabaloo_CONTRIBUTING.md
322 sshguard_sshguard.git sshguard_sshguard.git_commits.csv sshguard_sshguard.git_hullabaloo_CONTRIBUTING.rst
323 requests-cache_requests-cache _requests-cache_requests-cache_commits.csv requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md
324 zopefoundation_zope.testrunner _zopefoundation_zope.testrunner_commits.csv zopefoundation_zope.testrunner_hullabaloo_CONTRIBUTING.md
325 ua-parser_uap-core.git _ua-parser_uap-core.git_commits.csv ua-parser_uap-core.git_hullabaloo_CONTRIBUTING.md
326 voxpupuli_pypuppetdb _voxpupuli_pypuppetdb_commits.csv voxpupuli_pypuppetdb_hullabaloo_CONTRIBUTING.md
327 mozilla_source-map _mozilla_source-map_commits.csv mozilla_source-map_hullabaloo_CONTRIBUTING.md
328 libosinfo_osinfo-db-tools.git libosinfo_osinfo-db-tools.git_commits.csv libosinfo_osinfo-db-tools.git_hullabaloo_CONTRIBUTING.md
329 dagolden_math-random-oo.git _dagolden_math-random-oo.git_commits.csv dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING
330 clojure_core.cache _clojure_core.cache_commits.csv clojure_core.cache_hullabaloo_CONTRIBUTING.md
331 pub_scm_linux_kernel_git_jberg_iw.git pub_scm_linux_kernel_git_jberg_iw.git_commits.csv pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING
332 pydata_xarray _pydata_xarray_commits.csv pydata_xarray_hullabaloo_CONTRIBUTING.md
333 pantsbuild_pex.git _pantsbuild_pex.git_commits.csv pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md
334 Diaoul_subliminal.git _Diaoul_subliminal.git_commits.csv Diaoul_subliminal.git_hullabaloo_CONTRIBUTING.md
335 janestreet_sexplib.git _janestreet_sexplib.git_commits.csv janestreet_sexplib.git_hullabaloo_CONTRIBUTING.md
336 google_googletest.git _google_googletest.git_commits.csv google_googletest.git_hullabaloo_CONTRIBUTING.md
337 nginxinc_nginx-prometheus-exporter _nginxinc_nginx-prometheus-exporter_commits.csv nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md
338 simd-everywhere_simde _simd-everywhere_simde_commits.csv simd-everywhere_simde_hullabaloo_CONTRIBUTING.md
339 EnterpriseDB_mysql_fdw.git _EnterpriseDB_mysql_fdw.git_commits.csv EnterpriseDB_mysql_fdw.git_hullabaloo_CONTRIBUTING.md
340 sphinx-contrib_restbuilder.git _sphinx-contrib_restbuilder.git_commits.csv sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst
341 davidcelis_api-pagination.git _davidcelis_api-pagination.git_commits.csv davidcelis_api-pagination.git_hullabaloo_CONTRIBUTING.md
342 zopefoundation_zope.component _zopefoundation_zope.component_commits.csv zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md
343 iovisor_bcc.git _iovisor_bcc.git_commits.csv iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md
344 puppetlabs_puppetlabs-firewall _puppetlabs_puppetlabs-firewall_commits.csv puppetlabs_puppetlabs-firewall_hullabaloo_CONTRIBUTING.md
345 puppetlabs_puppetlabs-concat _puppetlabs_puppetlabs-concat_commits.csv puppetlabs_puppetlabs-concat_hullabaloo_CONTRIBUTING.md
346 philpem_printer-driver-ptouch.git _philpem_printer-driver-ptouch.git_commits.csv philpem_printer-driver-ptouch.git_hullabaloo_CONTRIBUTING.md
347 diff-match-patch-python_diff-match-patch _diff-match-patch-python_diff-match-patch_commits.csv diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md
348 dask_partd.git _dask_partd.git_commits.csv dask_partd.git_hullabaloo_CONTRIBUTING.md
349 boto_botocore _boto_botocore_commits.csv boto_botocore_hullabaloo_CONTRIBUTING.md
350 locationtech_jts.git _locationtech_jts.git_commits.csv locationtech_jts.git_hullabaloo_CONTRIBUTING.md
351 osmcode_osmium-tool.git _osmcode_osmium-tool.git_commits.csv osmcode_osmium-tool.git_hullabaloo_CONTRIBUTING.md
352 sferik_twitter _sferik_twitter_commits.csv sferik_twitter_hullabaloo_CONTRIBUTING.md
353 developit_preact.git _developit_preact.git_commits.csv developit_preact.git_hullabaloo_CONTRIBUTING.md
354 matrix-org_synapse.git _matrix-org_synapse.git_commits.csv matrix-org_synapse.git_hullabaloo_CONTRIBUTING.rst
355 common-workflow-language_schema_salad _common-workflow-language_schema_salad_commits.csv common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md
356 eproxus_meck.git _eproxus_meck.git_commits.csv eproxus_meck.git_hullabaloo_CONTRIBUTING.md
357 puppetlabs_puppetlabs-apache _puppetlabs_puppetlabs-apache_commits.csv puppetlabs_puppetlabs-apache_hullabaloo_CONTRIBUTING.md
358 jazzband_django-recurrence _jazzband_django-recurrence_commits.csv jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst
359 Backblaze_B2_Command_Line_Tool _Backblaze_B2_Command_Line_Tool_commits.csv Backblaze_B2_Command_Line_Tool_hullabaloo_CONTRIBUTING.md
360 mvz_ruby-gir-ffi _mvz_ruby-gir-ffi_commits.csv mvz_ruby-gir-ffi_hullabaloo_CONTRIBUTING.md
361 zopefoundation_zope.event _zopefoundation_zope.event_commits.csv zopefoundation_zope.event_hullabaloo_CONTRIBUTING.md
362 nesquena_rabl _nesquena_rabl_commits.csv nesquena_rabl_hullabaloo_CONTRIBUTING.md
363 pytest-dev_pytest-cov.git _pytest-dev_pytest-cov.git_commits.csv pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md
364 linuxmint_cjs.git _linuxmint_cjs.git_commits.csv linuxmint_cjs.git_hullabaloo_CONTRIBUTING.md
365 michaeljones_breathe.git _michaeljones_breathe.git_commits.csv michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst
366 GoalSmashers_clean-css.git _GoalSmashers_clean-css.git_commits.csv GoalSmashers_clean-css.git_hullabaloo_CONTRIBUTING.md
367 mapbox_leaflet-image _mapbox_leaflet-image_commits.csv mapbox_leaflet-image_hullabaloo_CONTRIBUTING.md
368 httpie_httpie _httpie_httpie_commits.csv httpie_httpie_hullabaloo_CONTRIBUTING.rst
369 bit-team_backintime _bit-team_backintime_commits.csv bit-team_backintime_hullabaloo_CONTRIBUTING.md
370 howardabrams_node-mocks-http _howardabrams_node-mocks-http_commits.csv howardabrams_node-mocks-http_hullabaloo_CONTRIBUTING.md
371 yrro_command-t yrro_command-t_commits.csv yrro_command-t_hullabaloo_CONTRIBUTING.md
372 zaach_jison _zaach_jison_commits.csv zaach_jison_hullabaloo_CONTRIBUTING.md
373 zopefoundation_zope.interface.git _zopefoundation_zope.interface.git_commits.csv zopefoundation_zope.interface.git_hullabaloo_CONTRIBUTING.md
374 rbenv_ruby-build.git _rbenv_ruby-build.git_commits.csv rbenv_ruby-build.git_hullabaloo_CONTRIBUTING.md
375 mishoo_UglifyJS2 _mishoo_UglifyJS2_commits.csv mishoo_UglifyJS2_hullabaloo_CONTRIBUTING.md
376 Pylons_hupper _Pylons_hupper_commits.csv Pylons_hupper_hullabaloo_CONTRIBUTING.rst
377 abishekvashok_cmatrix.git _abishekvashok_cmatrix.git_commits.csv abishekvashok_cmatrix.git_hullabaloo_CONTRIBUTING.md
378 django-extensions_django-extensions _django-extensions_django-extensions_commits.csv django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md
379 P403n1x87_austin P403n1x87_austin_commits.csv P403n1x87_austin_hullabaloo_CONTRIBUTING.md
380 mcmtroffaes_pathlib2.git _mcmtroffaes_pathlib2.git_commits.csv mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst
381 zmartzone_cjose.git _zmartzone_cjose.git_commits.csv zmartzone_cjose.git_hullabaloo_CONTRIBUTING.md
382 webrtchacks_adapter _webrtchacks_adapter_commits.csv webrtchacks_adapter_hullabaloo_CONTRIBUTING
383 python-bugzilla_python-bugzilla _python-bugzilla_python-bugzilla_commits.csv python-bugzilla_python-bugzilla_hullabaloo_CONTRIBUTING.md
384 markdown-it_markdown-it _markdown-it_markdown-it_commits.csv markdown-it_markdown-it_hullabaloo_CONTRIBUTING.md
385 jazzband_django-debug-toolbar.git _jazzband_django-debug-toolbar.git_commits.csv jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md
386 rasterio_rasterio.git _rasterio_rasterio.git_commits.csv rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst
387 zyga_padme _zyga_padme_commits.csv zyga_padme_hullabaloo_CONTRIBUTING.rst
388 zloirock_core-js.git _zloirock_core-js.git_commits.csv zloirock_core-js.git_hullabaloo_CONTRIBUTING.md
389 dropbox_dropbox-sdk-python _dropbox_dropbox-sdk-python_commits.csv dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst
390 scrapinghub_dateparser _scrapinghub_dateparser_commits.csv scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst
391 gstreamer_orc gstreamer_orc_commits.csv gstreamer_orc_hullabaloo_CONTRIBUTING.md
392 nodejs_node-gyp.git _nodejs_node-gyp.git_commits.csv nodejs_node-gyp.git_hullabaloo_CONTRIBUTING.md
393 kornelski_pngquant.git _kornelski_pngquant.git_commits.csv kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md
394 Iotic-Labs_py-ubjson _Iotic-Labs_py-ubjson_commits.csv Iotic-Labs_py-ubjson_hullabaloo_CONTRIBUTING.md
395 puppetlabs_puppetlabs-postgresql.git _puppetlabs_puppetlabs-postgresql.git_commits.csv puppetlabs_puppetlabs-postgresql.git_hullabaloo_CONTRIBUTING.md
396 GNOME_json-glib.git GNOME_json-glib.git_commits.csv GNOME_json-glib.git_hullabaloo_CONTRIBUTING.md
397 GNOME_gnome-clocks.git GNOME_gnome-clocks.git_commits.csv GNOME_gnome-clocks.git_hullabaloo_CONTRIBUTING.md
398 Leaflet_Leaflet.markercluster _Leaflet_Leaflet.markercluster_commits.csv Leaflet_Leaflet.markercluster_hullabaloo_CONTRIBUTING.md
399 osmcode_libosmium.git _osmcode_libosmium.git_commits.csv osmcode_libosmium.git_hullabaloo_CONTRIBUTING.md
400 resurrecting-open-source-projects_dcfldd _resurrecting-open-source-projects_dcfldd_commits.csv resurrecting-open-source-projects_dcfldd_hullabaloo_CONTRIBUTING.md
401 jazzband_django-pipeline _jazzband_django-pipeline_commits.csv jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst
402 jquery_qunit.git _jquery_qunit.git_commits.csv jquery_qunit.git_hullabaloo_CONTRIBUTING.md
403 gpodder_mygpoclient _gpodder_mygpoclient_commits.csv gpodder_mygpoclient_hullabaloo_CONTRIBUTING.md
404 pytroll_satpy _pytroll_satpy_commits.csv pytroll_satpy_hullabaloo_CONTRIBUTING.rst
405 GNOME_mobile-broadband-provider-info GNOME_mobile-broadband-provider-info_commits.csv GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING
406 01org_isa-l.git _01org_isa-l.git_commits.csv 01org_isa-l.git_hullabaloo_CONTRIBUTING.md
407 jbeder_yaml-cpp _jbeder_yaml-cpp_commits.csv jbeder_yaml-cpp_hullabaloo_CONTRIBUTING.md
408 cookiecutter_whichcraft _cookiecutter_whichcraft_commits.csv cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst
409 clojure_tools.logging.git _clojure_tools.logging.git_commits.csv clojure_tools.logging.git_hullabaloo_CONTRIBUTING.md
410 encode_django-rest-framework _encode_django-rest-framework_commits.csv encode_django-rest-framework_hullabaloo_CONTRIBUTING.md
411 matthewdeanmartin_terminaltables _matthewdeanmartin_terminaltables_commits.csv matthewdeanmartin_terminaltables_hullabaloo_CONTRIBUTING.md
412 namhyung_uftrace _namhyung_uftrace_commits.csv namhyung_uftrace_hullabaloo_CONTRIBUTING.md
413 resurrecting-open-source-projects_sniffit _resurrecting-open-source-projects_sniffit_commits.csv resurrecting-open-source-projects_sniffit_hullabaloo_CONTRIBUTING.md
414 nicolargo_glances _nicolargo_glances_commits.csv nicolargo_glances_hullabaloo_CONTRIBUTING.md
415 elastic_elasticsearch-ruby _elastic_elasticsearch-ruby_commits.csv elastic_elasticsearch-ruby_hullabaloo_CONTRIBUTING.md
416 idlesign_django-sitetree _idlesign_django-sitetree_commits.csv idlesign_django-sitetree_hullabaloo_CONTRIBUTING
417 intridea_grape-entity _intridea_grape-entity_commits.csv intridea_grape-entity_hullabaloo_CONTRIBUTING.md
418 dbus_dbus-glib.git dbus_dbus-glib.git_commits.csv dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
419 SethMMorton_natsort.git _SethMMorton_natsort.git_commits.csv SethMMorton_natsort.git_hullabaloo_CONTRIBUTING.md
420 guessit-io_guessit.git _guessit-io_guessit.git_commits.csv guessit-io_guessit.git_hullabaloo_CONTRIBUTING.rst
421 elastic_elasticsearch-py.git _elastic_elasticsearch-py.git_commits.csv elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md
422 NagiosEnterprises_nrpe.git _NagiosEnterprises_nrpe.git_commits.csv NagiosEnterprises_nrpe.git_hullabaloo_CONTRIBUTING.md
423 pylons_plaster _pylons_plaster_commits.csv pylons_plaster_hullabaloo_CONTRIBUTING.rst
424 oath-toolkit_oath-toolkit oath-toolkit_oath-toolkit_commits.csv oath-toolkit_oath-toolkit_hullabaloo_CONTRIBUTING.md
425 rytilahti_python-miio.git _rytilahti_python-miio.git_commits.csv rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md
426 RiotGames_buff-extensions _RiotGames_buff-extensions_commits.csv RiotGames_buff-extensions_hullabaloo_CONTRIBUTING.md
427 ronf_asyncssh _ronf_asyncssh_commits.csv ronf_asyncssh_hullabaloo_CONTRIBUTING.rst
428 zopefoundation_zc.lockfile _zopefoundation_zc.lockfile_commits.csv zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md
429 ImageOptim_libimagequant.git _ImageOptim_libimagequant.git_commits.csv ImageOptim_libimagequant.git_hullabaloo_CONTRIBUTING.md
430 ianare_exif-py _ianare_exif-py_commits.csv ianare_exif-py_hullabaloo_CONTRIBUTING.rst
431 websocket-client_websocket-client _websocket-client_websocket-client_commits.csv websocket-client_websocket-client_hullabaloo_CONTRIBUTING.md
432 i18next_i18next _i18next_i18next_commits.csv i18next_i18next_hullabaloo_CONTRIBUTING.md
433 aptly-dev_aptly.git _aptly-dev_aptly.git_commits.csv aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md
434 pymodbus-dev_pymodbus.git _pymodbus-dev_pymodbus.git_commits.csv pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md
435 zopefoundation_zope.i18nmessageid _zopefoundation_zope.i18nmessageid_commits.csv zopefoundation_zope.i18nmessageid_hullabaloo_CONTRIBUTING.md
436 theskumar_python-dotenv.git _theskumar_python-dotenv.git_commits.csv theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md
437 sobolevn_django-split-settings _sobolevn_django-split-settings_commits.csv sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst
438 powerline_powerline _powerline_powerline_commits.csv powerline_powerline_hullabaloo_CONTRIBUTING.rst
439 varvet_pundit _varvet_pundit_commits.csv varvet_pundit_hullabaloo_CONTRIBUTING.md
440 karenetheridge_Module-Manifest _karenetheridge_Module-Manifest_commits.csv karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING
441 lxc_lxcfs.git _lxc_lxcfs.git_commits.csv lxc_lxcfs.git_hullabaloo_CONTRIBUTING.md
442 colmap_colmap _colmap_colmap_commits.csv colmap_colmap_hullabaloo_CONTRIBUTING.md
443 tantale_deprecated.git _tantale_deprecated.git_commits.csv tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst
444 voxpupuli_librarian-puppet.git _voxpupuli_librarian-puppet.git_commits.csv voxpupuli_librarian-puppet.git_hullabaloo_CONTRIBUTING.md
445 jmaslak_Net-Netmask.git _jmaslak_Net-Netmask.git_commits.csv jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING
446 jobovy_galpy.git _jobovy_galpy.git_commits.csv jobovy_galpy.git_hullabaloo_CONTRIBUTING.md
447 pydanny_cached-property.git _pydanny_cached-property.git_commits.csv pydanny_cached-property.git_hullabaloo_CONTRIBUTING.rst
448 ros_robot_state_publisher _ros_robot_state_publisher_commits.csv ros_robot_state_publisher_hullabaloo_CONTRIBUTING.md
449 pazz_alot _pazz_alot_commits.csv pazz_alot_hullabaloo_CONTRIBUTING.rst
450 resurrecting-open-source-projects_cbm _resurrecting-open-source-projects_cbm_commits.csv resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md
451 thumbor_libthumbor _thumbor_libthumbor_commits.csv thumbor_libthumbor_hullabaloo_CONTRIBUTING
452 epeli_underscore.string _epeli_underscore.string_commits.csv epeli_underscore.string_hullabaloo_CONTRIBUTING.md
453 geopython_geolinks.git _geopython_geolinks.git_commits.csv geopython_geolinks.git_hullabaloo_CONTRIBUTING.md
454 zeroc-ice_ice-builder-gradle-debian-packaging.git zeroc-ice_ice-builder-gradle-debian-packaging.git_commits.csv zeroc-ice_ice-builder-gradle-debian-packaging.git_hullabaloo_CONTRIBUTING.md
455 maxmind_geoip-api-perl.git _maxmind_geoip-api-perl.git_commits.csv maxmind_geoip-api-perl.git_hullabaloo_CONTRIBUTING.md
456 httprb_http.rb _httprb_http.rb_commits.csv httprb_http.rb_hullabaloo_CONTRIBUTING.md
457 rails_rails-dom-testing _rails_rails-dom-testing_commits.csv rails_rails-dom-testing_hullabaloo_CONTRIBUTING.md
458 jas_libntlm jas_libntlm_commits.csv jas_libntlm_hullabaloo_CONTRIBUTING.md
459 silx-kit_pyFAI _silx-kit_pyFAI_commits.csv silx-kit_pyFAI_hullabaloo_CONTRIBUTING.md
460 rakhimov_scram.git _rakhimov_scram.git_commits.csv rakhimov_scram.git_hullabaloo_CONTRIBUTING.md
461 capistrano_sshkit.git _capistrano_sshkit.git_commits.csv capistrano_sshkit.git_hullabaloo_CONTRIBUTING.md
462 X0rg_CPU-X.git _X0rg_CPU-X.git_commits.csv X0rg_CPU-X.git_hullabaloo_CONTRIBUTING.md
463 florimondmanca_djangorestframework-api-key _florimondmanca_djangorestframework-api-key_commits.csv florimondmanca_djangorestframework-api-key_hullabaloo_CONTRIBUTING.md
464 zopefoundation_BTrees.git _zopefoundation_BTrees.git_commits.csv zopefoundation_BTrees.git_hullabaloo_CONTRIBUTING.md
465 selectize_selectize.js _selectize_selectize.js_commits.csv selectize_selectize.js_hullabaloo_CONTRIBUTING.md
466 jupyter_nbformat _jupyter_nbformat_commits.csv jupyter_nbformat_hullabaloo_CONTRIBUTING.md
467 checkpoint-restore_criu.git _checkpoint-restore_criu.git_commits.csv checkpoint-restore_criu.git_hullabaloo_CONTRIBUTING.md
468 untitaker_python-atomicwrites _untitaker_python-atomicwrites_commits.csv untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst
469 dpmb_dpmb dpmb_dpmb_commits.csv dpmb_dpmb_hullabaloo_CONTRIBUTING.md
470 emcrisostomo_fswatch.git _emcrisostomo_fswatch.git_commits.csv emcrisostomo_fswatch.git_hullabaloo_CONTRIBUTING.md
471 flask-restful_flask-restful _flask-restful_flask-restful_commits.csv flask-restful_flask-restful_hullabaloo_CONTRIBUTING.md
472 geopython_stetl.git _geopython_stetl.git_commits.csv geopython_stetl.git_hullabaloo_CONTRIBUTING.md
473 django-polymorphic_django-polymorphic _django-polymorphic_django-polymorphic_commits.csv django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst
474 jendrikseipp_vulture.git _jendrikseipp_vulture.git_commits.csv jendrikseipp_vulture.git_hullabaloo_CONTRIBUTING.rst
475 GNOME_gnome-calendar.git GNOME_gnome-calendar.git_commits.csv GNOME_gnome-calendar.git_hullabaloo_CONTRIBUTING.md
476 capistrano_capistrano.git _capistrano_capistrano.git_commits.csv capistrano_capistrano.git_hullabaloo_CONTRIBUTING
477 mwilliamson_spur.py.git _mwilliamson_spur.py.git_commits.csv mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst
478 troglobit_inadyn _troglobit_inadyn_commits.csv troglobit_inadyn_hullabaloo_CONTRIBUTING.md

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,198 @@
commit_hash,upstream_vcs_link,repo_id,project_handle,new_filepath
9b5ae2ba1c1e2fe20ae555212ef9a6b1f50957cf,https://github.com/aio-libs/aiomysql.git,aio-libs_aiomysql.git,aio-libs/aiomysql.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst
f8d94662015fa4ced56a4d2d11875b91b7284666,https://github.com/aio-libs/aiohttp.git,aio-libs_aiohttp.git,aio-libs/aiohttp.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst
679bf7de5aa77e34f534ce31ce33ea7ff0707317,https://github.com/box/genty.git,box_genty.git,box/genty.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/box_genty.git_hullabaloo_CONTRIBUTING.rst
a0b321f7a1ae658ee62899b776416c8eceb6db61,https://github.com/hackebrot/jinja2-time,hackebrot_jinja2-time,hackebrot/jinja2-time,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst
cf31482daf25df12bd718e00ae92fd50dfc4eb37,https://github.com/DonyorM/weresync.git,DonyorM_weresync.git,DonyorM/weresync.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst
f4d7c1a628411df9c818ac57c7bdc67e66177585,https://github.com/iovisor/bpftrace,iovisor_bpftrace,iovisor/bpftrace,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md
8eaf930ba595fb9f3e124ec1d17ef469c9ab01f6,https://github.com/zopefoundation/roman,zopefoundation_roman,zopefoundation/roman,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_roman_hullabaloo_CONTRIBUTING.md
4f3144d6bc05a74f24aa4e94e5dc4e6a461b87b7,https://github.com/intridea/oauth2,intridea_oauth2,intridea/oauth2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/intridea_oauth2_hullabaloo_CONTRIBUTING.md
8f793f86ce59ef393b3f7c6d93130dedb8d79fc8,https://github.com/timothycrosley/hug.git,timothycrosley_hug.git,timothycrosley/hug.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md
0fc9e32a0296ba399f216878c305fd83d7f115a9,https://github.com/watson-developer-cloud/python-sdk.git,watson-developer-cloud_python-sdk.git,watson-developer-cloud/python-sdk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md
2505322d10223bf7965740fac270c80cffed683f,https://github.com/moose/MooseX-Runnable,moose_MooseX-Runnable,moose/MooseX-Runnable,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/moose_MooseX-Runnable_hullabaloo_CONTRIBUTING
3111f06b7039417845164434801c1e5443b0b2d9,https://github.com/tpope/vim-pathogen.git,tpope_vim-pathogen.git,tpope/vim-pathogen.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown
a82e940f7ab11fa150db8ef67aca36b2a558282f,https://github.com/pyqtgraph/pyqtgraph.git,pyqtgraph_pyqtgraph.git,pyqtgraph/pyqtgraph.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt
1a0a8a536b2b3b22c0669fdefd810a7764553428,https://github.com/jazzband/django-push-notifications,jazzband_django-push-notifications,jazzband/django-push-notifications,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md
857ab548f619773a8420331ce77ee6dce21ed106,https://github.com/box/flaky.git,box_flaky.git,box/flaky.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/box_flaky.git_hullabaloo_CONTRIBUTING.rst
2a732ce025b508dfe8381ace04e8c59050790530,https://github.com/amueller/word_cloud,amueller_word_cloud,amueller/word/cloud,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/amueller_word_cloud_hullabaloo_CONTRIBUTING.md
95e617b15a138771ee61c3f65f6f5a7a9c1f872b,https://github.com/heynemann/pyvows.git,heynemann_pyvows.git,heynemann/pyvows.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md
8cfcfc8645fa47b776c8c6b441a9e2bb4b1b28d3,https://github.com/docker/compose,docker_compose,docker/compose,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/docker_compose_hullabaloo_CONTRIBUTING.md
0749e18b7b4c032db9dd39df00a63fafbe2960f2,https://github.com/pimutils/vdirsyncer,pimutils_vdirsyncer,pimutils/vdirsyncer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst
8706f6598ea157841c8d8ccf6365dfdbf0d72970,https://github.com/dahlia/libsass-python.git,dahlia_libsass-python.git,dahlia/libsass-python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst
bdbf2ce5edc4d973e6f2c2b7a2acf85285918eee,https://github.com/mkdocs/mkdocs,mkdocs_mkdocs,mkdocs/mkdocs,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md
e3d291ba3c9f48f5d439233584652aa71d6890c1,https://github.com/boto/boto3,boto_boto3,boto/boto3,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_boto3_hullabaloo_CONTRIBUTING.rst
1af188b50248c794b671e55df5659e5935fdc799,https://github.com/jquast/blessed,jquast_blessed,jquast/blessed,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jquast_blessed_hullabaloo_CONTRIBUTING.rst
02c417d33da3c237ecf65afe84d4fb0c6f1b4286,https://github.com/Storyyeller/enjarify,Storyyeller_enjarify,Storyyeller/enjarify,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt
7721c5c0e0fc59f4e9bdcbaa5b30ee82dd88a15e,https://github.com/boto/s3transfer,boto_s3transfer,boto/s3transfer,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_s3transfer_hullabaloo_CONTRIBUTING.rst
78ffdef83dad7cf04392d8aae77fed247323536e,https://github.com/derek73/python-nameparser,derek73_python-nameparser,derek73/python-nameparser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/derek73_python-nameparser_hullabaloo_CONTRIBUTING.md
a76744c544d9302f6cf3612326ec52214e2099d4,https://github.com/coddingtonbear/python-measurement,coddingtonbear_python-measurement,coddingtonbear/python-measurement,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md
af43013b4c7bf9edf13429be80d8c522cf14a730,https://github.com/editorconfig/editorconfig-core-c.git,editorconfig_editorconfig-core-c.git,editorconfig/editorconfig-core-c.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING
7529e129e46b0dd27ecc9ecc843bc7cc0231571e,https://github.com/joke2k/faker,joke2k_faker,joke2k/faker,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/joke2k_faker_hullabaloo_CONTRIBUTING.rst
75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae,https://github.com/google/gemmlowp,google_gemmlowp,google/gemmlowp,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_gemmlowp_hullabaloo_CONTRIBUTING.txt
5f72a0dc00818bea3bb0a6b5b10ad23824fbdcd3,https://github.com/iustin/pylibacl,iustin_pylibacl,iustin/pylibacl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iustin_pylibacl_hullabaloo_CONTRIBUTING.md
9be803c1ff0a1440b6c8d2bdb39a4e4a511d4695,https://github.com/PyFilesystem/pyfilesystem2,PyFilesystem_pyfilesystem2,PyFilesystem/pyfilesystem2,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md
271968e67533d195c16d0c0e1d73301ab8052c29,https://github.com/pallets/werkzeug,pallets_werkzeug,pallets/werkzeug,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_werkzeug_hullabaloo_CONTRIBUTING.rst
b95d3ee5bd401ef17f259e3eae27a3f5694016be,https://github.com/zeromq/pyzmq.git,zeromq_pyzmq.git,zeromq/pyzmq.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md
6ab218bf71bc091eb04cedde61dcfc6fb52bbf13,https://github.com/WoLpH/numpy-stl,WoLpH_numpy-stl,WoLpH/numpy-stl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst
7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659,https://github.com/prometheus/client_python.git,prometheus_client_python.git,prometheus/client/python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/prometheus_client_python.git_hullabaloo_CONTRIBUTING.md
5ed5d4ebc1bcabecdc3278a7dda848a29b5e8ae6,https://github.com/heynemann/preggy,heynemann_preggy,heynemann/preggy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heynemann_preggy_hullabaloo_CONTRIBUTING.md
3759eada7e7905ad0091e1f8edf676f177009188,https://github.com/python-trio/trio,python-trio_trio,python-trio/trio,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-trio_trio_hullabaloo_CONTRIBUTING.md
8d04e68fdac7ddf9f34f3d2f11f5f305815ef789,https://github.com/ionelmc/python-tblib,ionelmc_python-tblib,ionelmc/python-tblib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst
0aaffb919f6938261a75203f2c1c5f19764b0e17,https://github.com/ocaml/ocamlbuild.git,ocaml_ocamlbuild.git,ocaml/ocamlbuild.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc
5f1e47afcb524803f71f600b6a1edbfe40f6796f,https://github.com/karenetheridge/B-Hooks-Parser.git,karenetheridge_B-Hooks-Parser.git,karenetheridge/B-Hooks-Parser.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING
0ebc98342d4b2be00d7799e2e35b33898619b901,https://github.com/ComplianceAsCode/content,ComplianceAsCode_content,ComplianceAsCode/content,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md
9b6705571107d704d576269ae1723d589c330a16,https://github.com/mu-editor/mu,mu-editor_mu,mu-editor/mu,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mu-editor_mu_hullabaloo_CONTRIBUTING.rst
0f896927c4541cc70226e5fc946520f6225cde7b,https://github.com/dask/dask,dask_dask,dask/dask,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dask_dask_hullabaloo_CONTRIBUTING.md
7532e5040bd9487ddc4d74dcac22209b2fee33de,https://github.com/matthewwithanm/django-imagekit.git,matthewwithanm_django-imagekit.git,matthewwithanm/django-imagekit.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst
de6d9769c13e375a6299907dd0f1cd85e31a7ee1,https://github.com/dagolden/class-insideout.git,dagolden_class-insideout.git,dagolden/class-insideout.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dagolden_class-insideout.git_hullabaloo_CONTRIBUTING
5c229976032872d2c5e889f033ce82f20e15e6c4,https://github.com/lastpass/lastpass-cli,lastpass_lastpass-cli,lastpass/lastpass-cli,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lastpass_lastpass-cli_hullabaloo_CONTRIBUTING
8a365abd9c7255d0b92787671bdea5f44408cbaa,https://github.com/RIPE-NCC/ripe.atlas.sagan,RIPE-NCC_ripe.atlas.sagan,RIPE-NCC/ripe.atlas.sagan,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst
92f3d5111cf529b550a35a43cdbdd92910697ed1,https://github.com/emcconville/wand,emcconville_wand,emcconville/wand,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/emcconville_wand_hullabaloo_CONTRIBUTING.rst
5010bd74848e732669ef739b3df2b0d34e8f84c1,https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP,perl-catalyst_Catalyst-Authentication-Credential-HTTP,perl-catalyst/Catalyst-Authentication-Credential-HTTP,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING
87c6bc4f1cf3ca953dcb839fbfe32329947ce687,https://github.com/sslmate/certspotter,sslmate_certspotter,sslmate/certspotter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sslmate_certspotter_hullabaloo_CONTRIBUTING
2dc18c5ef831bd6d9b7d5cb2def4450a83114980,https://github.com/python-hyper/h11.git,python-hyper_h11.git,python-hyper/h11.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-hyper_h11.git_hullabaloo_CONTRIBUTING.md
5fa13ecb73d35b1e29ce2d5b8256dd879b58921c,https://github.com/felixge/node-dateformat,felixge_node-dateformat,felixge/node-dateformat,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/felixge_node-dateformat_hullabaloo_CONTRIBUTING.md
3d6089eeeea36ac808c6c409c36b8c13f1901bba,https://github.com/mongodb/motor,mongodb_motor,mongodb/motor,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mongodb_motor_hullabaloo_CONTRIBUTING.rst
7401efab4d6c2db93886ca92b4479ce90d749a51,https://github.com/rthalley/dnspython.git,rthalley_dnspython.git,rthalley/dnspython.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md
c33d22bc3ca9f18d4d282c04c77c8dfc88effb8b,https://github.com/Ableton/link.git,Ableton_link.git,Ableton/link.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Ableton_link.git_hullabaloo_CONTRIBUTING.md
4d4720a2fc6827729aba75b950fb9a1cbb8a83c9,https://github.com/django-ldapdb/django-ldapdb,django-ldapdb_django-ldapdb,django-ldapdb/django-ldapdb,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst
39e75497959a90f3e5c3925801b15e21899e2398,https://github.com/hickford/MechanicalSoup,hickford_MechanicalSoup,hickford/MechanicalSoup,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md
44d5a1cb3c6b78e0c2fe77f7133ddf909fb24d1c,https://github.com/gtimelog/gtimelog,gtimelog_gtimelog,gtimelog/gtimelog,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst
061607fc1dd4c9acde6bfbcbd7094d2515163f8b,https://github.com/openstack/python-swiftclient.git,openstack_python-swiftclient.git,openstack/python-swiftclient.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md
e65c12da5f0b2d2c3531d790953b5d288c03b4a7,https://gitlab.gnome.org/GNOME/network-manager-applet,GNOME_network-manager-applet,GNOME/network-manager-applet,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/GNOME_network-manager-applet_hullabaloo_CONTRIBUTING
c9cda413f4f4be6a42a55d7c44a56081e8496ce6,https://gitlab.com/libvirt/libvirt-ruby.git,libvirt_libvirt-ruby.git,libvirt/libvirt-ruby.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst
8826e8c8dd196963866d5907b46f4716fc8732f7,https://github.com/FirefighterBlu3/python-pam,FirefighterBlu3_python-pam,FirefighterBlu3/python-pam,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md
78425623e890d254da489e7a198223849883a157,https://github.com/lxqt/qterminal.git,lxqt_qterminal.git,lxqt/qterminal.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md
edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc,https://github.com/python-gitlab/python-gitlab.git,python-gitlab_python-gitlab.git,python-gitlab/python-gitlab.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst
fc342ca115e577225dd54c7c8cfed3b21edbcba8,https://github.com/elmar/aptitude-robot,elmar_aptitude-robot,elmar/aptitude-robot,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown
93a66ab15c5068574d71acec298219f32fb0c3a2,https://github.com/doorkeeper-gem/doorkeeper,doorkeeper-gem_doorkeeper,doorkeeper-gem/doorkeeper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md
72455878f6e8a7056448829ef227d31520b34839,https://github.com/breunigs/python-librtmp-debian,breunigs_python-librtmp-debian,breunigs/python-librtmp-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst
56fceff11bf90f020acd4000568a0a56299f8ffe,https://github.com/google/python_portpicker,google_python_portpicker,google/python/portpicker,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_python_portpicker_hullabaloo_CONTRIBUTING.md
6aa6ba0667f49dea0e71d4ec1cca93d3d67f302c,https://github.com/carljm/django-model-utils.git,carljm_django-model-utils.git,carljm/django-model-utils.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst
f1aa25bcf83eb77eb6476c678d4375039127679a,https://github.com/marshmallow-code/flask-marshmallow.git,marshmallow-code_marshmallow.git,marshmallow-code/marshmallow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
f684f4ad243abfed03c53946a85493e03d272ec7,https://github.com/trezor/trezor-firmware.git,trezor_trezor-firmware.git,trezor/trezor-firmware.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md
33c482078b0ffe85e13dd624cd985e7a69d15041,https://github.com/kasei/attean.git,kasei_attean.git,kasei/attean.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kasei_attean.git_hullabaloo_CONTRIBUTING
a7cceacf16d2a0f959ec76935c89ccdce1707385,https://github.com/gaetano-guerriero/eyeD3-debian,gaetano-guerriero_eyeD3-debian,gaetano-guerriero/eyeD3-debian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst
890441240ba4fa5d2f79d4e6e6c326a5f0542c6d,https://github.com/ionelmc/python-lazy-object-proxy.git,ionelmc_python-lazy-object-proxy.git,ionelmc/python-lazy-object-proxy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst
8cba4a2011f70921d5130e0fbffa7e986ea82593,https://github.com/jpy-consortium/jpy,jpy-consortium_jpy,jpy-consortium/jpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md
30167a535c7eac17888d50a08998bccf92469e19,https://github.com/openwisp/django-x509,openwisp_django-x509,openwisp/django-x509,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openwisp_django-x509_hullabaloo_CONTRIBUTING.rst
3e3455ef9ae8f9751f8f1cdc8d08c7ccfdcd2b2f,https://github.com/tox-dev/py-filelock,tox-dev_py-filelock,tox-dev/py-filelock,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md
fdb29683d805781884262ace1df463746bc66caa,https://github.com/survivejs/webpack-merge.git,survivejs_webpack-merge.git,survivejs/webpack-merge.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md
c975a20ac362b8097978d9eda4e65a9ba5e25bc6,https://github.com/Smattr/rumur.git,Smattr_rumur.git,Smattr/rumur.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst
4327f5898a3fdf0cb2a29cfa5318ff61670bb97b,https://github.com/lucc/khard,lucc_khard,lucc/khard,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lucc_khard_hullabaloo_CONTRIBUTING.rst
7ac26ed9c241d00e8688139b06e804badb25fa46,https://gitlab.freedesktop.org/libinput/libinput,libinput_libinput,libinput/libinput,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libinput_libinput_hullabaloo_CONTRIBUTING.md
ca39efa570755928384f9ad7f60e62f3535a5c6f,https://github.com/source-foundry/Hack,source-foundry_Hack,source-foundry/Hack,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/source-foundry_Hack_hullabaloo_CONTRIBUTING.md
c724fbdbc3041446ba139feaa9bd2a7189706611,https://github.com/pallets-eco/flask-sqlalchemy,pallets-eco_flask-sqlalchemy,pallets-eco/flask-sqlalchemy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst
b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192,https://github.com/matthewwithanm/pilkit,matthewwithanm_pilkit,matthewwithanm/pilkit,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst
a1b157f8fe1e12b8028190c81d43e478df7484e5,https://github.com/PyCQA/flake8-polyfill.git,PyCQA_flake8-polyfill.git,PyCQA/flake8-polyfill.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst
2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2,https://github.com/google/pybadges.git,google_pybadges.git,google/pybadges.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_pybadges.git_hullabaloo_CONTRIBUTING.md
257e3aca40db8e2cdc004afbc6c8f9549b628a2a,https://github.com/PyCQA/prospector,PyCQA_prospector,PyCQA/prospector,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyCQA_prospector_hullabaloo_CONTRIBUTING.rst
30b0f836ff28750fcadfe5511b35e8b00c0de1e5,https://github.com/geopython/geolinks.git,geopy_geopy,geopy/geopy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/geopython_geolinks.git_hullabaloo_CONTRIBUTING.md
c2c44f0ffc659ebdd1a1faf334c845aefdd371e1,https://github.com/pytest-dev/pytest.git,pytest-dev_pytest.git,pytest-dev/pytest.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt
b293438ff8f1b39cad9329028b135c768f34c137,https://github.com/pika/pika,pika_pika,pika/pika,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pika_pika_hullabaloo_CONTRIBUTING.md
7057bbbf5abd0b2c39940bbc3fb4a253ff920e59,https://github.com/geopandas/geopandas.git,geopandas_geopandas.git,geopandas/geopandas.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md
c79b6e3e1e7faae5a36d1396c9fce0e0987db8d7,https://github.com/jupyter/jupyter-sphinx.git,jupyter_jupyter-sphinx.git,jupyter/jupyter-sphinx.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md
e94e9a8b1fe87b82f3d1eb2269898d8e62b38f81,https://github.com/Pylons/venusian,Pylons_venusian,Pylons/venusian,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_venusian_hullabaloo_CONTRIBUTING.rst
d5e671f1ce4b4086a7fbfb06efae14dae9a5fccb,https://github.com/jjjake/internetarchive.git,jjjake_internetarchive.git,jjjake/internetarchive.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst
8544eabcb99f3bc58052e722e8317ad7a9bfd620,https://github.com/openstack/rally.git,openstack_rally.git,openstack/rally.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_rally.git_hullabaloo_CONTRIBUTING.rst
70d28de924a200102d98d55757c986ab2b839753,https://github.com/coturn/coturn,coturn_coturn,coturn/coturn,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/coturn_coturn_hullabaloo_CONTRIBUTING.md
841005cbfaa6a3d3f97c96b5228838eba3f41ab9,https://github.com/python/typed_ast.git,python_typed_ast.git,python/typed/ast.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python_typed_ast.git_hullabaloo_CONTRIBUTING.md
422b3ede6532a10f6171388cd7d4d940e872d044,https://github.com/pyutilib/pyutilib,pyutilib_pyutilib,pyutilib/pyutilib,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md
a112f9a9c6f901f8f249ea40efbfee2aeb36644e,https://github.com/pavlov99/json-rpc,pavlov99_json-rpc,pavlov99/json-rpc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md
2021e1904a53a1eb7509e488b3216136c5b32f35,https://github.com/pygraphviz/pygraphviz.git,pygraphviz_pygraphviz.git,pygraphviz/pygraphviz.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst
d1041acfbaabe3df0642f3312f9f0148fe819a7a,https://github.com/google/xsecurelock,google_xsecurelock,google/xsecurelock,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_xsecurelock_hullabaloo_CONTRIBUTING
7c1ee28f13fe9c947d956d9b2ba298cba4776e1a,https://github.com/mongoengine/flask-mongoengine,mongoengine_mongoengine,mongoengine/mongoengine,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md
ddbefff7edcf47906373c9fa1175ba7a8927e446,https://github.com/karenetheridge/B-Hooks-OP-Check,karenetheridge_B-Hooks-OP-Check,karenetheridge/B-Hooks-OP-Check,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING
24eba1bbc0aafc9e503747e688cacfdb88ad2fb8,https://github.com/datastax/python-driver.git,datastax_python-driver.git,datastax/python-driver.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/datastax_python-driver.git_hullabaloo_CONTRIBUTING.md
8d52ba7a184305e474eddd1f3f7cacd0e26c2cbe,https://github.com/petkaantonov/bluebird.git,petkaantonov_bluebird.git,petkaantonov/bluebird.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md
fafacbff1595d5e94c7afb633ec84ff1e7229ebb,https://github.com/Pylons/plaster_pastedeploy.git,Pylons_plaster_pastedeploy.git,Pylons/plaster/pastedeploy.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst
aeed204942a7305dc28ae1523a9befb3cb053fe8,https://github.com/jtauber/pyuca,jtauber_pyuca,jtauber/pyuca,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jtauber_pyuca_hullabaloo_CONTRIBUTING.md
cb947f6d12d125fd84a051f65808fb4a88825307,https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git,gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org/ruby/gems/gitlab-mail/room.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md
13716d8b48c8380e3e0eb962a9ea2d452182db57,https://github.com/google/highwayhash,google_highwayhash,google/highwayhash,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_highwayhash_hullabaloo_CONTRIBUTING
6088ce10b9afad415ebe3fc96cb40e271a0cf910,https://gitlab.com/libvirt/libvirt-python.git,libvirt_libvirt-python.git,libvirt/libvirt-python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst
03993c4b41ac65105f9a118c6b4624b692ddea30,https://github.com/digitalbazaar/pyld,digitalbazaar_pyld,digitalbazaar/pyld,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst
797757bde2e305e035bcba65a93993ecd0716398,https://github.com/rsms/inter,rsms_inter,rsms/inter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rsms_inter_hullabaloo_CONTRIBUTING.md
44a829cf8946707bd08ed17cc2342b69b9d2cab1,https://github.com/chaijs/chai,chaijs_chai,chaijs/chai,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/chaijs_chai_hullabaloo_CONTRIBUTING.md
232cae5253382d8d8f7678dbda1ee37424904cab,https://gitlab.freedesktop.org/dbus/dbus-python,dbus_dbus-python,dbus/dbus-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dbus_dbus-python_hullabaloo_CONTRIBUTING
d4cfa1f208803cb95a4e2261bd2c3fc132f4b347,https://github.com/python-ldap/python-ldap,python-ldap_python-ldap,python-ldap/python-ldap,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst
3b766a866fc78226e43a9efe692220bbcb87e399,https://github.com/pallets/click.git,pallets_click.git,pallets/click.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_click.git_hullabaloo_CONTRIBUTING.rst
a5f5b6f0420786fae6120d54fc8eac9b0f22b745,https://github.com/ktbyers/netmiko,ktbyers_netmiko,ktbyers/netmiko,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ktbyers_netmiko_hullabaloo_CONTRIBUTING.md
7026b4a2975340fd3535cfebff39171a07008688,https://github.com/spyder-ide/qtawesome,spyder-ide_qtawesome,spyder-ide/qtawesome,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md
b13de9045fe41c913cb2ad651eefba6c440a3a9a,https://github.com/puppetlabs/facter.git,puppetlabs_facter.git,puppetlabs/facter.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md
b80894938070fcec09a6dec7c8648f4d167fc45a,https://github.com/marshmallow-code/flask-marshmallow.git,marshmallow-code_flask-marshmallow.git,marshmallow-code/flask-marshmallow.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
129ce46dc40e72147385082736475c2cc8926968,https://github.com/resurrecting-open-source-projects/outguess,resurrecting-open-source-projects_outguess,resurrecting-open-source-projects/outguess,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md
c474d99907a19deea5a4cb7ee3ebea1add698006,https://github.com/spyder-ide/qtpy,spyder-ide_qtpy,spyder-ide/qtpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst
d90770d185c28742ee750a732aa3749ff58ff158,https://github.com/softlayer/softlayer-python,softlayer_softlayer-python,softlayer/softlayer-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md
3eae6f4fff3fd01a40f56b19f02e0690266fc824,https://github.com/shouldjs/should.js.git,shouldjs_should.js.git,shouldjs/should.js.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md
7c6ed297ddaad3c2f78fed1c3b6bb548c6f658e1,https://github.com/jupyter/terminado,jupyter_terminado,jupyter/terminado,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jupyter_terminado_hullabaloo_CONTRIBUTING.rst
1e8e049887206b7933b8cc3c7ceeda864fb4c05e,https://github.com/django-waffle/django-waffle,django-waffle_django-waffle,django-waffle/django-waffle,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst
d9823fcc76a6cdad4cc68ad138cc5bbbf810a764,https://github.com/metaodi/osmapi.git,metaodi_osmapi.git,metaodi/osmapi.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md
f43f8495c79fa9374ad2a5e5011f31d555e0cdec,https://github.com/kilobyte/memkind,kilobyte_memkind,kilobyte/memkind,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kilobyte_memkind_hullabaloo_CONTRIBUTING
e0e50841f91c1d2c77145f475aab67bf02ce1973,https://github.com/pallets/itsdangerous,pallets_itsdangerous,pallets/itsdangerous,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst
65577d13992ba086bbba7882dda352d7b232b385,https://github.com/twilio/twilio-python,twilio_twilio-python,twilio/twilio-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/twilio_twilio-python_hullabaloo_CONTRIBUTING.md
d5420216df8a35c16e569a353b41029ec667ebf3,https://github.com/gawel/panoramisk.git,gawel_panoramisk.git,gawel/panoramisk.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst
ab769e86b0e516d37a52038bb337053addf9af4a,https://github.com/faye/faye,faye_faye,faye/faye,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/faye_faye_hullabaloo_CONTRIBUTING.md
fdf55c2817c9a457de4d5609cabfda0aa0620dc1,https://github.com/openstack/swift.git,openstack_swift.git,openstack/swift.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_swift.git_hullabaloo_CONTRIBUTING.md
6e1fc74ed936860f9609f964d48d63f380c58170,https://github.com/RIPE-NCC/ripe-atlas-cousteau.git,RIPE-NCC_ripe-atlas-cousteau.git,RIPE-NCC/ripe-atlas-cousteau.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst
2cc5f14309704d80063a750b85861cb86dc40e7f,https://github.com/google/python-gflags.git,google_python-gflags.git,google/python-gflags.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_python-gflags.git_hullabaloo_CONTRIBUTING.md
1094a4c862d1b600a6a93d04f276809f5cd03701,https://github.com/mdbootstrap/perfect-scrollbar,mdbootstrap_perfect-scrollbar,mdbootstrap/perfect-scrollbar,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md
350b191468d1a701d945a062bbf4df9fbdaaaaae,https://github.com/heroku/netrc,heroku_netrc,heroku/netrc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heroku_netrc_hullabaloo_CONTRIBUTING.md
48b19a2272867854f097058dda4f55d05d93e28d,https://github.com/eclipse/paho.mqtt.python.git,eclipse_paho.mqtt.python.git,eclipse/paho.mqtt.python.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md
d424c38e59bca66492f90817a5990922b4b004d0,https://github.com/requests-cache/requests-cache,requests-cache_requests-cache,requests-cache/requests-cache,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md
fc5abc05876bbffb8aa8776868492a5bcb596c99,https://github.com/mozilla/source-map,mozilla_source-map,mozilla/source-map,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mozilla_source-map_hullabaloo_CONTRIBUTING.md
e2d247f40339088710ba2322bea3e44f801acfac,https://github.com/dagolden/math-random-oo.git,dagolden_math-random-oo.git,dagolden/math-random-oo.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING
7d375e1b7502995703fb3c1729ed4f746d169751,https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git,pub_scm_linux_kernel_git_jberg_iw.git,pub/scm/linux/kernel/git/jberg/iw.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING
3a995294a99a00a62fb451c8dc3f0c404c8e92f5,https://github.com/pydata/xarray,pydata_xarray,pydata/xarray,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pydata_xarray_hullabaloo_CONTRIBUTING.md
27c2db2bf26039bef41323c964bc4e0317a7b4f5,https://github.com/pantsbuild/pex.git,pantsbuild_pex.git,pantsbuild/pex.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md
8d90a86cdf4da7bc1ea520ef5701a63780638c13,https://github.com/nginxinc/nginx-prometheus-exporter,nginxinc_nginx-prometheus-exporter,nginxinc/nginx-prometheus-exporter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md
ba1ef7a8f47a6140f8323a393f0e04f818f5f52d,https://github.com/sphinx-contrib/restbuilder.git,sphinx-contrib_restbuilder.git,sphinx-contrib/restbuilder.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst
1c6af940c08ca2fdb142916974a192ab6ff9ea7c,https://github.com/zopefoundation/zope.component,zopefoundation_zope.component,zopefoundation/zope.component,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md
87d2f69a591b29c254f6ce1974a8347d746bfe9f,https://github.com/iovisor/bcc.git,iovisor_bcc.git,iovisor/bcc.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md
04693fc6beb2d2dbb3aa8d33932a171900ea239c,https://github.com/diff-match-patch-python/diff-match-patch,diff-match-patch-python_diff-match-patch,diff-match-patch-python/diff-match-patch,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md
0d125a567e7ffa9dfe285df8c436783d29594c79,https://github.com/boto/botocore,boto_botocore,boto/botocore,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_botocore_hullabaloo_CONTRIBUTING.md
fc679cf33ed2c65c2deaf9235f08889ef95dd2f2,https://github.com/sferik/twitter,sferik_twitter,sferik/twitter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sferik_twitter_hullabaloo_CONTRIBUTING.md
3ce1cbdc192a709b51290725506c31a8959423ad,https://github.com/common-workflow-language/schema_salad,common-workflow-language_schema_salad,common-workflow-language/schema/salad,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md
892ea9e222ca7148551c3d00bb37ce9e24316b16,https://github.com/jazzband/django-recurrence,jazzband_django-recurrence,jazzband/django-recurrence,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst
915f126b9484ad7fe6df0d7f323bd55f93f1c917,https://github.com/nesquena/rabl,nesquena_rabl,nesquena/rabl,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/nesquena_rabl_hullabaloo_CONTRIBUTING.md
0a6b00dd73c2c49d38e50d01add558e1bb4f3c92,https://github.com/pytest-dev/pytest-cov.git,pytest-dev_pytest-cov.git,pytest-dev/pytest-cov.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md
90014cb496817f7b9544832073137f9e463e746a,https://github.com/michaeljones/breathe.git,michaeljones_breathe.git,michaeljones/breathe.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst
f6ee96cf37bdb805ed35416b4370e3e407875bca,https://github.com/Pylons/hupper,Pylons_hupper,Pylons/hupper,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_hupper_hullabaloo_CONTRIBUTING.rst
451c9909d4fd7bc5301bf032a0b6f21982dac4cb,https://github.com/django-extensions/django-extensions,django-extensions_django-extensions,django-extensions/django-extensions,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md
fe623bbfadfe8d32efffa9dcded4db1f9b3d9550,https://github.com/mcmtroffaes/pathlib2.git,mcmtroffaes_pathlib2.git,mcmtroffaes/pathlib2.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst
937da03f5709f943f9ed23ff786b42aa78fac336,https://github.com/webrtchacks/adapter,webrtchacks_adapter,webrtchacks/adapter,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/webrtchacks_adapter_hullabaloo_CONTRIBUTING
da2b0f065eb084d7c9f607a8e1f8fbad8036e1ba,https://github.com/jazzband/django-debug-toolbar.git,jazzband_django-debug-toolbar.git,jazzband/django-debug-toolbar.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md
048b33b80c9a11bf11dd72a385e16152dc1ec48b,https://github.com/rasterio/rasterio.git,rasterio_rasterio.git,rasterio/rasterio.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst
44be7c4582c077924d88a7a551cc31700f1014f3,https://github.com/zyga/padme,zyga_padme,zyga/padme,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zyga_padme_hullabaloo_CONTRIBUTING.rst
4471b7e8506082ed7daf92304cc2f35eb844a5d2,https://github.com/dropbox/dropbox-sdk-python,dropbox_dropbox-sdk-python,dropbox/dropbox-sdk-python,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst
29f13ea202f07dce62f9073f24b2daa3d780a55f,https://github.com/scrapinghub/dateparser,scrapinghub_dateparser,scrapinghub/dateparser,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst
02a8a52e005c0fdfff80f0b709b59f8cfccdf7fc,https://gitlab.freedesktop.org/gstreamer/orc,gstreamer_orc,gstreamer/orc,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gstreamer_orc_hullabaloo_CONTRIBUTING.md
5448e7ee9a18599042e3adf6e9cb34d812a82323,https://github.com/kornelski/pngquant.git,kornelski_pngquant.git,kornelski/pngquant.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md
14eb52c34131bd702778b6d9a02d5f754e329e76,https://github.com/jazzband/django-pipeline,jazzband_django-pipeline,jazzband/django-pipeline,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst
fdf513302703d830eddbac40a8757c6b02549261,https://github.com/pytroll/satpy,pytroll_satpy,pytroll/satpy,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytroll_satpy_hullabaloo_CONTRIBUTING.rst
647f21332d37c05e888eb9d01261310450704d53,https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info,GNOME_mobile-broadband-provider-info,GNOME/mobile-broadband-provider-info,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING
e903b9c057a41ce5039c9d91ccbce549e5b71126,https://github.com/cookiecutter/whichcraft,cookiecutter_whichcraft,cookiecutter/whichcraft,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst
f0f7a91b3157790aac8c568e3349dde8dca1fac5,https://github.com/encode/django-rest-framework,encode_django-rest-framework,encode/django-rest-framework,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/encode_django-rest-framework_hullabaloo_CONTRIBUTING.md
dea4b862e6548858f5645b6359eff9a4cb51b594,https://github.com/idlesign/django-sitetree,idlesign_django-sitetree,idlesign/django-sitetree,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/idlesign_django-sitetree_hullabaloo_CONTRIBUTING
232cae5253382d8d8f7678dbda1ee37424904cab,https://gitlab.freedesktop.org/dbus/dbus-glib.git,dbus_dbus-glib.git,dbus/dbus-glib.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
638713daab211eb104f0228a7d59af227a89008f,https://github.com/elastic/elasticsearch-py.git,elastic_elasticsearch-py.git,elastic/elasticsearch-py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md
5445c0a95352506da2677f3de09c07286d5140ea,https://github.com/pylons/plaster,pylons_plaster,pylons/plaster,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pylons_plaster_hullabaloo_CONTRIBUTING.rst
ca82caaeb6ee6ef2820ca6726eba5b8f86f5e566,https://github.com/rytilahti/python-miio.git,rytilahti_python-miio.git,rytilahti/python-miio.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md
d5d49519e52c665b4789ce9e44c558cbcc127b8a,https://github.com/ronf/asyncssh,ronf_asyncssh,ronf/asyncssh,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ronf_asyncssh_hullabaloo_CONTRIBUTING.rst
717482dd873a9032cbb019062aa06401f871f765,https://github.com/zopefoundation/zc.lockfile,zopefoundation_zc.lockfile,zopefoundation/zc.lockfile,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md
77cf9560ceb833f7dd51c10b6d10519ef7875084,https://github.com/ianare/exif-py,ianare_exif-py,ianare/exif-py,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ianare_exif-py_hullabaloo_CONTRIBUTING.rst
c6c10123301a20c6d6981c7062617edb9425fac2,https://github.com/aptly-dev/aptly.git,aptly-dev_aptly.git,aptly-dev/aptly.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md
e43ab548b28c8d1af01253088a44a41e35c08722,https://github.com/pymodbus-dev/pymodbus.git,pymodbus-dev_pymodbus.git,pymodbus-dev/pymodbus.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md
b7759b7b62bce8f658aab5a1b8968a539d10208d,https://github.com/theskumar/python-dotenv.git,theskumar_python-dotenv.git,theskumar/python-dotenv.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md
aca958de3e7d22375a10a642d551a27e3686415c,https://github.com/sobolevn/django-split-settings,sobolevn_django-split-settings,sobolevn/django-split-settings,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst
edfc090ddb977752557febb1c99981a4efb612da,https://github.com/powerline/powerline,powerline_powerline,powerline/powerline,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/powerline_powerline_hullabaloo_CONTRIBUTING.rst
a557ccc7a87ebe0ae1222bff9cb5eb82d54db726,https://github.com/karenetheridge/Module-Manifest,karenetheridge_Module-Manifest,karenetheridge/Module-Manifest,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING
1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0,https://github.com/tantale/deprecated.git,tantale_deprecated.git,tantale/deprecated.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst
feed17b67d83bc8e7b8a72c62c56c5103c7bebf2,https://github.com/jmaslak/Net-Netmask.git,jmaslak_Net-Netmask.git,jmaslak/Net-Netmask.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING
26075d8710cc4f460cb8645352ca63cf4398568c,https://github.com/pazz/alot,pazz_alot,pazz/alot,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pazz_alot_hullabaloo_CONTRIBUTING.rst
b656d864ed490c8370304c5170e95c42d8fa966a,https://github.com/resurrecting-open-source-projects/cbm,resurrecting-open-source-projects_cbm,resurrecting-open-source-projects/cbm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md
ff9658b9e170031daa6dc66b9116c53a214652eb,https://github.com/thumbor/libthumbor,thumbor_libthumbor,thumbor/libthumbor,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/thumbor_libthumbor_hullabaloo_CONTRIBUTING
dc0c5a37faf31c28bcf4765206482ef693b83ecd,https://github.com/epeli/underscore.string,epeli_underscore.string,epeli/underscore.string,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/epeli_underscore.string_hullabaloo_CONTRIBUTING.md
117c4f758cd5da2eea272f7ef5418aaa41996008,https://gitlab.com/jas/libntlm,jas_libntlm,jas/libntlm,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jas_libntlm_hullabaloo_CONTRIBUTING.md
4425735296e32c33781be0c76e77a0d9811b6206,https://github.com/untitaker/python-atomicwrites,untitaker_python-atomicwrites,untitaker/python-atomicwrites,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst
0acc6486652024304058da5baf87113fe97f5464,https://github.com/django-polymorphic/django-polymorphic,django-polymorphic_django-polymorphic,django-polymorphic/django-polymorphic,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst
e02d5e4788e7a477d061accdefbd701d6fa876cf,https://github.com/mwilliamson/spur.py.git,mwilliamson_spur.py.git,mwilliamson/spur.py.git,/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst
1 commit_hash upstream_vcs_link repo_id project_handle new_filepath
2 9b5ae2ba1c1e2fe20ae555212ef9a6b1f50957cf https://github.com/aio-libs/aiomysql.git aio-libs_aiomysql.git aio-libs/aiomysql.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst
3 f8d94662015fa4ced56a4d2d11875b91b7284666 https://github.com/aio-libs/aiohttp.git aio-libs_aiohttp.git aio-libs/aiohttp.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst
4 679bf7de5aa77e34f534ce31ce33ea7ff0707317 https://github.com/box/genty.git box_genty.git box/genty.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/box_genty.git_hullabaloo_CONTRIBUTING.rst
5 a0b321f7a1ae658ee62899b776416c8eceb6db61 https://github.com/hackebrot/jinja2-time hackebrot_jinja2-time hackebrot/jinja2-time /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst
6 cf31482daf25df12bd718e00ae92fd50dfc4eb37 https://github.com/DonyorM/weresync.git DonyorM_weresync.git DonyorM/weresync.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst
7 f4d7c1a628411df9c818ac57c7bdc67e66177585 https://github.com/iovisor/bpftrace iovisor_bpftrace iovisor/bpftrace /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md
8 8eaf930ba595fb9f3e124ec1d17ef469c9ab01f6 https://github.com/zopefoundation/roman zopefoundation_roman zopefoundation/roman /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_roman_hullabaloo_CONTRIBUTING.md
9 4f3144d6bc05a74f24aa4e94e5dc4e6a461b87b7 https://github.com/intridea/oauth2 intridea_oauth2 intridea/oauth2 /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/intridea_oauth2_hullabaloo_CONTRIBUTING.md
10 8f793f86ce59ef393b3f7c6d93130dedb8d79fc8 https://github.com/timothycrosley/hug.git timothycrosley_hug.git timothycrosley/hug.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md
11 0fc9e32a0296ba399f216878c305fd83d7f115a9 https://github.com/watson-developer-cloud/python-sdk.git watson-developer-cloud_python-sdk.git watson-developer-cloud/python-sdk.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md
12 2505322d10223bf7965740fac270c80cffed683f https://github.com/moose/MooseX-Runnable moose_MooseX-Runnable moose/MooseX-Runnable /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/moose_MooseX-Runnable_hullabaloo_CONTRIBUTING
13 3111f06b7039417845164434801c1e5443b0b2d9 https://github.com/tpope/vim-pathogen.git tpope_vim-pathogen.git tpope/vim-pathogen.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown
14 a82e940f7ab11fa150db8ef67aca36b2a558282f https://github.com/pyqtgraph/pyqtgraph.git pyqtgraph_pyqtgraph.git pyqtgraph/pyqtgraph.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt
15 1a0a8a536b2b3b22c0669fdefd810a7764553428 https://github.com/jazzband/django-push-notifications jazzband_django-push-notifications jazzband/django-push-notifications /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md
16 857ab548f619773a8420331ce77ee6dce21ed106 https://github.com/box/flaky.git box_flaky.git box/flaky.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/box_flaky.git_hullabaloo_CONTRIBUTING.rst
17 2a732ce025b508dfe8381ace04e8c59050790530 https://github.com/amueller/word_cloud amueller_word_cloud amueller/word/cloud /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/amueller_word_cloud_hullabaloo_CONTRIBUTING.md
18 95e617b15a138771ee61c3f65f6f5a7a9c1f872b https://github.com/heynemann/pyvows.git heynemann_pyvows.git heynemann/pyvows.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md
19 8cfcfc8645fa47b776c8c6b441a9e2bb4b1b28d3 https://github.com/docker/compose docker_compose docker/compose /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/docker_compose_hullabaloo_CONTRIBUTING.md
20 0749e18b7b4c032db9dd39df00a63fafbe2960f2 https://github.com/pimutils/vdirsyncer pimutils_vdirsyncer pimutils/vdirsyncer /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst
21 8706f6598ea157841c8d8ccf6365dfdbf0d72970 https://github.com/dahlia/libsass-python.git dahlia_libsass-python.git dahlia/libsass-python.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst
22 bdbf2ce5edc4d973e6f2c2b7a2acf85285918eee https://github.com/mkdocs/mkdocs mkdocs_mkdocs mkdocs/mkdocs /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md
23 e3d291ba3c9f48f5d439233584652aa71d6890c1 https://github.com/boto/boto3 boto_boto3 boto/boto3 /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_boto3_hullabaloo_CONTRIBUTING.rst
24 1af188b50248c794b671e55df5659e5935fdc799 https://github.com/jquast/blessed jquast_blessed jquast/blessed /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jquast_blessed_hullabaloo_CONTRIBUTING.rst
25 02c417d33da3c237ecf65afe84d4fb0c6f1b4286 https://github.com/Storyyeller/enjarify Storyyeller_enjarify Storyyeller/enjarify /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt
26 7721c5c0e0fc59f4e9bdcbaa5b30ee82dd88a15e https://github.com/boto/s3transfer boto_s3transfer boto/s3transfer /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_s3transfer_hullabaloo_CONTRIBUTING.rst
27 78ffdef83dad7cf04392d8aae77fed247323536e https://github.com/derek73/python-nameparser derek73_python-nameparser derek73/python-nameparser /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/derek73_python-nameparser_hullabaloo_CONTRIBUTING.md
28 a76744c544d9302f6cf3612326ec52214e2099d4 https://github.com/coddingtonbear/python-measurement coddingtonbear_python-measurement coddingtonbear/python-measurement /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md
29 af43013b4c7bf9edf13429be80d8c522cf14a730 https://github.com/editorconfig/editorconfig-core-c.git editorconfig_editorconfig-core-c.git editorconfig/editorconfig-core-c.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING
30 7529e129e46b0dd27ecc9ecc843bc7cc0231571e https://github.com/joke2k/faker joke2k_faker joke2k/faker /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/joke2k_faker_hullabaloo_CONTRIBUTING.rst
31 75c4ec0ba4dd86e4f763a54e01002ff29f1d57ae https://github.com/google/gemmlowp google_gemmlowp google/gemmlowp /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_gemmlowp_hullabaloo_CONTRIBUTING.txt
32 5f72a0dc00818bea3bb0a6b5b10ad23824fbdcd3 https://github.com/iustin/pylibacl iustin_pylibacl iustin/pylibacl /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iustin_pylibacl_hullabaloo_CONTRIBUTING.md
33 9be803c1ff0a1440b6c8d2bdb39a4e4a511d4695 https://github.com/PyFilesystem/pyfilesystem2 PyFilesystem_pyfilesystem2 PyFilesystem/pyfilesystem2 /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md
34 271968e67533d195c16d0c0e1d73301ab8052c29 https://github.com/pallets/werkzeug pallets_werkzeug pallets/werkzeug /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_werkzeug_hullabaloo_CONTRIBUTING.rst
35 b95d3ee5bd401ef17f259e3eae27a3f5694016be https://github.com/zeromq/pyzmq.git zeromq_pyzmq.git zeromq/pyzmq.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md
36 6ab218bf71bc091eb04cedde61dcfc6fb52bbf13 https://github.com/WoLpH/numpy-stl WoLpH_numpy-stl WoLpH/numpy-stl /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst
37 7ec4d00ea72ebeba4f3ce72e78a84e8d20c6f659 https://github.com/prometheus/client_python.git prometheus_client_python.git prometheus/client/python.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/prometheus_client_python.git_hullabaloo_CONTRIBUTING.md
38 5ed5d4ebc1bcabecdc3278a7dda848a29b5e8ae6 https://github.com/heynemann/preggy heynemann_preggy heynemann/preggy /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heynemann_preggy_hullabaloo_CONTRIBUTING.md
39 3759eada7e7905ad0091e1f8edf676f177009188 https://github.com/python-trio/trio python-trio_trio python-trio/trio /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-trio_trio_hullabaloo_CONTRIBUTING.md
40 8d04e68fdac7ddf9f34f3d2f11f5f305815ef789 https://github.com/ionelmc/python-tblib ionelmc_python-tblib ionelmc/python-tblib /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst
41 0aaffb919f6938261a75203f2c1c5f19764b0e17 https://github.com/ocaml/ocamlbuild.git ocaml_ocamlbuild.git ocaml/ocamlbuild.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc
42 5f1e47afcb524803f71f600b6a1edbfe40f6796f https://github.com/karenetheridge/B-Hooks-Parser.git karenetheridge_B-Hooks-Parser.git karenetheridge/B-Hooks-Parser.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING
43 0ebc98342d4b2be00d7799e2e35b33898619b901 https://github.com/ComplianceAsCode/content ComplianceAsCode_content ComplianceAsCode/content /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md
44 9b6705571107d704d576269ae1723d589c330a16 https://github.com/mu-editor/mu mu-editor_mu mu-editor/mu /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mu-editor_mu_hullabaloo_CONTRIBUTING.rst
45 0f896927c4541cc70226e5fc946520f6225cde7b https://github.com/dask/dask dask_dask dask/dask /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dask_dask_hullabaloo_CONTRIBUTING.md
46 7532e5040bd9487ddc4d74dcac22209b2fee33de https://github.com/matthewwithanm/django-imagekit.git matthewwithanm_django-imagekit.git matthewwithanm/django-imagekit.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst
47 de6d9769c13e375a6299907dd0f1cd85e31a7ee1 https://github.com/dagolden/class-insideout.git dagolden_class-insideout.git dagolden/class-insideout.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dagolden_class-insideout.git_hullabaloo_CONTRIBUTING
48 5c229976032872d2c5e889f033ce82f20e15e6c4 https://github.com/lastpass/lastpass-cli lastpass_lastpass-cli lastpass/lastpass-cli /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lastpass_lastpass-cli_hullabaloo_CONTRIBUTING
49 8a365abd9c7255d0b92787671bdea5f44408cbaa https://github.com/RIPE-NCC/ripe.atlas.sagan RIPE-NCC_ripe.atlas.sagan RIPE-NCC/ripe.atlas.sagan /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst
50 92f3d5111cf529b550a35a43cdbdd92910697ed1 https://github.com/emcconville/wand emcconville_wand emcconville/wand /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/emcconville_wand_hullabaloo_CONTRIBUTING.rst
51 5010bd74848e732669ef739b3df2b0d34e8f84c1 https://github.com/perl-catalyst/Catalyst-Authentication-Credential-HTTP perl-catalyst_Catalyst-Authentication-Credential-HTTP perl-catalyst/Catalyst-Authentication-Credential-HTTP /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING
52 87c6bc4f1cf3ca953dcb839fbfe32329947ce687 https://github.com/sslmate/certspotter sslmate_certspotter sslmate/certspotter /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sslmate_certspotter_hullabaloo_CONTRIBUTING
53 2dc18c5ef831bd6d9b7d5cb2def4450a83114980 https://github.com/python-hyper/h11.git python-hyper_h11.git python-hyper/h11.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-hyper_h11.git_hullabaloo_CONTRIBUTING.md
54 5fa13ecb73d35b1e29ce2d5b8256dd879b58921c https://github.com/felixge/node-dateformat felixge_node-dateformat felixge/node-dateformat /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/felixge_node-dateformat_hullabaloo_CONTRIBUTING.md
55 3d6089eeeea36ac808c6c409c36b8c13f1901bba https://github.com/mongodb/motor mongodb_motor mongodb/motor /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mongodb_motor_hullabaloo_CONTRIBUTING.rst
56 7401efab4d6c2db93886ca92b4479ce90d749a51 https://github.com/rthalley/dnspython.git rthalley_dnspython.git rthalley/dnspython.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md
57 c33d22bc3ca9f18d4d282c04c77c8dfc88effb8b https://github.com/Ableton/link.git Ableton_link.git Ableton/link.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Ableton_link.git_hullabaloo_CONTRIBUTING.md
58 4d4720a2fc6827729aba75b950fb9a1cbb8a83c9 https://github.com/django-ldapdb/django-ldapdb django-ldapdb_django-ldapdb django-ldapdb/django-ldapdb /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst
59 39e75497959a90f3e5c3925801b15e21899e2398 https://github.com/hickford/MechanicalSoup hickford_MechanicalSoup hickford/MechanicalSoup /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md
60 44d5a1cb3c6b78e0c2fe77f7133ddf909fb24d1c https://github.com/gtimelog/gtimelog gtimelog_gtimelog gtimelog/gtimelog /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst
61 061607fc1dd4c9acde6bfbcbd7094d2515163f8b https://github.com/openstack/python-swiftclient.git openstack_python-swiftclient.git openstack/python-swiftclient.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md
62 e65c12da5f0b2d2c3531d790953b5d288c03b4a7 https://gitlab.gnome.org/GNOME/network-manager-applet GNOME_network-manager-applet GNOME/network-manager-applet /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/GNOME_network-manager-applet_hullabaloo_CONTRIBUTING
63 c9cda413f4f4be6a42a55d7c44a56081e8496ce6 https://gitlab.com/libvirt/libvirt-ruby.git libvirt_libvirt-ruby.git libvirt/libvirt-ruby.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst
64 8826e8c8dd196963866d5907b46f4716fc8732f7 https://github.com/FirefighterBlu3/python-pam FirefighterBlu3_python-pam FirefighterBlu3/python-pam /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md
65 78425623e890d254da489e7a198223849883a157 https://github.com/lxqt/qterminal.git lxqt_qterminal.git lxqt/qterminal.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md
66 edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc https://github.com/python-gitlab/python-gitlab.git python-gitlab_python-gitlab.git python-gitlab/python-gitlab.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst
67 fc342ca115e577225dd54c7c8cfed3b21edbcba8 https://github.com/elmar/aptitude-robot elmar_aptitude-robot elmar/aptitude-robot /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown
68 93a66ab15c5068574d71acec298219f32fb0c3a2 https://github.com/doorkeeper-gem/doorkeeper doorkeeper-gem_doorkeeper doorkeeper-gem/doorkeeper /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md
69 72455878f6e8a7056448829ef227d31520b34839 https://github.com/breunigs/python-librtmp-debian breunigs_python-librtmp-debian breunigs/python-librtmp-debian /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst
70 56fceff11bf90f020acd4000568a0a56299f8ffe https://github.com/google/python_portpicker google_python_portpicker google/python/portpicker /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_python_portpicker_hullabaloo_CONTRIBUTING.md
71 6aa6ba0667f49dea0e71d4ec1cca93d3d67f302c https://github.com/carljm/django-model-utils.git carljm_django-model-utils.git carljm/django-model-utils.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst
72 f1aa25bcf83eb77eb6476c678d4375039127679a https://github.com/marshmallow-code/flask-marshmallow.git marshmallow-code_marshmallow.git marshmallow-code/marshmallow.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
73 f684f4ad243abfed03c53946a85493e03d272ec7 https://github.com/trezor/trezor-firmware.git trezor_trezor-firmware.git trezor/trezor-firmware.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md
74 33c482078b0ffe85e13dd624cd985e7a69d15041 https://github.com/kasei/attean.git kasei_attean.git kasei/attean.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kasei_attean.git_hullabaloo_CONTRIBUTING
75 a7cceacf16d2a0f959ec76935c89ccdce1707385 https://github.com/gaetano-guerriero/eyeD3-debian gaetano-guerriero_eyeD3-debian gaetano-guerriero/eyeD3-debian /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst
76 890441240ba4fa5d2f79d4e6e6c326a5f0542c6d https://github.com/ionelmc/python-lazy-object-proxy.git ionelmc_python-lazy-object-proxy.git ionelmc/python-lazy-object-proxy.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst
77 8cba4a2011f70921d5130e0fbffa7e986ea82593 https://github.com/jpy-consortium/jpy jpy-consortium_jpy jpy-consortium/jpy /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md
78 30167a535c7eac17888d50a08998bccf92469e19 https://github.com/openwisp/django-x509 openwisp_django-x509 openwisp/django-x509 /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openwisp_django-x509_hullabaloo_CONTRIBUTING.rst
79 3e3455ef9ae8f9751f8f1cdc8d08c7ccfdcd2b2f https://github.com/tox-dev/py-filelock tox-dev_py-filelock tox-dev/py-filelock /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md
80 fdb29683d805781884262ace1df463746bc66caa https://github.com/survivejs/webpack-merge.git survivejs_webpack-merge.git survivejs/webpack-merge.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md
81 c975a20ac362b8097978d9eda4e65a9ba5e25bc6 https://github.com/Smattr/rumur.git Smattr_rumur.git Smattr/rumur.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst
82 4327f5898a3fdf0cb2a29cfa5318ff61670bb97b https://github.com/lucc/khard lucc_khard lucc/khard /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/lucc_khard_hullabaloo_CONTRIBUTING.rst
83 7ac26ed9c241d00e8688139b06e804badb25fa46 https://gitlab.freedesktop.org/libinput/libinput libinput_libinput libinput/libinput /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libinput_libinput_hullabaloo_CONTRIBUTING.md
84 ca39efa570755928384f9ad7f60e62f3535a5c6f https://github.com/source-foundry/Hack source-foundry_Hack source-foundry/Hack /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/source-foundry_Hack_hullabaloo_CONTRIBUTING.md
85 c724fbdbc3041446ba139feaa9bd2a7189706611 https://github.com/pallets-eco/flask-sqlalchemy pallets-eco_flask-sqlalchemy pallets-eco/flask-sqlalchemy /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst
86 b72dea2157ad7cb1eb3b1b7d85326f10f2ca6192 https://github.com/matthewwithanm/pilkit matthewwithanm_pilkit matthewwithanm/pilkit /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst
87 a1b157f8fe1e12b8028190c81d43e478df7484e5 https://github.com/PyCQA/flake8-polyfill.git PyCQA_flake8-polyfill.git PyCQA/flake8-polyfill.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst
88 2bbc8714acfcf25aa0ba43389ad1cdb1c0dbafe2 https://github.com/google/pybadges.git google_pybadges.git google/pybadges.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_pybadges.git_hullabaloo_CONTRIBUTING.md
89 257e3aca40db8e2cdc004afbc6c8f9549b628a2a https://github.com/PyCQA/prospector PyCQA_prospector PyCQA/prospector /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/PyCQA_prospector_hullabaloo_CONTRIBUTING.rst
90 30b0f836ff28750fcadfe5511b35e8b00c0de1e5 https://github.com/geopython/geolinks.git geopy_geopy geopy/geopy /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/geopython_geolinks.git_hullabaloo_CONTRIBUTING.md
91 c2c44f0ffc659ebdd1a1faf334c845aefdd371e1 https://github.com/pytest-dev/pytest.git pytest-dev_pytest.git pytest-dev/pytest.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt
92 b293438ff8f1b39cad9329028b135c768f34c137 https://github.com/pika/pika pika_pika pika/pika /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pika_pika_hullabaloo_CONTRIBUTING.md
93 7057bbbf5abd0b2c39940bbc3fb4a253ff920e59 https://github.com/geopandas/geopandas.git geopandas_geopandas.git geopandas/geopandas.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md
94 c79b6e3e1e7faae5a36d1396c9fce0e0987db8d7 https://github.com/jupyter/jupyter-sphinx.git jupyter_jupyter-sphinx.git jupyter/jupyter-sphinx.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md
95 e94e9a8b1fe87b82f3d1eb2269898d8e62b38f81 https://github.com/Pylons/venusian Pylons_venusian Pylons/venusian /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_venusian_hullabaloo_CONTRIBUTING.rst
96 d5e671f1ce4b4086a7fbfb06efae14dae9a5fccb https://github.com/jjjake/internetarchive.git jjjake_internetarchive.git jjjake/internetarchive.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst
97 8544eabcb99f3bc58052e722e8317ad7a9bfd620 https://github.com/openstack/rally.git openstack_rally.git openstack/rally.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_rally.git_hullabaloo_CONTRIBUTING.rst
98 70d28de924a200102d98d55757c986ab2b839753 https://github.com/coturn/coturn coturn_coturn coturn/coturn /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/coturn_coturn_hullabaloo_CONTRIBUTING.md
99 841005cbfaa6a3d3f97c96b5228838eba3f41ab9 https://github.com/python/typed_ast.git python_typed_ast.git python/typed/ast.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python_typed_ast.git_hullabaloo_CONTRIBUTING.md
100 422b3ede6532a10f6171388cd7d4d940e872d044 https://github.com/pyutilib/pyutilib pyutilib_pyutilib pyutilib/pyutilib /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md
101 a112f9a9c6f901f8f249ea40efbfee2aeb36644e https://github.com/pavlov99/json-rpc pavlov99_json-rpc pavlov99/json-rpc /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md
102 2021e1904a53a1eb7509e488b3216136c5b32f35 https://github.com/pygraphviz/pygraphviz.git pygraphviz_pygraphviz.git pygraphviz/pygraphviz.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst
103 d1041acfbaabe3df0642f3312f9f0148fe819a7a https://github.com/google/xsecurelock google_xsecurelock google/xsecurelock /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_xsecurelock_hullabaloo_CONTRIBUTING
104 7c1ee28f13fe9c947d956d9b2ba298cba4776e1a https://github.com/mongoengine/flask-mongoengine mongoengine_mongoengine mongoengine/mongoengine /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md
105 ddbefff7edcf47906373c9fa1175ba7a8927e446 https://github.com/karenetheridge/B-Hooks-OP-Check karenetheridge_B-Hooks-OP-Check karenetheridge/B-Hooks-OP-Check /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING
106 24eba1bbc0aafc9e503747e688cacfdb88ad2fb8 https://github.com/datastax/python-driver.git datastax_python-driver.git datastax/python-driver.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/datastax_python-driver.git_hullabaloo_CONTRIBUTING.md
107 8d52ba7a184305e474eddd1f3f7cacd0e26c2cbe https://github.com/petkaantonov/bluebird.git petkaantonov_bluebird.git petkaantonov/bluebird.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md
108 fafacbff1595d5e94c7afb633ec84ff1e7229ebb https://github.com/Pylons/plaster_pastedeploy.git Pylons_plaster_pastedeploy.git Pylons/plaster/pastedeploy.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst
109 aeed204942a7305dc28ae1523a9befb3cb053fe8 https://github.com/jtauber/pyuca jtauber_pyuca jtauber/pyuca /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jtauber_pyuca_hullabaloo_CONTRIBUTING.md
110 cb947f6d12d125fd84a051f65808fb4a88825307 https://gitlab.com/gitlab-org/ruby/gems/gitlab-mail_room.git gitlab-org_ruby_gems_gitlab-mail_room.git gitlab-org/ruby/gems/gitlab-mail/room.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md
111 13716d8b48c8380e3e0eb962a9ea2d452182db57 https://github.com/google/highwayhash google_highwayhash google/highwayhash /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_highwayhash_hullabaloo_CONTRIBUTING
112 6088ce10b9afad415ebe3fc96cb40e271a0cf910 https://gitlab.com/libvirt/libvirt-python.git libvirt_libvirt-python.git libvirt/libvirt-python.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst
113 03993c4b41ac65105f9a118c6b4624b692ddea30 https://github.com/digitalbazaar/pyld digitalbazaar_pyld digitalbazaar/pyld /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst
114 797757bde2e305e035bcba65a93993ecd0716398 https://github.com/rsms/inter rsms_inter rsms/inter /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rsms_inter_hullabaloo_CONTRIBUTING.md
115 44a829cf8946707bd08ed17cc2342b69b9d2cab1 https://github.com/chaijs/chai chaijs_chai chaijs/chai /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/chaijs_chai_hullabaloo_CONTRIBUTING.md
116 232cae5253382d8d8f7678dbda1ee37424904cab https://gitlab.freedesktop.org/dbus/dbus-python dbus_dbus-python dbus/dbus-python /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dbus_dbus-python_hullabaloo_CONTRIBUTING
117 d4cfa1f208803cb95a4e2261bd2c3fc132f4b347 https://github.com/python-ldap/python-ldap python-ldap_python-ldap python-ldap/python-ldap /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst
118 3b766a866fc78226e43a9efe692220bbcb87e399 https://github.com/pallets/click.git pallets_click.git pallets/click.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_click.git_hullabaloo_CONTRIBUTING.rst
119 a5f5b6f0420786fae6120d54fc8eac9b0f22b745 https://github.com/ktbyers/netmiko ktbyers_netmiko ktbyers/netmiko /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ktbyers_netmiko_hullabaloo_CONTRIBUTING.md
120 7026b4a2975340fd3535cfebff39171a07008688 https://github.com/spyder-ide/qtawesome spyder-ide_qtawesome spyder-ide/qtawesome /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md
121 b13de9045fe41c913cb2ad651eefba6c440a3a9a https://github.com/puppetlabs/facter.git puppetlabs_facter.git puppetlabs/facter.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md
122 b80894938070fcec09a6dec7c8648f4d167fc45a https://github.com/marshmallow-code/flask-marshmallow.git marshmallow-code_flask-marshmallow.git marshmallow-code/flask-marshmallow.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
123 129ce46dc40e72147385082736475c2cc8926968 https://github.com/resurrecting-open-source-projects/outguess resurrecting-open-source-projects_outguess resurrecting-open-source-projects/outguess /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md
124 c474d99907a19deea5a4cb7ee3ebea1add698006 https://github.com/spyder-ide/qtpy spyder-ide_qtpy spyder-ide/qtpy /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst
125 d90770d185c28742ee750a732aa3749ff58ff158 https://github.com/softlayer/softlayer-python softlayer_softlayer-python softlayer/softlayer-python /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md
126 3eae6f4fff3fd01a40f56b19f02e0690266fc824 https://github.com/shouldjs/should.js.git shouldjs_should.js.git shouldjs/should.js.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md
127 7c6ed297ddaad3c2f78fed1c3b6bb548c6f658e1 https://github.com/jupyter/terminado jupyter_terminado jupyter/terminado /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jupyter_terminado_hullabaloo_CONTRIBUTING.rst
128 1e8e049887206b7933b8cc3c7ceeda864fb4c05e https://github.com/django-waffle/django-waffle django-waffle_django-waffle django-waffle/django-waffle /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst
129 d9823fcc76a6cdad4cc68ad138cc5bbbf810a764 https://github.com/metaodi/osmapi.git metaodi_osmapi.git metaodi/osmapi.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md
130 f43f8495c79fa9374ad2a5e5011f31d555e0cdec https://github.com/kilobyte/memkind kilobyte_memkind kilobyte/memkind /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kilobyte_memkind_hullabaloo_CONTRIBUTING
131 e0e50841f91c1d2c77145f475aab67bf02ce1973 https://github.com/pallets/itsdangerous pallets_itsdangerous pallets/itsdangerous /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst
132 65577d13992ba086bbba7882dda352d7b232b385 https://github.com/twilio/twilio-python twilio_twilio-python twilio/twilio-python /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/twilio_twilio-python_hullabaloo_CONTRIBUTING.md
133 d5420216df8a35c16e569a353b41029ec667ebf3 https://github.com/gawel/panoramisk.git gawel_panoramisk.git gawel/panoramisk.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst
134 ab769e86b0e516d37a52038bb337053addf9af4a https://github.com/faye/faye faye_faye faye/faye /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/faye_faye_hullabaloo_CONTRIBUTING.md
135 fdf55c2817c9a457de4d5609cabfda0aa0620dc1 https://github.com/openstack/swift.git openstack_swift.git openstack/swift.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/openstack_swift.git_hullabaloo_CONTRIBUTING.md
136 6e1fc74ed936860f9609f964d48d63f380c58170 https://github.com/RIPE-NCC/ripe-atlas-cousteau.git RIPE-NCC_ripe-atlas-cousteau.git RIPE-NCC/ripe-atlas-cousteau.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst
137 2cc5f14309704d80063a750b85861cb86dc40e7f https://github.com/google/python-gflags.git google_python-gflags.git google/python-gflags.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/google_python-gflags.git_hullabaloo_CONTRIBUTING.md
138 1094a4c862d1b600a6a93d04f276809f5cd03701 https://github.com/mdbootstrap/perfect-scrollbar mdbootstrap_perfect-scrollbar mdbootstrap/perfect-scrollbar /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md
139 350b191468d1a701d945a062bbf4df9fbdaaaaae https://github.com/heroku/netrc heroku_netrc heroku/netrc /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/heroku_netrc_hullabaloo_CONTRIBUTING.md
140 48b19a2272867854f097058dda4f55d05d93e28d https://github.com/eclipse/paho.mqtt.python.git eclipse_paho.mqtt.python.git eclipse/paho.mqtt.python.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md
141 d424c38e59bca66492f90817a5990922b4b004d0 https://github.com/requests-cache/requests-cache requests-cache_requests-cache requests-cache/requests-cache /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md
142 fc5abc05876bbffb8aa8776868492a5bcb596c99 https://github.com/mozilla/source-map mozilla_source-map mozilla/source-map /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mozilla_source-map_hullabaloo_CONTRIBUTING.md
143 e2d247f40339088710ba2322bea3e44f801acfac https://github.com/dagolden/math-random-oo.git dagolden_math-random-oo.git dagolden/math-random-oo.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING
144 7d375e1b7502995703fb3c1729ed4f746d169751 https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git pub_scm_linux_kernel_git_jberg_iw.git pub/scm/linux/kernel/git/jberg/iw.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING
145 3a995294a99a00a62fb451c8dc3f0c404c8e92f5 https://github.com/pydata/xarray pydata_xarray pydata/xarray /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pydata_xarray_hullabaloo_CONTRIBUTING.md
146 27c2db2bf26039bef41323c964bc4e0317a7b4f5 https://github.com/pantsbuild/pex.git pantsbuild_pex.git pantsbuild/pex.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md
147 8d90a86cdf4da7bc1ea520ef5701a63780638c13 https://github.com/nginxinc/nginx-prometheus-exporter nginxinc_nginx-prometheus-exporter nginxinc/nginx-prometheus-exporter /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md
148 ba1ef7a8f47a6140f8323a393f0e04f818f5f52d https://github.com/sphinx-contrib/restbuilder.git sphinx-contrib_restbuilder.git sphinx-contrib/restbuilder.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst
149 1c6af940c08ca2fdb142916974a192ab6ff9ea7c https://github.com/zopefoundation/zope.component zopefoundation_zope.component zopefoundation/zope.component /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md
150 87d2f69a591b29c254f6ce1974a8347d746bfe9f https://github.com/iovisor/bcc.git iovisor_bcc.git iovisor/bcc.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md
151 04693fc6beb2d2dbb3aa8d33932a171900ea239c https://github.com/diff-match-patch-python/diff-match-patch diff-match-patch-python_diff-match-patch diff-match-patch-python/diff-match-patch /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md
152 0d125a567e7ffa9dfe285df8c436783d29594c79 https://github.com/boto/botocore boto_botocore boto/botocore /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/boto_botocore_hullabaloo_CONTRIBUTING.md
153 fc679cf33ed2c65c2deaf9235f08889ef95dd2f2 https://github.com/sferik/twitter sferik_twitter sferik/twitter /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sferik_twitter_hullabaloo_CONTRIBUTING.md
154 3ce1cbdc192a709b51290725506c31a8959423ad https://github.com/common-workflow-language/schema_salad common-workflow-language_schema_salad common-workflow-language/schema/salad /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md
155 892ea9e222ca7148551c3d00bb37ce9e24316b16 https://github.com/jazzband/django-recurrence jazzband_django-recurrence jazzband/django-recurrence /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst
156 915f126b9484ad7fe6df0d7f323bd55f93f1c917 https://github.com/nesquena/rabl nesquena_rabl nesquena/rabl /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/nesquena_rabl_hullabaloo_CONTRIBUTING.md
157 0a6b00dd73c2c49d38e50d01add558e1bb4f3c92 https://github.com/pytest-dev/pytest-cov.git pytest-dev_pytest-cov.git pytest-dev/pytest-cov.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md
158 90014cb496817f7b9544832073137f9e463e746a https://github.com/michaeljones/breathe.git michaeljones_breathe.git michaeljones/breathe.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst
159 f6ee96cf37bdb805ed35416b4370e3e407875bca https://github.com/Pylons/hupper Pylons_hupper Pylons/hupper /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/Pylons_hupper_hullabaloo_CONTRIBUTING.rst
160 451c9909d4fd7bc5301bf032a0b6f21982dac4cb https://github.com/django-extensions/django-extensions django-extensions_django-extensions django-extensions/django-extensions /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md
161 fe623bbfadfe8d32efffa9dcded4db1f9b3d9550 https://github.com/mcmtroffaes/pathlib2.git mcmtroffaes_pathlib2.git mcmtroffaes/pathlib2.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst
162 937da03f5709f943f9ed23ff786b42aa78fac336 https://github.com/webrtchacks/adapter webrtchacks_adapter webrtchacks/adapter /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/webrtchacks_adapter_hullabaloo_CONTRIBUTING
163 da2b0f065eb084d7c9f607a8e1f8fbad8036e1ba https://github.com/jazzband/django-debug-toolbar.git jazzband_django-debug-toolbar.git jazzband/django-debug-toolbar.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md
164 048b33b80c9a11bf11dd72a385e16152dc1ec48b https://github.com/rasterio/rasterio.git rasterio_rasterio.git rasterio/rasterio.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst
165 44be7c4582c077924d88a7a551cc31700f1014f3 https://github.com/zyga/padme zyga_padme zyga/padme /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zyga_padme_hullabaloo_CONTRIBUTING.rst
166 4471b7e8506082ed7daf92304cc2f35eb844a5d2 https://github.com/dropbox/dropbox-sdk-python dropbox_dropbox-sdk-python dropbox/dropbox-sdk-python /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst
167 29f13ea202f07dce62f9073f24b2daa3d780a55f https://github.com/scrapinghub/dateparser scrapinghub_dateparser scrapinghub/dateparser /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst
168 02a8a52e005c0fdfff80f0b709b59f8cfccdf7fc https://gitlab.freedesktop.org/gstreamer/orc gstreamer_orc gstreamer/orc /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/gstreamer_orc_hullabaloo_CONTRIBUTING.md
169 5448e7ee9a18599042e3adf6e9cb34d812a82323 https://github.com/kornelski/pngquant.git kornelski_pngquant.git kornelski/pngquant.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md
170 14eb52c34131bd702778b6d9a02d5f754e329e76 https://github.com/jazzband/django-pipeline jazzband_django-pipeline jazzband/django-pipeline /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst
171 fdf513302703d830eddbac40a8757c6b02549261 https://github.com/pytroll/satpy pytroll_satpy pytroll/satpy /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pytroll_satpy_hullabaloo_CONTRIBUTING.rst
172 647f21332d37c05e888eb9d01261310450704d53 https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info GNOME_mobile-broadband-provider-info GNOME/mobile-broadband-provider-info /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING
173 e903b9c057a41ce5039c9d91ccbce549e5b71126 https://github.com/cookiecutter/whichcraft cookiecutter_whichcraft cookiecutter/whichcraft /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst
174 f0f7a91b3157790aac8c568e3349dde8dca1fac5 https://github.com/encode/django-rest-framework encode_django-rest-framework encode/django-rest-framework /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/encode_django-rest-framework_hullabaloo_CONTRIBUTING.md
175 dea4b862e6548858f5645b6359eff9a4cb51b594 https://github.com/idlesign/django-sitetree idlesign_django-sitetree idlesign/django-sitetree /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/idlesign_django-sitetree_hullabaloo_CONTRIBUTING
176 232cae5253382d8d8f7678dbda1ee37424904cab https://gitlab.freedesktop.org/dbus/dbus-glib.git dbus_dbus-glib.git dbus/dbus-glib.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
177 638713daab211eb104f0228a7d59af227a89008f https://github.com/elastic/elasticsearch-py.git elastic_elasticsearch-py.git elastic/elasticsearch-py.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md
178 5445c0a95352506da2677f3de09c07286d5140ea https://github.com/pylons/plaster pylons_plaster pylons/plaster /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pylons_plaster_hullabaloo_CONTRIBUTING.rst
179 ca82caaeb6ee6ef2820ca6726eba5b8f86f5e566 https://github.com/rytilahti/python-miio.git rytilahti_python-miio.git rytilahti/python-miio.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md
180 d5d49519e52c665b4789ce9e44c558cbcc127b8a https://github.com/ronf/asyncssh ronf_asyncssh ronf/asyncssh /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ronf_asyncssh_hullabaloo_CONTRIBUTING.rst
181 717482dd873a9032cbb019062aa06401f871f765 https://github.com/zopefoundation/zc.lockfile zopefoundation_zc.lockfile zopefoundation/zc.lockfile /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md
182 77cf9560ceb833f7dd51c10b6d10519ef7875084 https://github.com/ianare/exif-py ianare_exif-py ianare/exif-py /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/ianare_exif-py_hullabaloo_CONTRIBUTING.rst
183 c6c10123301a20c6d6981c7062617edb9425fac2 https://github.com/aptly-dev/aptly.git aptly-dev_aptly.git aptly-dev/aptly.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md
184 e43ab548b28c8d1af01253088a44a41e35c08722 https://github.com/pymodbus-dev/pymodbus.git pymodbus-dev_pymodbus.git pymodbus-dev/pymodbus.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md
185 b7759b7b62bce8f658aab5a1b8968a539d10208d https://github.com/theskumar/python-dotenv.git theskumar_python-dotenv.git theskumar/python-dotenv.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md
186 aca958de3e7d22375a10a642d551a27e3686415c https://github.com/sobolevn/django-split-settings sobolevn_django-split-settings sobolevn/django-split-settings /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst
187 edfc090ddb977752557febb1c99981a4efb612da https://github.com/powerline/powerline powerline_powerline powerline/powerline /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/powerline_powerline_hullabaloo_CONTRIBUTING.rst
188 a557ccc7a87ebe0ae1222bff9cb5eb82d54db726 https://github.com/karenetheridge/Module-Manifest karenetheridge_Module-Manifest karenetheridge/Module-Manifest /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING
189 1dafef2b20dc3e2ff1e3adea2fd6af4a39db87c0 https://github.com/tantale/deprecated.git tantale_deprecated.git tantale/deprecated.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst
190 feed17b67d83bc8e7b8a72c62c56c5103c7bebf2 https://github.com/jmaslak/Net-Netmask.git jmaslak_Net-Netmask.git jmaslak/Net-Netmask.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING
191 26075d8710cc4f460cb8645352ca63cf4398568c https://github.com/pazz/alot pazz_alot pazz/alot /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/pazz_alot_hullabaloo_CONTRIBUTING.rst
192 b656d864ed490c8370304c5170e95c42d8fa966a https://github.com/resurrecting-open-source-projects/cbm resurrecting-open-source-projects_cbm resurrecting-open-source-projects/cbm /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md
193 ff9658b9e170031daa6dc66b9116c53a214652eb https://github.com/thumbor/libthumbor thumbor_libthumbor thumbor/libthumbor /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/thumbor_libthumbor_hullabaloo_CONTRIBUTING
194 dc0c5a37faf31c28bcf4765206482ef693b83ecd https://github.com/epeli/underscore.string epeli_underscore.string epeli/underscore.string /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/epeli_underscore.string_hullabaloo_CONTRIBUTING.md
195 117c4f758cd5da2eea272f7ef5418aaa41996008 https://gitlab.com/jas/libntlm jas_libntlm jas/libntlm /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/jas_libntlm_hullabaloo_CONTRIBUTING.md
196 4425735296e32c33781be0c76e77a0d9811b6206 https://github.com/untitaker/python-atomicwrites untitaker_python-atomicwrites untitaker/python-atomicwrites /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst
197 0acc6486652024304058da5baf87113fe97f5464 https://github.com/django-polymorphic/django-polymorphic django-polymorphic_django-polymorphic django-polymorphic/django-polymorphic /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst
198 e02d5e4788e7a477d061accdefbd701d6fa876cf https://github.com/mwilliamson/spur.py.git mwilliamson_spur.py.git mwilliamson/spur.py.git /data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/013025_contributing/mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
https://github.com/vcrhonek/hwdata.git, 7b9bf81a172eaccb55f282c39480161f73edf8f8
https://invent.kde.org/plasma/libksysguard.git, 94623f22ddc05e6ba39515f5dd19fde28c2d3f23
https://github.com/python-babel/flask-babel, 1174bff582e4a8c41bec10b7114aa202a32c6b48
https://github.com/ralphbean/bugwarrior, af6b7f05af97c6be88e1e3dc2be5e2a5a108d464

View File

@ -0,0 +1,4 @@
https://github.com/lebigot/uncertainties.git, 4a89afd24a347ef179d747dc578ec3b3db77f1d7
https://github.com/dstosberg/odt2txt, aadfd070d3cdf7e01a0935bdf597541fc7b54c48
https://github.com/Bioconductor/AnnotationDbi.git, 3683f9f261e8a21b3638f3587dedc6d16c0068af
https://gitlab.com/stevenshiau/clonezilla.git, 828a8bc85526e1d52ae0dca058cd2254537649b3

View File

@ -0,0 +1,104 @@
import pandas as pd
import os
'''
# Load the CSV file into a DataFrame
csv_file = '013025_README_manifest.csv' # Replace with your CSV file path
column_name = 'new_filepath' # Replace with your column name containing file paths
# Read the CSV file
df = pd.read_csv(csv_file)
# Function to check if a file exists
def check_file_exists(file_path):
return os.path.exists(file_path)
# Apply the function to the DataFrame column
df['file_exists'] = df[column_name].apply(check_file_exists)
missing_files_df = df[df['file_exists'] == False]
# Print the DataFrame with missing file paths
print("Files that do not exist:")
print(missing_files_df)
'''
source_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing' # Replace with your source directory path
target_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/validation_contributing' # Replace with your target directory path
# List all files in the source directory
source_files = os.listdir(source_directory)
target_files = os.listdir(target_directory)
# Iterate through the files and check if they exist in the target directory
no_pair = []
manifest = []
for file in source_files:
if file.startswith('_'):
repo_id = file[1:-12]
else:
repo_id = file[:-12]
has_fvf = False
pair_file = ""
for file_name in target_files:
if repo_id in file_name:
has_fvf = True
pair_file = file_name
break
if has_fvf == False:
no_pair.append(file)
else:
manifest.append([repo_id, file, pair_file])
print(no_pair)
manifest_df = pd.DataFrame(manifest, columns=['repo_id', 'commits_filepath', 'fvf_filepath'])
manifest_df.to_csv(f"all_013025_contributing_manifest.csv", index=False)
#source_file_path = os.path.join(source_directory, file_name)
#target_file_path = os.path.join(target_directory, file_name)
#if os.path.isfile(source_file_path):
# if os.path.exists(target_file_path):
# print(f"File '{file_name}' exists in both directories.")
# else:
# print(f"File '{file_name}' does not exist in the target directory.")
'''
# Load the CSV file into a DataFrame
csv_file = '/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/all_013025_contributing_manifest.csv' # Replace with your CSV file path
column_name = 'fvf_filepath' # Replace with your column name containing filenames
# Read the CSV file
df = pd.read_csv(csv_file)
# List all filenames in the specified directory
directory_path = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/validation_contributing' # Replace with your directory path
directory_files = os.listdir(directory_path)
# Convert the filenames column of the DataFrame to a set for efficient lookup
filenames_in_csv = df[column_name]
duplicates = df.duplicated(keep=False)
duplicate_rows = df[duplicates]
print("\nDuplicate rows in the DataFrame:")
print(duplicate_rows)
# Check which filenames in the directory are not reflected in the column
#missing_files = [file for file in filenames_in_csv if file not in directory_files]
# Print the filenames that are not reflected in the column
print("Filenames in the directory that are not reflected in the CSV column:")
for file in missing_files:
print(file)
csv_file = '/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/all_013025_contributing_manifest.csv' # Replace with your CSV file path
column_name = 'fvf_filepath' # Replace with your column name containing filenames
# Read the CSV file
df = pd.read_csv(csv_file)
file_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/validation_contributing'
directory_files = os.listdir(file_directory)
for file in directory_files:
filtered_df = df[df[column_name] == file]
if len(filtered_df) != 1:
print(filtered_df)
break
'''

View File

@ -152,7 +152,7 @@ def for_all_files(csv_path, is_readme):
if __name__ == "__main__": if __name__ == "__main__":
for_all_files("../misc_data_files/README_for_download.csv", True) for_all_files("../misc_data_files/CONTRIBUTING_for_download.csv", False)
#get_file("https://github.com/breakfastquay/rubberband", "a94f3f33577bf9d71166392febbfdf3cace6f1c8", True) #get_file("https://github.com/breakfastquay/rubberband", "a94f3f33577bf9d71166392febbfdf3cace6f1c8", True)
#get_file("https://gitlab.freedesktop.org/gstreamer/gstreamer", "1762dfbf982a75d895676b0063379e33b4f9b96a", True) #get_file("https://gitlab.freedesktop.org/gstreamer/gstreamer", "1762dfbf982a75d895676b0063379e33b4f9b96a", True)
#get_file("https://github.com/ranger/ranger.git", "ea355f491fb10d5ce054c7813d9abdfd3fc68991" ,False) #get_file("https://github.com/ranger/ranger.git", "ea355f491fb10d5ce054c7813d9abdfd3fc68991" ,False)