cjcodeproj / medialibrary

Python code to read XML media files
MIT License
2 stars 0 forks source link

Content Index objects should get their own hierarchy #171

Closed cjcodeproj closed 3 months ago

cjcodeproj commented 5 months ago

There are two classes that deal with sorting of content.

media.generic.sorting.lists.ContentIndex
media.data.media.content.movie.MovieIndex(ContentIndex)

Both of these classes should be moved to a different hierarchy. Something like media.conindex or something along those lines.

The general rule is, we do not sort actual content objects, but we build objects that are more suitable for sorting operations based on the classes or programs that need to sort the data.

Related issue (closed): https://github.com/cjcodeproj/medialibrary/issues/76

cjcodeproj commented 3 months ago

Commit:

https://github.com/cjcodeproj/medialibrary/commits/development/

cjcodeproj commented 3 months ago

Closing Notes