Skip to content

Instantly share code, notes, and snippets.

@rsh7
Created March 27, 2018 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsh7/8206f3454db3e7f26aab8f86f5374d6c to your computer and use it in GitHub Desktop.
Save rsh7/8206f3454db3e7f26aab8f86f5374d6c to your computer and use it in GitHub Desktop.
└── acousticbrainz-server
    └── db
        └── musicbrainz_external
            ├── __init__.py
            ├── artist.py
            ├── exceptions.py
            ├── entities.py
            ├── includes.py
            ├── recording.py
            ├── recording_gid_redirect.py
            ├── release.py
            ├── track.py
            └── tests
                ├── __init__.py
                ├── test_artist.py
                ├── test_recording.py
                ├── test_recording_gid_redirect.py
                ├── test_release.py
                └── test_track.py
            └── utils.py
    └── webserver
        └── views
            ├── test
                ├── test_artist.py
                ├── test_recording.py
                ├── test_recording_gid_redirect.py
                ├── test_release.py
                └── test_track.py
            ├── data.py
            ├── artist.py
            ├── recording.py
            ├── recording_gid_redirect.py
            ├── release.py
            └── track.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment