gitextract_w1w5cf42/ ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── CHANGES ├── CONTRIBUTING.md ├── COPYING ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── Makefile │ ├── api.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ ├── make.bat │ └── usage.rst ├── examples/ │ ├── collection.py │ ├── find_disc.py │ └── releasesearch.py ├── musicbrainzngs/ │ ├── __init__.py │ ├── caa.py │ ├── compat.py │ ├── mbxml.py │ ├── musicbrainz.py │ └── util.py ├── query.py ├── setup.py ├── test/ │ ├── __init__.py │ ├── _common.py │ ├── data/ │ │ ├── artist/ │ │ │ ├── 0e43fe9d-c472-4b62-be9e-55f971a023e1-aliases.xml │ │ │ ├── 2736bad5-6280-4c8f-92c8-27a5e63bbab2-aliases.xml │ │ │ └── b3785a55-2cf6-497d-b8e3-cfa21a36f997-artist-rels.xml │ │ ├── collection/ │ │ │ ├── 0b15c97c-8eb8-4b4f-81c3-0eb24266a2ac-releases.xml │ │ │ ├── 20562e36-c7cc-44fb-96b4-486d51a1174b-events.xml │ │ │ ├── 2326c2e8-be4b-4300-acc6-dbd0adf5645b-works.xml │ │ │ ├── 29611d8b-b3ad-4ffb-acb5-27f77342a5b0-artists.xml │ │ │ ├── 855b134e-9a3b-4717-8df8-8c4838d89924-places.xml │ │ │ └── a91320b2-fd2f-4a93-9e4e-603d16d514b6-recordings.xml │ │ ├── discid/ │ │ │ ├── f7agNZK1HMQ2WUWq9bwDymw9aHA-.xml │ │ │ └── xp5tz6rE4OHrBafj0bLfDRMGK48-.xml │ │ ├── event/ │ │ │ ├── 770fb0b4-0ad8-4774-9275-099b66627355-place-rels.xml │ │ │ └── e921686d-ba86-4122-bc3b-777aec90d231-tags-artist-rels.xml │ │ ├── instrument/ │ │ │ ├── 01ba56a2-4306-493d-8088-c7e9b671c74e-instrument-rels.xml │ │ │ ├── 6505f98c-f698-4406-8bf4-8ca43d05c36f-aliases.xml │ │ │ ├── 6505f98c-f698-4406-8bf4-8ca43d05c36f-tags.xml │ │ │ ├── 9447c0af-5569-48f2-b4c5-241105d58c91.xml │ │ │ ├── d00cec5f-f9bc-4235-a54f-6639a02d4e4c-annotation.xml │ │ │ ├── d00cec5f-f9bc-4235-a54f-6639a02d4e4c-url-rels.xml │ │ │ └── dabdeb41-560f-4d84-aa6a-cf22349326fe.xml │ │ ├── label/ │ │ │ ├── 022fe361-596c-43a0-8e22-bad712bb9548-aliases.xml │ │ │ └── e72fabf2-74a3-4444-a9a5-316296cbfc8d-aliases.xml │ │ ├── place/ │ │ │ ├── 0c79cdbb-acd6-4e30-aaa3-a5c8d6b36a48-aliases-tags.xml │ │ │ └── browse-area-74e50e58-5deb-4b99-93a2-decbb365c07f-annotation.xml │ │ ├── recording/ │ │ │ └── f606f733-c1eb-43f3-93c1-71994ea611e3-artist-rels.xml │ │ ├── release/ │ │ │ ├── 212895ca-ee36-439a-a824-d2620cd10461-recordings.xml │ │ │ ├── 833d4c3a-2635-4b7a-83c4-4e560588f23a-recordings+artist-credits.xml │ │ │ ├── 8eb2b179-643d-3507-b64c-29fcc6745156-recordings.xml │ │ │ ├── 9ce41d09-40e4-4d33-af0c-7fed1e558dba-recordings.xml │ │ │ ├── a81f3c15-2f36-47c7-9b0f-f684a8b0530f-recordings.xml │ │ │ ├── b66ebe6d-a577-4af8-9a2e-a029b2147716-recordings.xml │ │ │ ├── fbe4490e-e366-4da2-a37a-82162d2f41a9-recordings+artist-credits.xml │ │ │ └── fe29e7f0-eb46-44ba-9348-694166f47885-recordings.xml │ │ ├── release-group/ │ │ │ └── f52bc6a1-c848-49e6-85de-f8f53459a624.xml │ │ ├── search-artist.xml │ │ ├── search-event.xml │ │ ├── search-instrument.xml │ │ ├── search-label.xml │ │ ├── search-place.xml │ │ ├── search-recording.xml │ │ ├── search-release-group.xml │ │ ├── search-release.xml │ │ ├── search-work.xml │ │ └── work/ │ │ ├── 3d7c7cd2-da79-37f4-98b8-ccfb1a4ac6c4-aliases.xml │ │ ├── 72c9aad2-3c95-4e3e-8a01-3974f8fef8eb-series-rels.xml │ │ ├── 80737426-8ef3-3a9c-a3a6-9507afb93e93-aliases.xml │ │ └── 8e134b32-99b8-4e96-ae5c-426f3be85f4c-attributes.xml │ ├── test_browse.py │ ├── test_caa.py │ ├── test_collection.py │ ├── test_getentity.py │ ├── test_mbxml.py │ ├── test_mbxml_artist.py │ ├── test_mbxml_collection.py │ ├── test_mbxml_discid.py │ ├── test_mbxml_event.py │ ├── test_mbxml_instrument.py │ ├── test_mbxml_label.py │ ├── test_mbxml_place.py │ ├── test_mbxml_recording.py │ ├── test_mbxml_release.py │ ├── test_mbxml_release_group.py │ ├── test_mbxml_search.py │ ├── test_mbxml_work.py │ ├── test_ratelimit.py │ ├── test_requests.py │ ├── test_search.py │ └── test_submit.py └── tox.ini