A more complete subscription querying API. Now, you can pass in a list of entities, and get back only those who are subscribed to a given medium and source by using the method:
python
subscribed_entities = Subscription.objects.filter_not_subscribed(
source=my_source, medium=my_medium, entities=possibly_subscribed_entities
)