repository_name
stringlengths
7
55
func_path_in_repository
stringlengths
4
223
func_name
stringlengths
1
134
whole_func_string
stringlengths
75
104k
language
stringclasses
1 value
func_code_string
stringlengths
75
104k
func_code_tokens
listlengths
19
28.4k
func_documentation_string
stringlengths
1
46.9k
func_documentation_tokens
listlengths
1
1.97k
split_name
stringclasses
1 value
func_code_url
stringlengths
87
315
philgyford/django-spectator
spectator/core/fields.py
NaturalSortField.naturalize_person
def naturalize_person(self, string): """ Attempt to make a version of the string that has the surname, if any, at the start. 'John, Brown' to 'Brown, John' 'Sir John Brown Jr' to 'Brown, Sir John Jr' 'Prince' to 'Prince' string -- The string to change. "...
python
def naturalize_person(self, string): """ Attempt to make a version of the string that has the surname, if any, at the start. 'John, Brown' to 'Brown, John' 'Sir John Brown Jr' to 'Brown, Sir John Jr' 'Prince' to 'Prince' string -- The string to change. "...
[ "def", "naturalize_person", "(", "self", ",", "string", ")", ":", "suffixes", "=", "[", "'Jr'", ",", "'Jr.'", ",", "'Sr'", ",", "'Sr.'", ",", "'I'", ",", "'II'", ",", "'III'", ",", "'IV'", ",", "'V'", ",", "]", "# Add lowercase versions:", "suffixes", ...
Attempt to make a version of the string that has the surname, if any, at the start. 'John, Brown' to 'Brown, John' 'Sir John Brown Jr' to 'Brown, Sir John Jr' 'Prince' to 'Prince' string -- The string to change.
[ "Attempt", "to", "make", "a", "version", "of", "the", "string", "that", "has", "the", "surname", "if", "any", "at", "the", "start", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/fields.py#L176-L232
philgyford/django-spectator
spectator/core/fields.py
NaturalSortField._naturalize_numbers
def _naturalize_numbers(self, string): """ Makes any integers into very zero-padded numbers. e.g. '1' becomes '00000001'. """ def naturalize_int_match(match): return '%08d' % (int(match.group(0)),) string = re.sub(r'\d+', naturalize_int_match, string) ...
python
def _naturalize_numbers(self, string): """ Makes any integers into very zero-padded numbers. e.g. '1' becomes '00000001'. """ def naturalize_int_match(match): return '%08d' % (int(match.group(0)),) string = re.sub(r'\d+', naturalize_int_match, string) ...
[ "def", "_naturalize_numbers", "(", "self", ",", "string", ")", ":", "def", "naturalize_int_match", "(", "match", ")", ":", "return", "'%08d'", "%", "(", "int", "(", "match", ".", "group", "(", "0", ")", ")", ",", ")", "string", "=", "re", ".", "sub",...
Makes any integers into very zero-padded numbers. e.g. '1' becomes '00000001'.
[ "Makes", "any", "integers", "into", "very", "zero", "-", "padded", "numbers", ".", "e", ".", "g", ".", "1", "becomes", "00000001", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/fields.py#L234-L245
philgyford/django-spectator
spectator/reading/utils.py
annual_reading_counts
def annual_reading_counts(kind='all'): """ Returns a list of dicts, one per year of reading. In year order. Each dict is like this (if kind is 'all'): {'year': datetime.date(2003, 1, 1), 'book': 12, # only included if kind is 'all' or 'book' 'periodical': 18, ...
python
def annual_reading_counts(kind='all'): """ Returns a list of dicts, one per year of reading. In year order. Each dict is like this (if kind is 'all'): {'year': datetime.date(2003, 1, 1), 'book': 12, # only included if kind is 'all' or 'book' 'periodical': 18, ...
[ "def", "annual_reading_counts", "(", "kind", "=", "'all'", ")", ":", "if", "kind", "==", "'all'", ":", "kinds", "=", "[", "'book'", ",", "'periodical'", "]", "else", ":", "kinds", "=", "[", "kind", "]", "# This will have keys of years (strings) and dicts of data...
Returns a list of dicts, one per year of reading. In year order. Each dict is like this (if kind is 'all'): {'year': datetime.date(2003, 1, 1), 'book': 12, # only included if kind is 'all' or 'book' 'periodical': 18, # only included if kind is 'all' or 'periodical' ...
[ "Returns", "a", "list", "of", "dicts", "one", "per", "year", "of", "reading", ".", "In", "year", "order", ".", "Each", "dict", "is", "like", "this", "(", "if", "kind", "is", "all", ")", ":" ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/reading/utils.py#L9-L73
philgyford/django-spectator
spectator/events/admin.py
CountryListFilter.lookups
def lookups(self, request, model_admin): """ Returns a list of tuples like: [ ('AU', 'Australia'), ('GB', 'UK'), ('US', 'USA'), ] One for each country that has at least one Venue. Sorted by the label names. ...
python
def lookups(self, request, model_admin): """ Returns a list of tuples like: [ ('AU', 'Australia'), ('GB', 'UK'), ('US', 'USA'), ] One for each country that has at least one Venue. Sorted by the label names. ...
[ "def", "lookups", "(", "self", ",", "request", ",", "model_admin", ")", ":", "list_of_countries", "=", "[", "]", "# We don't need the country_count but we need to annotate them in order", "# to group the results.", "qs", "=", "Venue", ".", "objects", ".", "exclude", "("...
Returns a list of tuples like: [ ('AU', 'Australia'), ('GB', 'UK'), ('US', 'USA'), ] One for each country that has at least one Venue. Sorted by the label names.
[ "Returns", "a", "list", "of", "tuples", "like", ":" ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/admin.py#L120-L147
philgyford/django-spectator
spectator/events/admin.py
CountryListFilter.queryset
def queryset(self, request, queryset): """ Returns the filtered queryset based on the value provided in the query string and retrievable via `self.value()`. """ if self.value(): return queryset.filter(country=self.value()) else: return quer...
python
def queryset(self, request, queryset): """ Returns the filtered queryset based on the value provided in the query string and retrievable via `self.value()`. """ if self.value(): return queryset.filter(country=self.value()) else: return quer...
[ "def", "queryset", "(", "self", ",", "request", ",", "queryset", ")", ":", "if", "self", ".", "value", "(", ")", ":", "return", "queryset", ".", "filter", "(", "country", "=", "self", ".", "value", "(", ")", ")", "else", ":", "return", "queryset" ]
Returns the filtered queryset based on the value provided in the query string and retrievable via `self.value()`.
[ "Returns", "the", "filtered", "queryset", "based", "on", "the", "value", "provided", "in", "the", "query", "string", "and", "retrievable", "via", "self", ".", "value", "()", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/admin.py#L149-L158
philgyford/django-spectator
spectator/events/migrations/0017_copy_movies_and_plays_data.py
forward
def forward(apps, schema_editor): """ Copying data from the old `Event.movie` and `Event.play` ForeignKey fields into the new `Event.movies` and `Event.plays` ManyToManyFields. """ Event = apps.get_model('spectator_events', 'Event') MovieSelection = apps.get_model('spectator_events', 'MovieSele...
python
def forward(apps, schema_editor): """ Copying data from the old `Event.movie` and `Event.play` ForeignKey fields into the new `Event.movies` and `Event.plays` ManyToManyFields. """ Event = apps.get_model('spectator_events', 'Event') MovieSelection = apps.get_model('spectator_events', 'MovieSele...
[ "def", "forward", "(", "apps", ",", "schema_editor", ")", ":", "Event", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Event'", ")", "MovieSelection", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'MovieSelection'", ")", "Pl...
Copying data from the old `Event.movie` and `Event.play` ForeignKey fields into the new `Event.movies` and `Event.plays` ManyToManyFields.
[ "Copying", "data", "from", "the", "old", "Event", ".", "movie", "and", "Event", ".", "play", "ForeignKey", "fields", "into", "the", "new", "Event", ".", "movies", "and", "Event", ".", "plays", "ManyToManyFields", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/migrations/0017_copy_movies_and_plays_data.py#L6-L23
philgyford/django-spectator
spectator/events/migrations/0006_event_slug_20180102_1127.py
set_slug
def set_slug(apps, schema_editor): """ Create a slug for each Event already in the DB. """ Event = apps.get_model('spectator_events', 'Event') for e in Event.objects.all(): e.slug = generate_slug(e.pk) e.save(update_fields=['slug'])
python
def set_slug(apps, schema_editor): """ Create a slug for each Event already in the DB. """ Event = apps.get_model('spectator_events', 'Event') for e in Event.objects.all(): e.slug = generate_slug(e.pk) e.save(update_fields=['slug'])
[ "def", "set_slug", "(", "apps", ",", "schema_editor", ")", ":", "Event", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Event'", ")", "for", "e", "in", "Event", ".", "objects", ".", "all", "(", ")", ":", "e", ".", "slug", "=", "gene...
Create a slug for each Event already in the DB.
[ "Create", "a", "slug", "for", "each", "Event", "already", "in", "the", "DB", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/migrations/0006_event_slug_20180102_1127.py#L24-L32
philgyford/django-spectator
spectator/core/paginator.py
DiggPaginator.page
def page(self, number, *args, **kwargs): """Return a standard ``Page`` instance with custom, digg-specific page ranges attached. """ page = super().page(number, *args, **kwargs) number = int(number) # we know this will work # easier access num_pages, body, tail,...
python
def page(self, number, *args, **kwargs): """Return a standard ``Page`` instance with custom, digg-specific page ranges attached. """ page = super().page(number, *args, **kwargs) number = int(number) # we know this will work # easier access num_pages, body, tail,...
[ "def", "page", "(", "self", ",", "number", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "page", "=", "super", "(", ")", ".", "page", "(", "number", ",", "*", "args", ",", "*", "*", "kwargs", ")", "number", "=", "int", "(", "number", "...
Return a standard ``Page`` instance with custom, digg-specific page ranges attached.
[ "Return", "a", "standard", "Page", "instance", "with", "custom", "digg", "-", "specific", "page", "ranges", "attached", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/paginator.py#L195-L269
ccpem/mrcfile
setup.py
version
def version(): """Get the version number without importing the mrcfile package.""" namespace = {} with open(os.path.join('mrcfile', 'version.py')) as f: exec(f.read(), namespace) return namespace['__version__']
python
def version(): """Get the version number without importing the mrcfile package.""" namespace = {} with open(os.path.join('mrcfile', 'version.py')) as f: exec(f.read(), namespace) return namespace['__version__']
[ "def", "version", "(", ")", ":", "namespace", "=", "{", "}", "with", "open", "(", "os", ".", "path", ".", "join", "(", "'mrcfile'", ",", "'version.py'", ")", ")", "as", "f", ":", "exec", "(", "f", ".", "read", "(", ")", ",", "namespace", ")", "...
Get the version number without importing the mrcfile package.
[ "Get", "the", "version", "number", "without", "importing", "the", "mrcfile", "package", "." ]
train
https://github.com/ccpem/mrcfile/blob/96b862ad29884f5a5082a69e2aba8b0829090838/setup.py#L9-L14
philgyford/django-spectator
spectator/events/views.py
EventListView.get_event_counts
def get_event_counts(self): """ Returns a dict like: {'counts': { 'all': 30, 'movie': 12, 'gig': 10, }} """ counts = {'all': Event.objects.count(),} for k,v in Event.KIND_CHOICES: # e.g. 'movie_c...
python
def get_event_counts(self): """ Returns a dict like: {'counts': { 'all': 30, 'movie': 12, 'gig': 10, }} """ counts = {'all': Event.objects.count(),} for k,v in Event.KIND_CHOICES: # e.g. 'movie_c...
[ "def", "get_event_counts", "(", "self", ")", ":", "counts", "=", "{", "'all'", ":", "Event", ".", "objects", ".", "count", "(", ")", ",", "}", "for", "k", ",", "v", "in", "Event", ".", "KIND_CHOICES", ":", "# e.g. 'movie_count':", "counts", "[", "k", ...
Returns a dict like: {'counts': { 'all': 30, 'movie': 12, 'gig': 10, }}
[ "Returns", "a", "dict", "like", ":", "{", "counts", ":", "{", "all", ":", "30", "movie", ":", "12", "gig", ":", "10", "}}" ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/views.py#L52-L67
philgyford/django-spectator
spectator/events/views.py
EventListView.get_event_kind
def get_event_kind(self): """ Unless we're on the front page we'll have a kind_slug like 'movies'. We need to translate that into an event `kind` like 'movie'. """ slug = self.kwargs.get('kind_slug', None) if slug is None: return None # Front page; showing al...
python
def get_event_kind(self): """ Unless we're on the front page we'll have a kind_slug like 'movies'. We need to translate that into an event `kind` like 'movie'. """ slug = self.kwargs.get('kind_slug', None) if slug is None: return None # Front page; showing al...
[ "def", "get_event_kind", "(", "self", ")", ":", "slug", "=", "self", ".", "kwargs", ".", "get", "(", "'kind_slug'", ",", "None", ")", "if", "slug", "is", "None", ":", "return", "None", "# Front page; showing all Event kinds.", "else", ":", "slugs_to_kinds", ...
Unless we're on the front page we'll have a kind_slug like 'movies'. We need to translate that into an event `kind` like 'movie'.
[ "Unless", "we", "re", "on", "the", "front", "page", "we", "ll", "have", "a", "kind_slug", "like", "movies", ".", "We", "need", "to", "translate", "that", "into", "an", "event", "kind", "like", "movie", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/views.py#L69-L79
philgyford/django-spectator
spectator/events/views.py
EventListView.get_queryset
def get_queryset(self): "Restrict to a single kind of event, if any, and include Venue data." qs = super().get_queryset() kind = self.get_event_kind() if kind is not None: qs = qs.filter(kind=kind) qs = qs.select_related('venue') return qs
python
def get_queryset(self): "Restrict to a single kind of event, if any, and include Venue data." qs = super().get_queryset() kind = self.get_event_kind() if kind is not None: qs = qs.filter(kind=kind) qs = qs.select_related('venue') return qs
[ "def", "get_queryset", "(", "self", ")", ":", "qs", "=", "super", "(", ")", ".", "get_queryset", "(", ")", "kind", "=", "self", ".", "get_event_kind", "(", ")", "if", "kind", "is", "not", "None", ":", "qs", "=", "qs", ".", "filter", "(", "kind", ...
Restrict to a single kind of event, if any, and include Venue data.
[ "Restrict", "to", "a", "single", "kind", "of", "event", "if", "any", "and", "include", "Venue", "data", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/views.py#L81-L91
philgyford/django-spectator
spectator/events/views.py
WorkMixin.get_work_kind
def get_work_kind(self): """ We'll have a kind_slug like 'movies'. We need to translate that into a work `kind` like 'movie'. """ slugs_to_kinds = {v:k for k,v in Work.KIND_SLUGS.items()} return slugs_to_kinds.get(self.kind_slug, None)
python
def get_work_kind(self): """ We'll have a kind_slug like 'movies'. We need to translate that into a work `kind` like 'movie'. """ slugs_to_kinds = {v:k for k,v in Work.KIND_SLUGS.items()} return slugs_to_kinds.get(self.kind_slug, None)
[ "def", "get_work_kind", "(", "self", ")", ":", "slugs_to_kinds", "=", "{", "v", ":", "k", "for", "k", ",", "v", "in", "Work", ".", "KIND_SLUGS", ".", "items", "(", ")", "}", "return", "slugs_to_kinds", ".", "get", "(", "self", ".", "kind_slug", ",", ...
We'll have a kind_slug like 'movies'. We need to translate that into a work `kind` like 'movie'.
[ "We", "ll", "have", "a", "kind_slug", "like", "movies", ".", "We", "need", "to", "translate", "that", "into", "a", "work", "kind", "like", "movie", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/views.py#L147-L153
philgyford/django-spectator
spectator/events/views.py
VenueListView.get_countries
def get_countries(self): """ Returns a list of dicts, one per country that has at least one Venue in it. Each dict has 'code' and 'name' elements. The list is sorted by the country 'name's. """ qs = Venue.objects.values('country') \ ...
python
def get_countries(self): """ Returns a list of dicts, one per country that has at least one Venue in it. Each dict has 'code' and 'name' elements. The list is sorted by the country 'name's. """ qs = Venue.objects.values('country') \ ...
[ "def", "get_countries", "(", "self", ")", ":", "qs", "=", "Venue", ".", "objects", ".", "values", "(", "'country'", ")", ".", "exclude", "(", "country", "=", "''", ")", ".", "distinct", "(", ")", ".", "order_by", "(", "'country'", ")", "countries", "...
Returns a list of dicts, one per country that has at least one Venue in it. Each dict has 'code' and 'name' elements. The list is sorted by the country 'name's.
[ "Returns", "a", "list", "of", "dicts", "one", "per", "country", "that", "has", "at", "least", "one", "Venue", "in", "it", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/views.py#L216-L237
philgyford/django-spectator
spectator/events/migrations/0032_recreate_work_slugs.py
forwards
def forwards(apps, schema_editor): """ Re-save all the Works because something earlier didn't create their slugs. """ Work = apps.get_model('spectator_events', 'Work') for work in Work.objects.all(): if not work.slug: work.slug = generate_slug(work.pk) work.save()
python
def forwards(apps, schema_editor): """ Re-save all the Works because something earlier didn't create their slugs. """ Work = apps.get_model('spectator_events', 'Work') for work in Work.objects.all(): if not work.slug: work.slug = generate_slug(work.pk) work.save()
[ "def", "forwards", "(", "apps", ",", "schema_editor", ")", ":", "Work", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Work'", ")", "for", "work", "in", "Work", ".", "objects", ".", "all", "(", ")", ":", "if", "not", "work", ".", "s...
Re-save all the Works because something earlier didn't create their slugs.
[ "Re", "-", "save", "all", "the", "Works", "because", "something", "earlier", "didn", "t", "create", "their", "slugs", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/migrations/0032_recreate_work_slugs.py#L30-L39
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
annual_event_counts
def annual_event_counts(kind='all'): """ Returns a QuerySet of dicts, each one with these keys: * year - a date object representing the year * total - the number of events of `kind` that year kind - The Event `kind`, or 'all' for all kinds (default). """ qs = Event.objects if ...
python
def annual_event_counts(kind='all'): """ Returns a QuerySet of dicts, each one with these keys: * year - a date object representing the year * total - the number of events of `kind` that year kind - The Event `kind`, or 'all' for all kinds (default). """ qs = Event.objects if ...
[ "def", "annual_event_counts", "(", "kind", "=", "'all'", ")", ":", "qs", "=", "Event", ".", "objects", "if", "kind", "!=", "'all'", ":", "qs", "=", "qs", ".", "filter", "(", "kind", "=", "kind", ")", "qs", "=", "qs", ".", "annotate", "(", "year", ...
Returns a QuerySet of dicts, each one with these keys: * year - a date object representing the year * total - the number of events of `kind` that year kind - The Event `kind`, or 'all' for all kinds (default).
[ "Returns", "a", "QuerySet", "of", "dicts", "each", "one", "with", "these", "keys", ":" ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L17-L36
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
annual_event_counts_card
def annual_event_counts_card(kind='all', current_year=None): """ Displays years and the number of events per year. kind is an Event kind (like 'cinema', 'gig', etc.) or 'all' (default). current_year is an optional date object representing the year we're already showing information about. ""...
python
def annual_event_counts_card(kind='all', current_year=None): """ Displays years and the number of events per year. kind is an Event kind (like 'cinema', 'gig', etc.) or 'all' (default). current_year is an optional date object representing the year we're already showing information about. ""...
[ "def", "annual_event_counts_card", "(", "kind", "=", "'all'", ",", "current_year", "=", "None", ")", ":", "if", "kind", "==", "'all'", ":", "card_title", "=", "'Events per year'", "else", ":", "card_title", "=", "'{} per year'", ".", "format", "(", "Event", ...
Displays years and the number of events per year. kind is an Event kind (like 'cinema', 'gig', etc.) or 'all' (default). current_year is an optional date object representing the year we're already showing information about.
[ "Displays", "years", "and", "the", "number", "of", "events", "per", "year", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L40-L58
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
display_date
def display_date(d): """ Render a date/datetime (d) as a date, using the SPECTATOR_DATE_FORMAT setting. Wrap the output in a <time> tag. Time tags: http://www.brucelawson.co.uk/2012/best-of-time/ """ stamp = d.strftime('%Y-%m-%d') visible_date = d.strftime(app_settings.DATE_FORMAT) ret...
python
def display_date(d): """ Render a date/datetime (d) as a date, using the SPECTATOR_DATE_FORMAT setting. Wrap the output in a <time> tag. Time tags: http://www.brucelawson.co.uk/2012/best-of-time/ """ stamp = d.strftime('%Y-%m-%d') visible_date = d.strftime(app_settings.DATE_FORMAT) ret...
[ "def", "display_date", "(", "d", ")", ":", "stamp", "=", "d", ".", "strftime", "(", "'%Y-%m-%d'", ")", "visible_date", "=", "d", ".", "strftime", "(", "app_settings", ".", "DATE_FORMAT", ")", "return", "format_html", "(", "'<time datetime=\"%(stamp)s\">%(visible...
Render a date/datetime (d) as a date, using the SPECTATOR_DATE_FORMAT setting. Wrap the output in a <time> tag. Time tags: http://www.brucelawson.co.uk/2012/best-of-time/
[ "Render", "a", "date", "/", "datetime", "(", "d", ")", "as", "a", "date", "using", "the", "SPECTATOR_DATE_FORMAT", "setting", ".", "Wrap", "the", "output", "in", "a", "<time", ">", "tag", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L62-L75
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
event_list_tabs
def event_list_tabs(counts, current_kind, page_number=1): """ Displays the tabs to different event_list pages. `counts` is a dict of number of events for each kind, like: {'all': 30, 'gig': 12, 'movie': 18,} `current_kind` is the event kind that's active, if any. e.g. 'gig', 'movie', e...
python
def event_list_tabs(counts, current_kind, page_number=1): """ Displays the tabs to different event_list pages. `counts` is a dict of number of events for each kind, like: {'all': 30, 'gig': 12, 'movie': 18,} `current_kind` is the event kind that's active, if any. e.g. 'gig', 'movie', e...
[ "def", "event_list_tabs", "(", "counts", ",", "current_kind", ",", "page_number", "=", "1", ")", ":", "return", "{", "'counts'", ":", "counts", ",", "'current_kind'", ":", "current_kind", ",", "'page_number'", ":", "page_number", ",", "# A list of all the kinds we...
Displays the tabs to different event_list pages. `counts` is a dict of number of events for each kind, like: {'all': 30, 'gig': 12, 'movie': 18,} `current_kind` is the event kind that's active, if any. e.g. 'gig', 'movie', etc. `page_number` is the current page of this kind of events we'r...
[ "Displays", "the", "tabs", "to", "different", "event_list", "pages", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L79-L101
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
day_events_card
def day_events_card(date): """ Displays Events that happened on the supplied date. `date` is a date object. """ d = date.strftime(app_settings.DATE_FORMAT) card_title = 'Events on {}'.format(d) return { 'card_title': card_title, 'event_list': day_events(date=date), ...
python
def day_events_card(date): """ Displays Events that happened on the supplied date. `date` is a date object. """ d = date.strftime(app_settings.DATE_FORMAT) card_title = 'Events on {}'.format(d) return { 'card_title': card_title, 'event_list': day_events(date=date), ...
[ "def", "day_events_card", "(", "date", ")", ":", "d", "=", "date", ".", "strftime", "(", "app_settings", ".", "DATE_FORMAT", ")", "card_title", "=", "'Events on {}'", ".", "format", "(", "d", ")", "return", "{", "'card_title'", ":", "card_title", ",", "'ev...
Displays Events that happened on the supplied date. `date` is a date object.
[ "Displays", "Events", "that", "happened", "on", "the", "supplied", "date", ".", "date", "is", "a", "date", "object", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L134-L144
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
most_seen_creators_card
def most_seen_creators_card(event_kind=None, num=10): """ Displays a card showing the Creators that are associated with the most Events. """ object_list = most_seen_creators(event_kind=event_kind, num=num) object_list = chartify(object_list, 'num_events', cutoff=1) return { 'card_title...
python
def most_seen_creators_card(event_kind=None, num=10): """ Displays a card showing the Creators that are associated with the most Events. """ object_list = most_seen_creators(event_kind=event_kind, num=num) object_list = chartify(object_list, 'num_events', cutoff=1) return { 'card_title...
[ "def", "most_seen_creators_card", "(", "event_kind", "=", "None", ",", "num", "=", "10", ")", ":", "object_list", "=", "most_seen_creators", "(", "event_kind", "=", "event_kind", ",", "num", "=", "num", ")", "object_list", "=", "chartify", "(", "object_list", ...
Displays a card showing the Creators that are associated with the most Events.
[ "Displays", "a", "card", "showing", "the", "Creators", "that", "are", "associated", "with", "the", "most", "Events", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L179-L191
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
most_seen_creators_by_works
def most_seen_creators_by_works(work_kind=None, role_name=None, num=10): """ Returns a QuerySet of the Creators that are associated with the most Works. """ return Creator.objects.by_works(kind=work_kind, role_name=role_name)[:num]
python
def most_seen_creators_by_works(work_kind=None, role_name=None, num=10): """ Returns a QuerySet of the Creators that are associated with the most Works. """ return Creator.objects.by_works(kind=work_kind, role_name=role_name)[:num]
[ "def", "most_seen_creators_by_works", "(", "work_kind", "=", "None", ",", "role_name", "=", "None", ",", "num", "=", "10", ")", ":", "return", "Creator", ".", "objects", ".", "by_works", "(", "kind", "=", "work_kind", ",", "role_name", "=", "role_name", ")...
Returns a QuerySet of the Creators that are associated with the most Works.
[ "Returns", "a", "QuerySet", "of", "the", "Creators", "that", "are", "associated", "with", "the", "most", "Works", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L195-L199
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
most_seen_creators_by_works_card
def most_seen_creators_by_works_card(work_kind=None, role_name=None, num=10): """ Displays a card showing the Creators that are associated with the most Works. e.g.: {% most_seen_creators_by_works_card work_kind='movie' role_name='Director' num=5 %} """ object_list = most_seen_creators_by_wo...
python
def most_seen_creators_by_works_card(work_kind=None, role_name=None, num=10): """ Displays a card showing the Creators that are associated with the most Works. e.g.: {% most_seen_creators_by_works_card work_kind='movie' role_name='Director' num=5 %} """ object_list = most_seen_creators_by_wo...
[ "def", "most_seen_creators_by_works_card", "(", "work_kind", "=", "None", ",", "role_name", "=", "None", ",", "num", "=", "10", ")", ":", "object_list", "=", "most_seen_creators_by_works", "(", "work_kind", "=", "work_kind", ",", "role_name", "=", "role_name", "...
Displays a card showing the Creators that are associated with the most Works. e.g.: {% most_seen_creators_by_works_card work_kind='movie' role_name='Director' num=5 %}
[ "Displays", "a", "card", "showing", "the", "Creators", "that", "are", "associated", "with", "the", "most", "Works", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L203-L235
philgyford/django-spectator
spectator/events/templatetags/spectator_events.py
most_seen_works_card
def most_seen_works_card(kind=None, num=10): """ Displays a card showing the Works that are associated with the most Events. """ object_list = most_seen_works(kind=kind, num=num) object_list = chartify(object_list, 'num_views', cutoff=1) if kind: card_title = 'Most seen {}'.format( ...
python
def most_seen_works_card(kind=None, num=10): """ Displays a card showing the Works that are associated with the most Events. """ object_list = most_seen_works(kind=kind, num=num) object_list = chartify(object_list, 'num_views', cutoff=1) if kind: card_title = 'Most seen {}'.format( ...
[ "def", "most_seen_works_card", "(", "kind", "=", "None", ",", "num", "=", "10", ")", ":", "object_list", "=", "most_seen_works", "(", "kind", "=", "kind", ",", "num", "=", "num", ")", "object_list", "=", "chartify", "(", "object_list", ",", "'num_views'", ...
Displays a card showing the Works that are associated with the most Events.
[ "Displays", "a", "card", "showing", "the", "Works", "that", "are", "associated", "with", "the", "most", "Events", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/templatetags/spectator_events.py#L247-L267
philgyford/django-spectator
spectator/core/models.py
SluggedModelMixin._generate_slug
def _generate_slug(self, value): """ Generates a slug using a Hashid of `value`. """ alphabet = app_settings.SLUG_ALPHABET salt = app_settings.SLUG_SALT hashids = Hashids(alphabet=alphabet, salt=salt, min_length=5) return hashids.encode(value)
python
def _generate_slug(self, value): """ Generates a slug using a Hashid of `value`. """ alphabet = app_settings.SLUG_ALPHABET salt = app_settings.SLUG_SALT hashids = Hashids(alphabet=alphabet, salt=salt, min_length=5) return hashids.encode(value)
[ "def", "_generate_slug", "(", "self", ",", "value", ")", ":", "alphabet", "=", "app_settings", ".", "SLUG_ALPHABET", "salt", "=", "app_settings", ".", "SLUG_SALT", "hashids", "=", "Hashids", "(", "alphabet", "=", "alphabet", ",", "salt", "=", "salt", ",", ...
Generates a slug using a Hashid of `value`.
[ "Generates", "a", "slug", "using", "a", "Hashid", "of", "value", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/models.py#L46-L55
frictionlessdata/tableschema-pandas-py
tableschema_pandas/storage.py
Storage.create
def create(self, bucket, descriptor, force=False): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Make lists buckets = bucket if isinstance(bucket, six.string_types): buckets = [bucket] descriptors = descriptor if isinstanc...
python
def create(self, bucket, descriptor, force=False): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Make lists buckets = bucket if isinstance(bucket, six.string_types): buckets = [bucket] descriptors = descriptor if isinstanc...
[ "def", "create", "(", "self", ",", "bucket", ",", "descriptor", ",", "force", "=", "False", ")", ":", "# Make lists", "buckets", "=", "bucket", "if", "isinstance", "(", "bucket", ",", "six", ".", "string_types", ")", ":", "buckets", "=", "[", "bucket", ...
https://github.com/frictionlessdata/tableschema-pandas-py#storage
[ "https", ":", "//", "github", ".", "com", "/", "frictionlessdata", "/", "tableschema", "-", "pandas", "-", "py#storage" ]
train
https://github.com/frictionlessdata/tableschema-pandas-py/blob/ef941dbc12f5d346e9612f8fec1b4b356b8493ca/tableschema_pandas/storage.py#L47-L71
frictionlessdata/tableschema-pandas-py
tableschema_pandas/storage.py
Storage.delete
def delete(self, bucket=None, ignore=False): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Make lists buckets = bucket if isinstance(bucket, six.string_types): buckets = [bucket] elif bucket is None: buckets = reversed...
python
def delete(self, bucket=None, ignore=False): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Make lists buckets = bucket if isinstance(bucket, six.string_types): buckets = [bucket] elif bucket is None: buckets = reversed...
[ "def", "delete", "(", "self", ",", "bucket", "=", "None", ",", "ignore", "=", "False", ")", ":", "# Make lists", "buckets", "=", "bucket", "if", "isinstance", "(", "bucket", ",", "six", ".", "string_types", ")", ":", "buckets", "=", "[", "bucket", "]",...
https://github.com/frictionlessdata/tableschema-pandas-py#storage
[ "https", ":", "//", "github", ".", "com", "/", "frictionlessdata", "/", "tableschema", "-", "pandas", "-", "py#storage" ]
train
https://github.com/frictionlessdata/tableschema-pandas-py/blob/ef941dbc12f5d346e9612f8fec1b4b356b8493ca/tableschema_pandas/storage.py#L73-L100
frictionlessdata/tableschema-pandas-py
tableschema_pandas/storage.py
Storage.describe
def describe(self, bucket, descriptor=None): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Set descriptor if descriptor is not None: self.__descriptors[bucket] = descriptor # Get descriptor else: descriptor = self.__d...
python
def describe(self, bucket, descriptor=None): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Set descriptor if descriptor is not None: self.__descriptors[bucket] = descriptor # Get descriptor else: descriptor = self.__d...
[ "def", "describe", "(", "self", ",", "bucket", ",", "descriptor", "=", "None", ")", ":", "# Set descriptor", "if", "descriptor", "is", "not", "None", ":", "self", ".", "__descriptors", "[", "bucket", "]", "=", "descriptor", "# Get descriptor", "else", ":", ...
https://github.com/frictionlessdata/tableschema-pandas-py#storage
[ "https", ":", "//", "github", ".", "com", "/", "frictionlessdata", "/", "tableschema", "-", "pandas", "-", "py#storage" ]
train
https://github.com/frictionlessdata/tableschema-pandas-py/blob/ef941dbc12f5d346e9612f8fec1b4b356b8493ca/tableschema_pandas/storage.py#L102-L117
frictionlessdata/tableschema-pandas-py
tableschema_pandas/storage.py
Storage.iter
def iter(self, bucket): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Check existense if bucket not in self.buckets: message = 'Bucket "%s" doesn\'t exist.' % bucket raise tableschema.exceptions.StorageError(message) # Prepar...
python
def iter(self, bucket): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Check existense if bucket not in self.buckets: message = 'Bucket "%s" doesn\'t exist.' % bucket raise tableschema.exceptions.StorageError(message) # Prepar...
[ "def", "iter", "(", "self", ",", "bucket", ")", ":", "# Check existense", "if", "bucket", "not", "in", "self", ".", "buckets", ":", "message", "=", "'Bucket \"%s\" doesn\\'t exist.'", "%", "bucket", "raise", "tableschema", ".", "exceptions", ".", "StorageError",...
https://github.com/frictionlessdata/tableschema-pandas-py#storage
[ "https", ":", "//", "github", ".", "com", "/", "frictionlessdata", "/", "tableschema", "-", "pandas", "-", "py#storage" ]
train
https://github.com/frictionlessdata/tableschema-pandas-py/blob/ef941dbc12f5d346e9612f8fec1b4b356b8493ca/tableschema_pandas/storage.py#L119-L135
frictionlessdata/tableschema-pandas-py
tableschema_pandas/storage.py
Storage.write
def write(self, bucket, rows): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Prepare descriptor = self.describe(bucket) new_data_frame = self.__mapper.convert_descriptor_and_rows(descriptor, rows) # Just set new DataFrame if current is empty...
python
def write(self, bucket, rows): """https://github.com/frictionlessdata/tableschema-pandas-py#storage """ # Prepare descriptor = self.describe(bucket) new_data_frame = self.__mapper.convert_descriptor_and_rows(descriptor, rows) # Just set new DataFrame if current is empty...
[ "def", "write", "(", "self", ",", "bucket", ",", "rows", ")", ":", "# Prepare", "descriptor", "=", "self", ".", "describe", "(", "bucket", ")", "new_data_frame", "=", "self", ".", "__mapper", ".", "convert_descriptor_and_rows", "(", "descriptor", ",", "rows"...
https://github.com/frictionlessdata/tableschema-pandas-py#storage
[ "https", ":", "//", "github", ".", "com", "/", "frictionlessdata", "/", "tableschema", "-", "pandas", "-", "py#storage" ]
train
https://github.com/frictionlessdata/tableschema-pandas-py/blob/ef941dbc12f5d346e9612f8fec1b4b356b8493ca/tableschema_pandas/storage.py#L143-L161
philgyford/django-spectator
spectator/events/migrations/0030_movies_to_works.py
forwards
def forwards(apps, schema_editor): """ Change all Movie objects into Work objects, and their associated data into WorkRole and WorkSelection models, then delete the Movie. """ Movie = apps.get_model('spectator_events', 'Movie') Work = apps.get_model('spectator_events', 'Work') WorkRole = app...
python
def forwards(apps, schema_editor): """ Change all Movie objects into Work objects, and their associated data into WorkRole and WorkSelection models, then delete the Movie. """ Movie = apps.get_model('spectator_events', 'Movie') Work = apps.get_model('spectator_events', 'Work') WorkRole = app...
[ "def", "forwards", "(", "apps", ",", "schema_editor", ")", ":", "Movie", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Movie'", ")", "Work", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Work'", ")", "WorkRole", "=", "...
Change all Movie objects into Work objects, and their associated data into WorkRole and WorkSelection models, then delete the Movie.
[ "Change", "all", "Movie", "objects", "into", "Work", "objects", "and", "their", "associated", "data", "into", "WorkRole", "and", "WorkSelection", "models", "then", "delete", "the", "Movie", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/migrations/0030_movies_to_works.py#L6-L41
philgyford/django-spectator
spectator/core/views.py
PaginatedListView.paginate_queryset
def paginate_queryset(self, queryset, page_size): """ Paginate the queryset, if needed. This is EXACTLY the same as the standard ListView.paginate_queryset() except for this line: page = paginator.page(page_number, softlimit=True) Because we want to use the DiggPagin...
python
def paginate_queryset(self, queryset, page_size): """ Paginate the queryset, if needed. This is EXACTLY the same as the standard ListView.paginate_queryset() except for this line: page = paginator.page(page_number, softlimit=True) Because we want to use the DiggPagin...
[ "def", "paginate_queryset", "(", "self", ",", "queryset", ",", "page_size", ")", ":", "paginator", "=", "self", ".", "get_paginator", "(", "queryset", ",", "page_size", ",", "orphans", "=", "self", ".", "get_paginate_orphans", "(", ")", ",", "allow_empty_first...
Paginate the queryset, if needed. This is EXACTLY the same as the standard ListView.paginate_queryset() except for this line: page = paginator.page(page_number, softlimit=True) Because we want to use the DiggPaginator's softlimit option. So that if you're viewing a page of, ...
[ "Paginate", "the", "queryset", "if", "needed", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/views.py#L33-L73
philgyford/django-spectator
spectator/reading/templatetags/spectator_reading.py
annual_reading_counts_card
def annual_reading_counts_card(kind='all', current_year=None): """ Displays years and the number of books/periodicals read per year. kind is one of 'book', 'periodical', 'all' (default). current_year is an optional date object representing the year we're already showing information about. "...
python
def annual_reading_counts_card(kind='all', current_year=None): """ Displays years and the number of books/periodicals read per year. kind is one of 'book', 'periodical', 'all' (default). current_year is an optional date object representing the year we're already showing information about. "...
[ "def", "annual_reading_counts_card", "(", "kind", "=", "'all'", ",", "current_year", "=", "None", ")", ":", "if", "kind", "==", "'book'", ":", "card_title", "=", "'Books per year'", "elif", "kind", "==", "'periodical'", ":", "card_title", "=", "'Periodicals per ...
Displays years and the number of books/periodicals read per year. kind is one of 'book', 'periodical', 'all' (default). current_year is an optional date object representing the year we're already showing information about.
[ "Displays", "years", "and", "the", "number", "of", "books", "/", "periodicals", "read", "per", "year", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/reading/templatetags/spectator_reading.py#L33-L53
philgyford/django-spectator
spectator/reading/templatetags/spectator_reading.py
day_publications
def day_publications(date): """ Returns a QuerySet of Publications that were being read on `date`. `date` is a date tobject. """ readings = Reading.objects \ .filter(start_date__lte=date) \ .filter( Q(end_date__gte=date) ...
python
def day_publications(date): """ Returns a QuerySet of Publications that were being read on `date`. `date` is a date tobject. """ readings = Reading.objects \ .filter(start_date__lte=date) \ .filter( Q(end_date__gte=date) ...
[ "def", "day_publications", "(", "date", ")", ":", "readings", "=", "Reading", ".", "objects", ".", "filter", "(", "start_date__lte", "=", "date", ")", ".", "filter", "(", "Q", "(", "end_date__gte", "=", "date", ")", "|", "Q", "(", "end_date__isnull", "="...
Returns a QuerySet of Publications that were being read on `date`. `date` is a date tobject.
[ "Returns", "a", "QuerySet", "of", "Publications", "that", "were", "being", "read", "on", "date", ".", "date", "is", "a", "date", "tobject", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/reading/templatetags/spectator_reading.py#L78-L96
philgyford/django-spectator
spectator/reading/templatetags/spectator_reading.py
day_publications_card
def day_publications_card(date): """ Displays Publications that were being read on `date`. `date` is a date tobject. """ d = date.strftime(app_settings.DATE_FORMAT) card_title = 'Reading on {}'.format(d) return { 'card_title': card_title, 'publication_list': day_publi...
python
def day_publications_card(date): """ Displays Publications that were being read on `date`. `date` is a date tobject. """ d = date.strftime(app_settings.DATE_FORMAT) card_title = 'Reading on {}'.format(d) return { 'card_title': card_title, 'publication_list': day_publi...
[ "def", "day_publications_card", "(", "date", ")", ":", "d", "=", "date", ".", "strftime", "(", "app_settings", ".", "DATE_FORMAT", ")", "card_title", "=", "'Reading on {}'", ".", "format", "(", "d", ")", "return", "{", "'card_title'", ":", "card_title", ",",...
Displays Publications that were being read on `date`. `date` is a date tobject.
[ "Displays", "Publications", "that", "were", "being", "read", "on", "date", ".", "date", "is", "a", "date", "tobject", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/reading/templatetags/spectator_reading.py#L100-L110
philgyford/django-spectator
spectator/reading/templatetags/spectator_reading.py
reading_dates
def reading_dates(reading): """ Given a Reading, with start and end dates and granularities[1] it returns an HTML string representing that period. eg: * '1–6 Feb 2017' * '1 Feb to 3 Mar 2017' * 'Feb 2017 to Mar 2018' * '2017–2018' etc. [1] https://www.flickr.com/ser...
python
def reading_dates(reading): """ Given a Reading, with start and end dates and granularities[1] it returns an HTML string representing that period. eg: * '1–6 Feb 2017' * '1 Feb to 3 Mar 2017' * 'Feb 2017 to Mar 2018' * '2017–2018' etc. [1] https://www.flickr.com/ser...
[ "def", "reading_dates", "(", "reading", ")", ":", "# 3 September 2017", "full_format", "=", "'<time datetime=\"%Y-%m-%d\">{}</time>'", ".", "format", "(", "'%-d %B %Y'", ")", "# September 2017", "month_year_format", "=", "'<time datetime=\"%Y-%m\">{}</time>'", ".", "format", ...
Given a Reading, with start and end dates and granularities[1] it returns an HTML string representing that period. eg: * '1–6 Feb 2017' * '1 Feb to 3 Mar 2017' * 'Feb 2017 to Mar 2018' * '2017–2018' etc. [1] https://www.flickr.com/services/api/misc.dates.html
[ "Given", "a", "Reading", "with", "start", "and", "end", "dates", "and", "granularities", "[", "1", "]", "it", "returns", "an", "HTML", "string", "representing", "that", "period", ".", "eg", ":" ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/reading/templatetags/spectator_reading.py#L136-L288
philgyford/django-spectator
spectator/events/migrations/0035_change_event_kinds.py
forwards
def forwards(apps, schema_editor): """ Change Events with kind 'movie' to 'cinema' and Events with kind 'play' to 'theatre'. Purely for more consistency. """ Event = apps.get_model('spectator_events', 'Event') for ev in Event.objects.filter(kind='movie'): ev.kind = 'cinema' ...
python
def forwards(apps, schema_editor): """ Change Events with kind 'movie' to 'cinema' and Events with kind 'play' to 'theatre'. Purely for more consistency. """ Event = apps.get_model('spectator_events', 'Event') for ev in Event.objects.filter(kind='movie'): ev.kind = 'cinema' ...
[ "def", "forwards", "(", "apps", ",", "schema_editor", ")", ":", "Event", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Event'", ")", "for", "ev", "in", "Event", ".", "objects", ".", "filter", "(", "kind", "=", "'movie'", ")", ":", "e...
Change Events with kind 'movie' to 'cinema' and Events with kind 'play' to 'theatre'. Purely for more consistency.
[ "Change", "Events", "with", "kind", "movie", "to", "cinema", "and", "Events", "with", "kind", "play", "to", "theatre", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/migrations/0035_change_event_kinds.py#L6-L21
philgyford/django-spectator
devproject/devproject/settings.py
get_env_variable
def get_env_variable(var_name, default=None): """Get the environment variable or return exception.""" try: return os.environ[var_name] except KeyError: if default is None: error_msg = "Set the %s environment variable" % var_name raise ImproperlyConfigured(error_msg) ...
python
def get_env_variable(var_name, default=None): """Get the environment variable or return exception.""" try: return os.environ[var_name] except KeyError: if default is None: error_msg = "Set the %s environment variable" % var_name raise ImproperlyConfigured(error_msg) ...
[ "def", "get_env_variable", "(", "var_name", ",", "default", "=", "None", ")", ":", "try", ":", "return", "os", ".", "environ", "[", "var_name", "]", "except", "KeyError", ":", "if", "default", "is", "None", ":", "error_msg", "=", "\"Set the %s environment va...
Get the environment variable or return exception.
[ "Get", "the", "environment", "variable", "or", "return", "exception", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/devproject/devproject/settings.py#L21-L30
philgyford/django-spectator
spectator/events/migrations/0039_populate_exhibitions.py
generate_slug
def generate_slug(value): """ Generates a slug using a Hashid of `value`. COPIED from spectator.core.models.SluggedModelMixin() because migrations don't make this happen automatically and perhaps the least bad thing is to copy the method here, ugh. """ alphabet = app_settings.SLUG_ALPHABET ...
python
def generate_slug(value): """ Generates a slug using a Hashid of `value`. COPIED from spectator.core.models.SluggedModelMixin() because migrations don't make this happen automatically and perhaps the least bad thing is to copy the method here, ugh. """ alphabet = app_settings.SLUG_ALPHABET ...
[ "def", "generate_slug", "(", "value", ")", ":", "alphabet", "=", "app_settings", ".", "SLUG_ALPHABET", "salt", "=", "app_settings", ".", "SLUG_SALT", "hashids", "=", "Hashids", "(", "alphabet", "=", "alphabet", ",", "salt", "=", "salt", ",", "min_length", "=...
Generates a slug using a Hashid of `value`. COPIED from spectator.core.models.SluggedModelMixin() because migrations don't make this happen automatically and perhaps the least bad thing is to copy the method here, ugh.
[ "Generates", "a", "slug", "using", "a", "Hashid", "of", "value", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/migrations/0039_populate_exhibitions.py#L11-L24
philgyford/django-spectator
spectator/events/migrations/0039_populate_exhibitions.py
forwards
def forwards(apps, schema_editor): """ Having added the new 'exhibition' Work type, we're going to assume that every Event of type 'museum' should actually have one Exhibition attached. So, we'll add one, with the same title as the Event. And we'll move all Creators from the Event to the Exhibition...
python
def forwards(apps, schema_editor): """ Having added the new 'exhibition' Work type, we're going to assume that every Event of type 'museum' should actually have one Exhibition attached. So, we'll add one, with the same title as the Event. And we'll move all Creators from the Event to the Exhibition...
[ "def", "forwards", "(", "apps", ",", "schema_editor", ")", ":", "Event", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Event'", ")", "Work", "=", "apps", ".", "get_model", "(", "'spectator_events'", ",", "'Work'", ")", "WorkRole", "=", "...
Having added the new 'exhibition' Work type, we're going to assume that every Event of type 'museum' should actually have one Exhibition attached. So, we'll add one, with the same title as the Event. And we'll move all Creators from the Event to the Exhibition.
[ "Having", "added", "the", "new", "exhibition", "Work", "type", "we", "re", "going", "to", "assume", "that", "every", "Event", "of", "type", "museum", "should", "actually", "have", "one", "Exhibition", "attached", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/events/migrations/0039_populate_exhibitions.py#L27-L70
philgyford/django-spectator
spectator/core/managers.py
CreatorManager.by_publications
def by_publications(self): """ The Creators who have been most-read, ordered by number of read publications (ignoring if any of those publicatinos have been read multiple times.) Each Creator will have a `num_publications` attribute. """ if not spectator_apps.is_...
python
def by_publications(self): """ The Creators who have been most-read, ordered by number of read publications (ignoring if any of those publicatinos have been read multiple times.) Each Creator will have a `num_publications` attribute. """ if not spectator_apps.is_...
[ "def", "by_publications", "(", "self", ")", ":", "if", "not", "spectator_apps", ".", "is_enabled", "(", "'reading'", ")", ":", "raise", "ImproperlyConfigured", "(", "\"To use the CreatorManager.by_publications() method, 'spectator.reading' must by in INSTALLED_APPS.\"", ")", ...
The Creators who have been most-read, ordered by number of read publications (ignoring if any of those publicatinos have been read multiple times.) Each Creator will have a `num_publications` attribute.
[ "The", "Creators", "who", "have", "been", "most", "-", "read", "ordered", "by", "number", "of", "read", "publications", "(", "ignoring", "if", "any", "of", "those", "publicatinos", "have", "been", "read", "multiple", "times", ".", ")" ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/managers.py#L10-L27
philgyford/django-spectator
spectator/core/managers.py
CreatorManager.by_readings
def by_readings(self, role_names=['', 'Author']): """ The Creators who have been most-read, ordered by number of readings. By default it will only include Creators whose role was left empty, or is 'Author'. Each Creator will have a `num_readings` attribute. """ ...
python
def by_readings(self, role_names=['', 'Author']): """ The Creators who have been most-read, ordered by number of readings. By default it will only include Creators whose role was left empty, or is 'Author'. Each Creator will have a `num_readings` attribute. """ ...
[ "def", "by_readings", "(", "self", ",", "role_names", "=", "[", "''", ",", "'Author'", "]", ")", ":", "if", "not", "spectator_apps", ".", "is_enabled", "(", "'reading'", ")", ":", "raise", "ImproperlyConfigured", "(", "\"To use the CreatorManager.by_readings() met...
The Creators who have been most-read, ordered by number of readings. By default it will only include Creators whose role was left empty, or is 'Author'. Each Creator will have a `num_readings` attribute.
[ "The", "Creators", "who", "have", "been", "most", "-", "read", "ordered", "by", "number", "of", "readings", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/managers.py#L29-L48
philgyford/django-spectator
spectator/core/managers.py
CreatorManager.by_events
def by_events(self, kind=None): """ Get the Creators involved in the most Events. This only counts Creators directly involved in an Event. i.e. if a Creator is the director of a movie Work, and an Event was a viewing of that movie, that Event wouldn't count. Unless they were ...
python
def by_events(self, kind=None): """ Get the Creators involved in the most Events. This only counts Creators directly involved in an Event. i.e. if a Creator is the director of a movie Work, and an Event was a viewing of that movie, that Event wouldn't count. Unless they were ...
[ "def", "by_events", "(", "self", ",", "kind", "=", "None", ")", ":", "if", "not", "spectator_apps", ".", "is_enabled", "(", "'events'", ")", ":", "raise", "ImproperlyConfigured", "(", "\"To use the CreatorManager.by_events() method, 'spectator.events' must by in INSTALLED...
Get the Creators involved in the most Events. This only counts Creators directly involved in an Event. i.e. if a Creator is the director of a movie Work, and an Event was a viewing of that movie, that Event wouldn't count. Unless they were also directly involved in the Event (e.g. speak...
[ "Get", "the", "Creators", "involved", "in", "the", "most", "Events", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/managers.py#L50-L72
philgyford/django-spectator
spectator/core/managers.py
CreatorManager.by_works
def by_works(self, kind=None, role_name=None): """ Get the Creators involved in the most Works. kind - If supplied, only Works with that `kind` value will be counted. role_name - If supplied, only Works on which the role is that will be counted. e.g. To get all 'movie' Works on...
python
def by_works(self, kind=None, role_name=None): """ Get the Creators involved in the most Works. kind - If supplied, only Works with that `kind` value will be counted. role_name - If supplied, only Works on which the role is that will be counted. e.g. To get all 'movie' Works on...
[ "def", "by_works", "(", "self", ",", "kind", "=", "None", ",", "role_name", "=", "None", ")", ":", "if", "not", "spectator_apps", ".", "is_enabled", "(", "'events'", ")", ":", "raise", "ImproperlyConfigured", "(", "\"To use the CreatorManager.by_works() method, 's...
Get the Creators involved in the most Works. kind - If supplied, only Works with that `kind` value will be counted. role_name - If supplied, only Works on which the role is that will be counted. e.g. To get all 'movie' Works on which the Creators had the role 'Director': Creator.o...
[ "Get", "the", "Creators", "involved", "in", "the", "most", "Works", "." ]
train
https://github.com/philgyford/django-spectator/blob/f3c72004f9caa1fde0f5a3b2f0d2bf285fc01ada/spectator/core/managers.py#L74-L104
inveniosoftware/invenio-search
examples/app.py
index
def index(): """Query Elasticsearch using Invenio query syntax.""" page = request.values.get('page', 1, type=int) size = request.values.get('size', 2, type=int) search = ExampleSearch()[(page - 1) * size:page * size] if 'q' in request.values: search = search.query(QueryString(query=request.v...
python
def index(): """Query Elasticsearch using Invenio query syntax.""" page = request.values.get('page', 1, type=int) size = request.values.get('size', 2, type=int) search = ExampleSearch()[(page - 1) * size:page * size] if 'q' in request.values: search = search.query(QueryString(query=request.v...
[ "def", "index", "(", ")", ":", "page", "=", "request", ".", "values", ".", "get", "(", "'page'", ",", "1", ",", "type", "=", "int", ")", "size", "=", "request", ".", "values", ".", "get", "(", "'size'", ",", "2", ",", "type", "=", "int", ")", ...
Query Elasticsearch using Invenio query syntax.
[ "Query", "Elasticsearch", "using", "Invenio", "query", "syntax", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/examples/app.py#L106-L119
krbcontext/python-krbcontext
krbcontext/context.py
krbContext.clean_options
def clean_options(self, using_keytab=False, principal=None, keytab_file=None, ccache_file=None, password=None): """Clean argument to related object :param bool using_keytab: refer to ``krbContext.__init__``. :param str principal:...
python
def clean_options(self, using_keytab=False, principal=None, keytab_file=None, ccache_file=None, password=None): """Clean argument to related object :param bool using_keytab: refer to ``krbContext.__init__``. :param str principal:...
[ "def", "clean_options", "(", "self", ",", "using_keytab", "=", "False", ",", "principal", "=", "None", ",", "keytab_file", "=", "None", ",", "ccache_file", "=", "None", ",", "password", "=", "None", ")", ":", "cleaned", "=", "{", "}", "if", "using_keytab...
Clean argument to related object :param bool using_keytab: refer to ``krbContext.__init__``. :param str principal: refer to ``krbContext.__init__``. :param str keytab_file: refer to ``krbContext.__init__``. :param str ccache_file: refer to ``krbContext.__init__``. :param str pas...
[ "Clean", "argument", "to", "related", "object" ]
train
https://github.com/krbcontext/python-krbcontext/blob/9dc93765a4723fa04c2ca57125294d422a6356cd/krbcontext/context.py#L104-L148
krbcontext/python-krbcontext
krbcontext/context.py
krbContext.init_with_keytab
def init_with_keytab(self): """Initialize credential cache with keytab""" creds_opts = { 'usage': 'initiate', 'name': self._cleaned_options['principal'], } store = {} if self._cleaned_options['keytab'] != DEFAULT_KEYTAB: store['client_keytab']...
python
def init_with_keytab(self): """Initialize credential cache with keytab""" creds_opts = { 'usage': 'initiate', 'name': self._cleaned_options['principal'], } store = {} if self._cleaned_options['keytab'] != DEFAULT_KEYTAB: store['client_keytab']...
[ "def", "init_with_keytab", "(", "self", ")", ":", "creds_opts", "=", "{", "'usage'", ":", "'initiate'", ",", "'name'", ":", "self", ".", "_cleaned_options", "[", "'principal'", "]", ",", "}", "store", "=", "{", "}", "if", "self", ".", "_cleaned_options", ...
Initialize credential cache with keytab
[ "Initialize", "credential", "cache", "with", "keytab" ]
train
https://github.com/krbcontext/python-krbcontext/blob/9dc93765a4723fa04c2ca57125294d422a6356cd/krbcontext/context.py#L150-L183
krbcontext/python-krbcontext
krbcontext/context.py
krbContext.init_with_password
def init_with_password(self): """Initialize credential cache with password **Causion:** once you enter password from command line, or pass it to API directly, the given password is not encrypted always. Although getting credential with password works, from security point of view, it ...
python
def init_with_password(self): """Initialize credential cache with password **Causion:** once you enter password from command line, or pass it to API directly, the given password is not encrypted always. Although getting credential with password works, from security point of view, it ...
[ "def", "init_with_password", "(", "self", ")", ":", "creds_opts", "=", "{", "'usage'", ":", "'initiate'", ",", "'name'", ":", "self", ".", "_cleaned_options", "[", "'principal'", "]", ",", "}", "if", "self", ".", "_cleaned_options", "[", "'ccache'", "]", "...
Initialize credential cache with password **Causion:** once you enter password from command line, or pass it to API directly, the given password is not encrypted always. Although getting credential with password works, from security point of view, it is strongly recommended **NOT** use ...
[ "Initialize", "credential", "cache", "with", "password" ]
train
https://github.com/krbcontext/python-krbcontext/blob/9dc93765a4723fa04c2ca57125294d422a6356cd/krbcontext/context.py#L185-L240
krbcontext/python-krbcontext
krbcontext/context.py
krbContext._prepare_context
def _prepare_context(self): """Prepare context Initialize credential cache with keytab or password according to ``using_keytab`` parameter. Then, ``KRB5CCNAME`` is set properly so that Kerberos library called in current context is able to get credential from correct cache. ...
python
def _prepare_context(self): """Prepare context Initialize credential cache with keytab or password according to ``using_keytab`` parameter. Then, ``KRB5CCNAME`` is set properly so that Kerberos library called in current context is able to get credential from correct cache. ...
[ "def", "_prepare_context", "(", "self", ")", ":", "ccache", "=", "self", ".", "_cleaned_options", "[", "'ccache'", "]", "# Whatever there is KRB5CCNAME was set in current process,", "# original_krb5ccname will contain current value even if None if", "# that variable wasn't set, and w...
Prepare context Initialize credential cache with keytab or password according to ``using_keytab`` parameter. Then, ``KRB5CCNAME`` is set properly so that Kerberos library called in current context is able to get credential from correct cache. Internal use only.
[ "Prepare", "context" ]
train
https://github.com/krbcontext/python-krbcontext/blob/9dc93765a4723fa04c2ca57125294d422a6356cd/krbcontext/context.py#L242-L273
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.templates
def templates(self): """Generate a dictionary with template names and file paths.""" templates = {} result = [] if self.entry_point_group_templates: result = self.load_entry_point_group_templates( self.entry_point_group_templates) or [] for template i...
python
def templates(self): """Generate a dictionary with template names and file paths.""" templates = {} result = [] if self.entry_point_group_templates: result = self.load_entry_point_group_templates( self.entry_point_group_templates) or [] for template i...
[ "def", "templates", "(", "self", ")", ":", "templates", "=", "{", "}", "result", "=", "[", "]", "if", "self", ".", "entry_point_group_templates", ":", "result", "=", "self", ".", "load_entry_point_group_templates", "(", "self", ".", "entry_point_group_templates"...
Generate a dictionary with template names and file paths.
[ "Generate", "a", "dictionary", "with", "template", "names", "and", "file", "paths", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L71-L83
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.register_mappings
def register_mappings(self, alias, package_name): """Register mappings from a package under given alias. :param alias: The alias. :param package_name: The package name. """ # For backwards compatibility, we also allow for ES2 mappings to be # placed at the root level of ...
python
def register_mappings(self, alias, package_name): """Register mappings from a package under given alias. :param alias: The alias. :param package_name: The package name. """ # For backwards compatibility, we also allow for ES2 mappings to be # placed at the root level of ...
[ "def", "register_mappings", "(", "self", ",", "alias", ",", "package_name", ")", ":", "# For backwards compatibility, we also allow for ES2 mappings to be", "# placed at the root level of the specified package path, and not in", "# the `<package-path>/v2` directory.", "if", "ES_VERSION",...
Register mappings from a package under given alias. :param alias: The alias. :param package_name: The package name.
[ "Register", "mappings", "from", "a", "package", "under", "given", "alias", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L85-L145
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.register_templates
def register_templates(self, directory): """Register templates from the provided directory. :param directory: The templates directory. """ try: resource_listdir(directory, 'v{}'.format(ES_VERSION[0])) directory = '{}/v{}'.format(directory, ES_VERSION[0]) ...
python
def register_templates(self, directory): """Register templates from the provided directory. :param directory: The templates directory. """ try: resource_listdir(directory, 'v{}'.format(ES_VERSION[0])) directory = '{}/v{}'.format(directory, ES_VERSION[0]) ...
[ "def", "register_templates", "(", "self", ",", "directory", ")", ":", "try", ":", "resource_listdir", "(", "directory", ",", "'v{}'", ".", "format", "(", "ES_VERSION", "[", "0", "]", ")", ")", "directory", "=", "'{}/v{}'", ".", "format", "(", "directory", ...
Register templates from the provided directory. :param directory: The templates directory.
[ "Register", "templates", "from", "the", "provided", "directory", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L147-L190
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.load_entry_point_group_mappings
def load_entry_point_group_mappings(self, entry_point_group_mappings): """Load actions from an entry point group.""" for ep in iter_entry_points(group=entry_point_group_mappings): self.register_mappings(ep.name, ep.module_name)
python
def load_entry_point_group_mappings(self, entry_point_group_mappings): """Load actions from an entry point group.""" for ep in iter_entry_points(group=entry_point_group_mappings): self.register_mappings(ep.name, ep.module_name)
[ "def", "load_entry_point_group_mappings", "(", "self", ",", "entry_point_group_mappings", ")", ":", "for", "ep", "in", "iter_entry_points", "(", "group", "=", "entry_point_group_mappings", ")", ":", "self", ".", "register_mappings", "(", "ep", ".", "name", ",", "e...
Load actions from an entry point group.
[ "Load", "actions", "from", "an", "entry", "point", "group", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L192-L195
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.load_entry_point_group_templates
def load_entry_point_group_templates(self, entry_point_group_templates): """Load actions from an entry point group.""" result = [] for ep in iter_entry_points(group=entry_point_group_templates): with self.app.app_context(): for template_dir in ep.load()(): ...
python
def load_entry_point_group_templates(self, entry_point_group_templates): """Load actions from an entry point group.""" result = [] for ep in iter_entry_points(group=entry_point_group_templates): with self.app.app_context(): for template_dir in ep.load()(): ...
[ "def", "load_entry_point_group_templates", "(", "self", ",", "entry_point_group_templates", ")", ":", "result", "=", "[", "]", "for", "ep", "in", "iter_entry_points", "(", "group", "=", "entry_point_group_templates", ")", ":", "with", "self", ".", "app", ".", "a...
Load actions from an entry point group.
[ "Load", "actions", "from", "an", "entry", "point", "group", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L197-L204
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState._client_builder
def _client_builder(self): """Build Elasticsearch client.""" client_config = self.app.config.get('SEARCH_CLIENT_CONFIG') or {} client_config.setdefault( 'hosts', self.app.config.get('SEARCH_ELASTIC_HOSTS')) client_config.setdefault('connection_class', RequestsHttpConnection) ...
python
def _client_builder(self): """Build Elasticsearch client.""" client_config = self.app.config.get('SEARCH_CLIENT_CONFIG') or {} client_config.setdefault( 'hosts', self.app.config.get('SEARCH_ELASTIC_HOSTS')) client_config.setdefault('connection_class', RequestsHttpConnection) ...
[ "def", "_client_builder", "(", "self", ")", ":", "client_config", "=", "self", ".", "app", ".", "config", ".", "get", "(", "'SEARCH_CLIENT_CONFIG'", ")", "or", "{", "}", "client_config", ".", "setdefault", "(", "'hosts'", ",", "self", ".", "app", ".", "c...
Build Elasticsearch client.
[ "Build", "Elasticsearch", "client", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L206-L212
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.client
def client(self): """Return client for current application.""" if self._client is None: self._client = self._client_builder() return self._client
python
def client(self): """Return client for current application.""" if self._client is None: self._client = self._client_builder() return self._client
[ "def", "client", "(", "self", ")", ":", "if", "self", ".", "_client", "is", "None", ":", "self", ".", "_client", "=", "self", ".", "_client_builder", "(", ")", "return", "self", ".", "_client" ]
Return client for current application.
[ "Return", "client", "for", "current", "application", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L215-L219
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.flush_and_refresh
def flush_and_refresh(self, index): """Flush and refresh one or more indices. .. warning:: Do not call this method unless you know what you are doing. This method is only intended to be called during tests. """ self.client.indices.flush(wait_if_ongoing=True, index...
python
def flush_and_refresh(self, index): """Flush and refresh one or more indices. .. warning:: Do not call this method unless you know what you are doing. This method is only intended to be called during tests. """ self.client.indices.flush(wait_if_ongoing=True, index...
[ "def", "flush_and_refresh", "(", "self", ",", "index", ")", ":", "self", ".", "client", ".", "indices", ".", "flush", "(", "wait_if_ongoing", "=", "True", ",", "index", "=", "index", ")", "self", ".", "client", ".", "indices", ".", "refresh", "(", "ind...
Flush and refresh one or more indices. .. warning:: Do not call this method unless you know what you are doing. This method is only intended to be called during tests.
[ "Flush", "and", "refresh", "one", "or", "more", "indices", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L221-L233
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.cluster_version
def cluster_version(self): """Get version of Elasticsearch running on the cluster.""" versionstr = self.client.info()['version']['number'] return [int(x) for x in versionstr.split('.')]
python
def cluster_version(self): """Get version of Elasticsearch running on the cluster.""" versionstr = self.client.info()['version']['number'] return [int(x) for x in versionstr.split('.')]
[ "def", "cluster_version", "(", "self", ")", ":", "versionstr", "=", "self", ".", "client", ".", "info", "(", ")", "[", "'version'", "]", "[", "'number'", "]", "return", "[", "int", "(", "x", ")", "for", "x", "in", "versionstr", ".", "split", "(", "...
Get version of Elasticsearch running on the cluster.
[ "Get", "version", "of", "Elasticsearch", "running", "on", "the", "cluster", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L236-L239
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.active_aliases
def active_aliases(self): """Get a filtered list of aliases based on configuration. Returns aliases and their mappings that are defined in the `SEARCH_MAPPINGS` config variable. If the `SEARCH_MAPPINGS` is set to `None` (the default), all aliases are included. """ whitel...
python
def active_aliases(self): """Get a filtered list of aliases based on configuration. Returns aliases and their mappings that are defined in the `SEARCH_MAPPINGS` config variable. If the `SEARCH_MAPPINGS` is set to `None` (the default), all aliases are included. """ whitel...
[ "def", "active_aliases", "(", "self", ")", ":", "whitelisted_aliases", "=", "self", ".", "app", ".", "config", ".", "get", "(", "'SEARCH_MAPPINGS'", ")", "if", "whitelisted_aliases", "is", "None", ":", "return", "self", ".", "aliases", "else", ":", "return",...
Get a filtered list of aliases based on configuration. Returns aliases and their mappings that are defined in the `SEARCH_MAPPINGS` config variable. If the `SEARCH_MAPPINGS` is set to `None` (the default), all aliases are included.
[ "Get", "a", "filtered", "list", "of", "aliases", "based", "on", "configuration", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L242-L254
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.create
def create(self, ignore=None): """Yield tuple with created index name and responses from a client.""" ignore = ignore or [] def _create(tree_or_filename, alias=None): """Create indices and aliases by walking DFS.""" # Iterate over aliases: for name, value in ...
python
def create(self, ignore=None): """Yield tuple with created index name and responses from a client.""" ignore = ignore or [] def _create(tree_or_filename, alias=None): """Create indices and aliases by walking DFS.""" # Iterate over aliases: for name, value in ...
[ "def", "create", "(", "self", ",", "ignore", "=", "None", ")", ":", "ignore", "=", "ignore", "or", "[", "]", "def", "_create", "(", "tree_or_filename", ",", "alias", "=", "None", ")", ":", "\"\"\"Create indices and aliases by walking DFS.\"\"\"", "# Iterate over...
Yield tuple with created index name and responses from a client.
[ "Yield", "tuple", "with", "created", "index", "name", "and", "responses", "from", "a", "client", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L256-L283
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.put_templates
def put_templates(self, ignore=None): """Yield tuple with registered template and response from client.""" ignore = ignore or [] def _replace_prefix(template_path, body): """Replace index prefix in template request body.""" pattern = '__SEARCH_INDEX_PREFIX__' ...
python
def put_templates(self, ignore=None): """Yield tuple with registered template and response from client.""" ignore = ignore or [] def _replace_prefix(template_path, body): """Replace index prefix in template request body.""" pattern = '__SEARCH_INDEX_PREFIX__' ...
[ "def", "put_templates", "(", "self", ",", "ignore", "=", "None", ")", ":", "ignore", "=", "ignore", "or", "[", "]", "def", "_replace_prefix", "(", "template_path", ",", "body", ")", ":", "\"\"\"Replace index prefix in template request body.\"\"\"", "pattern", "=",...
Yield tuple with registered template and response from client.
[ "Yield", "tuple", "with", "registered", "template", "and", "response", "from", "client", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L285-L314
inveniosoftware/invenio-search
invenio_search/ext.py
_SearchState.delete
def delete(self, ignore=None): """Yield tuple with deleted index name and responses from a client.""" ignore = ignore or [] def _delete(tree_or_filename, alias=None): """Delete indexes and aliases by walking DFS.""" if alias: yield alias, self.client.indi...
python
def delete(self, ignore=None): """Yield tuple with deleted index name and responses from a client.""" ignore = ignore or [] def _delete(tree_or_filename, alias=None): """Delete indexes and aliases by walking DFS.""" if alias: yield alias, self.client.indi...
[ "def", "delete", "(", "self", ",", "ignore", "=", "None", ")", ":", "ignore", "=", "ignore", "or", "[", "]", "def", "_delete", "(", "tree_or_filename", ",", "alias", "=", "None", ")", ":", "\"\"\"Delete indexes and aliases by walking DFS.\"\"\"", "if", "alias"...
Yield tuple with deleted index name and responses from a client.
[ "Yield", "tuple", "with", "deleted", "index", "name", "and", "responses", "from", "a", "client", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L316-L341
inveniosoftware/invenio-search
invenio_search/ext.py
InvenioSearch.init_app
def init_app(self, app, entry_point_group_mappings='invenio_search.mappings', entry_point_group_templates='invenio_search.templates', **kwargs): """Flask application initialization. :param app: An instance of :class:`~flask.app.Flask`. """ ...
python
def init_app(self, app, entry_point_group_mappings='invenio_search.mappings', entry_point_group_templates='invenio_search.templates', **kwargs): """Flask application initialization. :param app: An instance of :class:`~flask.app.Flask`. """ ...
[ "def", "init_app", "(", "self", ",", "app", ",", "entry_point_group_mappings", "=", "'invenio_search.mappings'", ",", "entry_point_group_templates", "=", "'invenio_search.templates'", ",", "*", "*", "kwargs", ")", ":", "self", ".", "init_config", "(", "app", ")", ...
Flask application initialization. :param app: An instance of :class:`~flask.app.Flask`.
[ "Flask", "application", "initialization", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/ext.py#L357-L375
ybrs/pydisque
example/poor_consumer.py
main
def main(): """Start the poor_consumer.""" try: opts, args = getopt.getopt(sys.argv[1:], "h:v", ["help", "nack=", "servers=", "queues="]) except getopt.GetoptError as err: print str(err) usage() sys.exit() # defaults nack = 0.0 ...
python
def main(): """Start the poor_consumer.""" try: opts, args = getopt.getopt(sys.argv[1:], "h:v", ["help", "nack=", "servers=", "queues="]) except getopt.GetoptError as err: print str(err) usage() sys.exit() # defaults nack = 0.0 ...
[ "def", "main", "(", ")", ":", "try", ":", "opts", ",", "args", "=", "getopt", ".", "getopt", "(", "sys", ".", "argv", "[", "1", ":", "]", ",", "\"h:v\"", ",", "[", "\"help\"", ",", "\"nack=\"", ",", "\"servers=\"", ",", "\"queues=\"", "]", ")", "...
Start the poor_consumer.
[ "Start", "the", "poor_consumer", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/example/poor_consumer.py#L27-L78
ybrs/pydisque
pydisque/client.py
Client.connect
def connect(self): """ Connect to one of the Disque nodes. You can get current connection with connected_node property :returns: nothing """ self.connected_node = None for i, node in self.nodes.items(): host, port = i.split(':') port = i...
python
def connect(self): """ Connect to one of the Disque nodes. You can get current connection with connected_node property :returns: nothing """ self.connected_node = None for i, node in self.nodes.items(): host, port = i.split(':') port = i...
[ "def", "connect", "(", "self", ")", ":", "self", ".", "connected_node", "=", "None", "for", "i", ",", "node", "in", "self", ".", "nodes", ".", "items", "(", ")", ":", "host", ",", "port", "=", "i", ".", "split", "(", "':'", ")", "port", "=", "i...
Connect to one of the Disque nodes. You can get current connection with connected_node property :returns: nothing
[ "Connect", "to", "one", "of", "the", "Disque", "nodes", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L117-L143
ybrs/pydisque
pydisque/client.py
Client.execute_command
def execute_command(self, *args, **kwargs): """Execute a command on the connected server.""" try: return self.get_connection().execute_command(*args, **kwargs) except ConnectionError as e: logger.warn('trying to reconnect') self.connect() logger.wa...
python
def execute_command(self, *args, **kwargs): """Execute a command on the connected server.""" try: return self.get_connection().execute_command(*args, **kwargs) except ConnectionError as e: logger.warn('trying to reconnect') self.connect() logger.wa...
[ "def", "execute_command", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "try", ":", "return", "self", ".", "get_connection", "(", ")", ".", "execute_command", "(", "*", "args", ",", "*", "*", "kwargs", ")", "except", "ConnectionErro...
Execute a command on the connected server.
[ "Execute", "a", "command", "on", "the", "connected", "server", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L157-L165
ybrs/pydisque
pydisque/client.py
Client.add_job
def add_job(self, queue_name, job, timeout=200, replicate=None, delay=None, retry=None, ttl=None, maxlen=None, asynchronous=None): """ Add a job to a queue. ADDJOB queue_name job <ms-timeout> [REPLICATE <count>] [DELAY <sec>] [RETRY <sec>] [TTL <sec>] [MAXLEN <count>...
python
def add_job(self, queue_name, job, timeout=200, replicate=None, delay=None, retry=None, ttl=None, maxlen=None, asynchronous=None): """ Add a job to a queue. ADDJOB queue_name job <ms-timeout> [REPLICATE <count>] [DELAY <sec>] [RETRY <sec>] [TTL <sec>] [MAXLEN <count>...
[ "def", "add_job", "(", "self", ",", "queue_name", ",", "job", ",", "timeout", "=", "200", ",", "replicate", "=", "None", ",", "delay", "=", "None", ",", "retry", "=", "None", ",", "ttl", "=", "None", ",", "maxlen", "=", "None", ",", "asynchronous", ...
Add a job to a queue. ADDJOB queue_name job <ms-timeout> [REPLICATE <count>] [DELAY <sec>] [RETRY <sec>] [TTL <sec>] [MAXLEN <count>] [ASYNC] :param queue_name: is the name of the queue, any string, basically. :param job: is a string representing the job. :param timeout: is...
[ "Add", "a", "job", "to", "a", "queue", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L182-L235
ybrs/pydisque
pydisque/client.py
Client.get_job
def get_job(self, queues, timeout=None, count=None, nohang=False, withcounters=False): """ Return some number of jobs from specified queues. GETJOB [NOHANG] [TIMEOUT <ms-timeout>] [COUNT <count>] [WITHCOUNTERS] FROM queue1 queue2 ... queueN :param queues: name of queues ...
python
def get_job(self, queues, timeout=None, count=None, nohang=False, withcounters=False): """ Return some number of jobs from specified queues. GETJOB [NOHANG] [TIMEOUT <ms-timeout>] [COUNT <count>] [WITHCOUNTERS] FROM queue1 queue2 ... queueN :param queues: name of queues ...
[ "def", "get_job", "(", "self", ",", "queues", ",", "timeout", "=", "None", ",", "count", "=", "None", ",", "nohang", "=", "False", ",", "withcounters", "=", "False", ")", ":", "assert", "queues", "command", "=", "[", "'GETJOB'", "]", "if", "nohang", ...
Return some number of jobs from specified queues. GETJOB [NOHANG] [TIMEOUT <ms-timeout>] [COUNT <count>] [WITHCOUNTERS] FROM queue1 queue2 ... queueN :param queues: name of queues :returns: list of tuple(job_id, queue_name, job), tuple(job_id, queue_name, job, nacks, additional_de...
[ "Return", "some", "number", "of", "jobs", "from", "specified", "queues", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L237-L271
ybrs/pydisque
pydisque/client.py
Client.qstat
def qstat(self, queue_name, return_dict=False): """ Return the status of the queue (currently unimplemented). Future support / testing of QSTAT support in Disque QSTAT <qname> Return produced ... consumed ... idle ... sources [...] ctime ... """ rtn = self.exec...
python
def qstat(self, queue_name, return_dict=False): """ Return the status of the queue (currently unimplemented). Future support / testing of QSTAT support in Disque QSTAT <qname> Return produced ... consumed ... idle ... sources [...] ctime ... """ rtn = self.exec...
[ "def", "qstat", "(", "self", ",", "queue_name", ",", "return_dict", "=", "False", ")", ":", "rtn", "=", "self", ".", "execute_command", "(", "'QSTAT'", ",", "queue_name", ")", "if", "return_dict", ":", "grouped", "=", "self", ".", "_grouper", "(", "rtn",...
Return the status of the queue (currently unimplemented). Future support / testing of QSTAT support in Disque QSTAT <qname> Return produced ... consumed ... idle ... sources [...] ctime ...
[ "Return", "the", "status", "of", "the", "queue", "(", "currently", "unimplemented", ")", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L333-L349
ybrs/pydisque
pydisque/client.py
Client.show
def show(self, job_id, return_dict=False): """ Describe the job. :param job_id: """ rtn = self.execute_command('SHOW', job_id) if return_dict: grouped = self._grouper(rtn, 2) rtn = dict((a, b) for a, b in grouped) return rtn
python
def show(self, job_id, return_dict=False): """ Describe the job. :param job_id: """ rtn = self.execute_command('SHOW', job_id) if return_dict: grouped = self._grouper(rtn, 2) rtn = dict((a, b) for a, b in grouped) return rtn
[ "def", "show", "(", "self", ",", "job_id", ",", "return_dict", "=", "False", ")", ":", "rtn", "=", "self", ".", "execute_command", "(", "'SHOW'", ",", "job_id", ")", "if", "return_dict", ":", "grouped", "=", "self", ".", "_grouper", "(", "rtn", ",", ...
Describe the job. :param job_id:
[ "Describe", "the", "job", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L402-L415
ybrs/pydisque
pydisque/client.py
Client.pause
def pause(self, queue_name, kw_in=None, kw_out=None, kw_all=None, kw_none=None, kw_state=None, kw_bcast=None): """ Pause a queue. Unfortunately, the PAUSE keywords are mostly reserved words in Python, so I've been a little creative in the function variable names. Open ...
python
def pause(self, queue_name, kw_in=None, kw_out=None, kw_all=None, kw_none=None, kw_state=None, kw_bcast=None): """ Pause a queue. Unfortunately, the PAUSE keywords are mostly reserved words in Python, so I've been a little creative in the function variable names. Open ...
[ "def", "pause", "(", "self", ",", "queue_name", ",", "kw_in", "=", "None", ",", "kw_out", "=", "None", ",", "kw_all", "=", "None", ",", "kw_none", "=", "None", ",", "kw_state", "=", "None", ",", "kw_bcast", "=", "None", ")", ":", "command", "=", "[...
Pause a queue. Unfortunately, the PAUSE keywords are mostly reserved words in Python, so I've been a little creative in the function variable names. Open to suggestions to change it (canardleteer) :param queue_name: The job queue we are modifying. :param kw_in: pause the queue ...
[ "Pause", "a", "queue", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L417-L451
ybrs/pydisque
pydisque/client.py
Client.qscan
def qscan(self, cursor=0, count=None, busyloop=None, minlen=None, maxlen=None, importrate=None): """ Iterate all the existing queues in the local node. :param count: An hint about how much work to do per iteration. :param busyloop: Block and return all the elements in a bu...
python
def qscan(self, cursor=0, count=None, busyloop=None, minlen=None, maxlen=None, importrate=None): """ Iterate all the existing queues in the local node. :param count: An hint about how much work to do per iteration. :param busyloop: Block and return all the elements in a bu...
[ "def", "qscan", "(", "self", ",", "cursor", "=", "0", ",", "count", "=", "None", ",", "busyloop", "=", "None", ",", "minlen", "=", "None", ",", "maxlen", "=", "None", ",", "importrate", "=", "None", ")", ":", "command", "=", "[", "\"QSCAN\"", ",", ...
Iterate all the existing queues in the local node. :param count: An hint about how much work to do per iteration. :param busyloop: Block and return all the elements in a busy loop. :param minlen: Don't return elements with less than count jobs queued. :param maxlen: Don't return element...
[ "Iterate", "all", "the", "existing", "queues", "in", "the", "local", "node", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L453-L477
ybrs/pydisque
pydisque/client.py
Client.jscan
def jscan(self, cursor=0, count=None, busyloop=None, queue=None, state=None, reply=None): """Iterate all the existing jobs in the local node. :param count: An hint about how much work to do per iteration. :param busyloop: Block and return all the elements in a busy loop. :...
python
def jscan(self, cursor=0, count=None, busyloop=None, queue=None, state=None, reply=None): """Iterate all the existing jobs in the local node. :param count: An hint about how much work to do per iteration. :param busyloop: Block and return all the elements in a busy loop. :...
[ "def", "jscan", "(", "self", ",", "cursor", "=", "0", ",", "count", "=", "None", ",", "busyloop", "=", "None", ",", "queue", "=", "None", ",", "state", "=", "None", ",", "reply", "=", "None", ")", ":", "command", "=", "[", "\"JSCAN\"", ",", "curs...
Iterate all the existing jobs in the local node. :param count: An hint about how much work to do per iteration. :param busyloop: Block and return all the elements in a busy loop. :param queue: Return only jobs in the specified queue. :param state: Must be a list - Return jobs in the spe...
[ "Iterate", "all", "the", "existing", "jobs", "in", "the", "local", "node", "." ]
train
https://github.com/ybrs/pydisque/blob/ea5ce1576b66398c1cce32cad0f15709b1ea8df8/pydisque/client.py#L479-L505
inveniosoftware/invenio-search
invenio_search/utils.py
build_index_name
def build_index_name(app, *parts): """Build an index name from parts. :param parts: Parts that should be combined to make an index name. """ base_index = os.path.splitext( '-'.join([part for part in parts if part]) )[0] return prefix_index(app=app, index=base_index)
python
def build_index_name(app, *parts): """Build an index name from parts. :param parts: Parts that should be combined to make an index name. """ base_index = os.path.splitext( '-'.join([part for part in parts if part]) )[0] return prefix_index(app=app, index=base_index)
[ "def", "build_index_name", "(", "app", ",", "*", "parts", ")", ":", "base_index", "=", "os", ".", "path", ".", "splitext", "(", "'-'", ".", "join", "(", "[", "part", "for", "part", "in", "parts", "if", "part", "]", ")", ")", "[", "0", "]", "retur...
Build an index name from parts. :param parts: Parts that should be combined to make an index name.
[ "Build", "an", "index", "name", "from", "parts", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/utils.py#L27-L36
inveniosoftware/invenio-search
invenio_search/utils.py
schema_to_index
def schema_to_index(schema, index_names=None): """Get index/doc_type given a schema URL. :param schema: The schema name :param index_names: A list of index name. :returns: A tuple containing (index, doc_type). """ parts = schema.split('/') doc_type = os.path.splitext(parts[-1]) if doc_...
python
def schema_to_index(schema, index_names=None): """Get index/doc_type given a schema URL. :param schema: The schema name :param index_names: A list of index name. :returns: A tuple containing (index, doc_type). """ parts = schema.split('/') doc_type = os.path.splitext(parts[-1]) if doc_...
[ "def", "schema_to_index", "(", "schema", ",", "index_names", "=", "None", ")", ":", "parts", "=", "schema", ".", "split", "(", "'/'", ")", "doc_type", "=", "os", ".", "path", ".", "splitext", "(", "parts", "[", "-", "1", "]", ")", "if", "doc_type", ...
Get index/doc_type given a schema URL. :param schema: The schema name :param index_names: A list of index name. :returns: A tuple containing (index, doc_type).
[ "Get", "index", "/", "doc_type", "given", "a", "schema", "URL", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/utils.py#L39-L60
inveniosoftware/invenio-search
invenio_search/cli.py
es_version_check
def es_version_check(f): """Decorator to check Elasticsearch version.""" @wraps(f) def inner(*args, **kwargs): cluster_ver = current_search.cluster_version[0] client_ver = ES_VERSION[0] if cluster_ver != client_ver: raise click.ClickException( 'Elasticsear...
python
def es_version_check(f): """Decorator to check Elasticsearch version.""" @wraps(f) def inner(*args, **kwargs): cluster_ver = current_search.cluster_version[0] client_ver = ES_VERSION[0] if cluster_ver != client_ver: raise click.ClickException( 'Elasticsear...
[ "def", "es_version_check", "(", "f", ")", ":", "@", "wraps", "(", "f", ")", "def", "inner", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "cluster_ver", "=", "current_search", ".", "cluster_version", "[", "0", "]", "client_ver", "=", "ES_VERSION...
Decorator to check Elasticsearch version.
[ "Decorator", "to", "check", "Elasticsearch", "version", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/cli.py#L30-L45
inveniosoftware/invenio-search
invenio_search/cli.py
init
def init(force): """Initialize registered aliases and mappings.""" click.secho('Creating indexes...', fg='green', bold=True, file=sys.stderr) with click.progressbar( current_search.create(ignore=[400] if force else None), length=current_search.number_of_indexes) as bar: for n...
python
def init(force): """Initialize registered aliases and mappings.""" click.secho('Creating indexes...', fg='green', bold=True, file=sys.stderr) with click.progressbar( current_search.create(ignore=[400] if force else None), length=current_search.number_of_indexes) as bar: for n...
[ "def", "init", "(", "force", ")", ":", "click", ".", "secho", "(", "'Creating indexes...'", ",", "fg", "=", "'green'", ",", "bold", "=", "True", ",", "file", "=", "sys", ".", "stderr", ")", "with", "click", ".", "progressbar", "(", "current_search", "....
Initialize registered aliases and mappings.
[ "Initialize", "registered", "aliases", "and", "mappings", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/cli.py#L68-L81
inveniosoftware/invenio-search
invenio_search/cli.py
destroy
def destroy(force): """Destroy all indexes.""" click.secho('Destroying indexes...', fg='red', bold=True, file=sys.stderr) with click.progressbar( current_search.delete(ignore=[400, 404] if force else None), length=current_search.number_of_indexes) as bar: for name, response i...
python
def destroy(force): """Destroy all indexes.""" click.secho('Destroying indexes...', fg='red', bold=True, file=sys.stderr) with click.progressbar( current_search.delete(ignore=[400, 404] if force else None), length=current_search.number_of_indexes) as bar: for name, response i...
[ "def", "destroy", "(", "force", ")", ":", "click", ".", "secho", "(", "'Destroying indexes...'", ",", "fg", "=", "'red'", ",", "bold", "=", "True", ",", "file", "=", "sys", ".", "stderr", ")", "with", "click", ".", "progressbar", "(", "current_search", ...
Destroy all indexes.
[ "Destroy", "all", "indexes", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/cli.py#L91-L98
inveniosoftware/invenio-search
invenio_search/cli.py
create
def create(index_name, body, force, verbose): """Create a new index.""" result = current_search_client.indices.create( index=index_name, body=json.load(body), ignore=[400] if force else None, ) if verbose: click.echo(json.dumps(result))
python
def create(index_name, body, force, verbose): """Create a new index.""" result = current_search_client.indices.create( index=index_name, body=json.load(body), ignore=[400] if force else None, ) if verbose: click.echo(json.dumps(result))
[ "def", "create", "(", "index_name", ",", "body", ",", "force", ",", "verbose", ")", ":", "result", "=", "current_search_client", ".", "indices", ".", "create", "(", "index", "=", "index_name", ",", "body", "=", "json", ".", "load", "(", "body", ")", ",...
Create a new index.
[ "Create", "a", "new", "index", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/cli.py#L108-L116
inveniosoftware/invenio-search
invenio_search/cli.py
list_cmd
def list_cmd(only_active, only_aliases, verbose): """List indices.""" def _tree_print(d, rec_list=None, verbose=False, indent=2): # Note that on every recursion rec_list is copied, # which might not be very effective for very deep dictionaries. rec_list = rec_list or [] for idx, ...
python
def list_cmd(only_active, only_aliases, verbose): """List indices.""" def _tree_print(d, rec_list=None, verbose=False, indent=2): # Note that on every recursion rec_list is copied, # which might not be very effective for very deep dictionaries. rec_list = rec_list or [] for idx, ...
[ "def", "list_cmd", "(", "only_active", ",", "only_aliases", ",", "verbose", ")", ":", "def", "_tree_print", "(", "d", ",", "rec_list", "=", "None", ",", "verbose", "=", "False", ",", "indent", "=", "2", ")", ":", "# Note that on every recursion rec_list is cop...
List indices.
[ "List", "indices", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/cli.py#L124-L153
inveniosoftware/invenio-search
invenio_search/cli.py
delete
def delete(index_name, force, verbose): """Delete index by its name.""" result = current_search_client.indices.delete( index=index_name, ignore=[400, 404] if force else None, ) if verbose: click.echo(json.dumps(result))
python
def delete(index_name, force, verbose): """Delete index by its name.""" result = current_search_client.indices.delete( index=index_name, ignore=[400, 404] if force else None, ) if verbose: click.echo(json.dumps(result))
[ "def", "delete", "(", "index_name", ",", "force", ",", "verbose", ")", ":", "result", "=", "current_search_client", ".", "indices", ".", "delete", "(", "index", "=", "index_name", ",", "ignore", "=", "[", "400", ",", "404", "]", "if", "force", "else", ...
Delete index by its name.
[ "Delete", "index", "by", "its", "name", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/cli.py#L165-L172
inveniosoftware/invenio-search
invenio_search/cli.py
put
def put(index_name, doc_type, identifier, body, force, verbose): """Index input data.""" result = current_search_client.index( index=index_name, doc_type=doc_type or index_name, id=identifier, body=json.load(body), op_type='index' if force or identifier is None else 'crea...
python
def put(index_name, doc_type, identifier, body, force, verbose): """Index input data.""" result = current_search_client.index( index=index_name, doc_type=doc_type or index_name, id=identifier, body=json.load(body), op_type='index' if force or identifier is None else 'crea...
[ "def", "put", "(", "index_name", ",", "doc_type", ",", "identifier", ",", "body", ",", "force", ",", "verbose", ")", ":", "result", "=", "current_search_client", ".", "index", "(", "index", "=", "index_name", ",", "doc_type", "=", "doc_type", "or", "index_...
Index input data.
[ "Index", "input", "data", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/cli.py#L184-L194
inveniosoftware/invenio-search
invenio_search/api.py
RecordsSearch.get_records
def get_records(self, ids): """Return records by their identifiers. :param ids: A list of record identifier. :returns: A list of records. """ return self.query(Ids(values=[str(id_) for id_ in ids]))
python
def get_records(self, ids): """Return records by their identifiers. :param ids: A list of record identifier. :returns: A list of records. """ return self.query(Ids(values=[str(id_) for id_ in ids]))
[ "def", "get_records", "(", "self", ",", "ids", ")", ":", "return", "self", ".", "query", "(", "Ids", "(", "values", "=", "[", "str", "(", "id_", ")", "for", "id_", "in", "ids", "]", ")", ")" ]
Return records by their identifiers. :param ids: A list of record identifier. :returns: A list of records.
[ "Return", "records", "by", "their", "identifiers", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/api.py#L120-L126
inveniosoftware/invenio-search
invenio_search/api.py
RecordsSearch.faceted_search
def faceted_search(cls, query=None, filters=None, search=None): """Return faceted search instance with defaults set. :param query: Elastic DSL query object (``Q``). :param filters: Dictionary with selected facet values. :param search: An instance of ``Search`` class. (default: ``cls()``...
python
def faceted_search(cls, query=None, filters=None, search=None): """Return faceted search instance with defaults set. :param query: Elastic DSL query object (``Q``). :param filters: Dictionary with selected facet values. :param search: An instance of ``Search`` class. (default: ``cls()``...
[ "def", "faceted_search", "(", "cls", ",", "query", "=", "None", ",", "filters", "=", "None", ",", "search", "=", "None", ")", ":", "search_", "=", "search", "or", "cls", "(", ")", "class", "RecordsFacetedSearch", "(", "FacetedSearch", ")", ":", "\"\"\"Pa...
Return faceted search instance with defaults set. :param query: Elastic DSL query object (``Q``). :param filters: Dictionary with selected facet values. :param search: An instance of ``Search`` class. (default: ``cls()``).
[ "Return", "faceted", "search", "instance", "with", "defaults", "set", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/api.py#L129-L155
inveniosoftware/invenio-search
invenio_search/api.py
RecordsSearch.with_preference_param
def with_preference_param(self): """Add the preference param to the ES request and return a new Search. The preference param avoids the bouncing effect with multiple replicas, documented on ES documentation. See: https://www.elastic.co/guide/en/elasticsearch/guide/current /_sear...
python
def with_preference_param(self): """Add the preference param to the ES request and return a new Search. The preference param avoids the bouncing effect with multiple replicas, documented on ES documentation. See: https://www.elastic.co/guide/en/elasticsearch/guide/current /_sear...
[ "def", "with_preference_param", "(", "self", ")", ":", "user_hash", "=", "self", ".", "_get_user_hash", "(", ")", "if", "user_hash", ":", "return", "self", ".", "params", "(", "preference", "=", "user_hash", ")", "return", "self" ]
Add the preference param to the ES request and return a new Search. The preference param avoids the bouncing effect with multiple replicas, documented on ES documentation. See: https://www.elastic.co/guide/en/elasticsearch/guide/current /_search_options.html#_preference for more informa...
[ "Add", "the", "preference", "param", "to", "the", "ES", "request", "and", "return", "a", "new", "Search", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/api.py#L157-L168
inveniosoftware/invenio-search
invenio_search/api.py
RecordsSearch._get_user_agent
def _get_user_agent(self): """Retrieve the request's User-Agent, if available. Taken from Flask Login utils.py. """ user_agent = request.headers.get('User-Agent') if user_agent: user_agent = user_agent.encode('utf-8') return user_agent or ''
python
def _get_user_agent(self): """Retrieve the request's User-Agent, if available. Taken from Flask Login utils.py. """ user_agent = request.headers.get('User-Agent') if user_agent: user_agent = user_agent.encode('utf-8') return user_agent or ''
[ "def", "_get_user_agent", "(", "self", ")", ":", "user_agent", "=", "request", ".", "headers", ".", "get", "(", "'User-Agent'", ")", "if", "user_agent", ":", "user_agent", "=", "user_agent", ".", "encode", "(", "'utf-8'", ")", "return", "user_agent", "or", ...
Retrieve the request's User-Agent, if available. Taken from Flask Login utils.py.
[ "Retrieve", "the", "request", "s", "User", "-", "Agent", "if", "available", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/api.py#L170-L178
inveniosoftware/invenio-search
invenio_search/api.py
RecordsSearch._get_user_hash
def _get_user_hash(self): """Calculate a digest based on request's User-Agent and IP address.""" if request: user_hash = '{ip}-{ua}'.format(ip=request.remote_addr, ua=self._get_user_agent()) alg = hashlib.md5() alg.update(use...
python
def _get_user_hash(self): """Calculate a digest based on request's User-Agent and IP address.""" if request: user_hash = '{ip}-{ua}'.format(ip=request.remote_addr, ua=self._get_user_agent()) alg = hashlib.md5() alg.update(use...
[ "def", "_get_user_hash", "(", "self", ")", ":", "if", "request", ":", "user_hash", "=", "'{ip}-{ua}'", ".", "format", "(", "ip", "=", "request", ".", "remote_addr", ",", "ua", "=", "self", ".", "_get_user_agent", "(", ")", ")", "alg", "=", "hashlib", "...
Calculate a digest based on request's User-Agent and IP address.
[ "Calculate", "a", "digest", "based", "on", "request", "s", "User", "-", "Agent", "and", "IP", "address", "." ]
train
https://github.com/inveniosoftware/invenio-search/blob/19c073d608d4c811f1c5aecb6622402d39715228/invenio_search/api.py#L180-L188
chaoss/grimoirelab-sigils
src/migration/utils.py
beautify
def beautify(filename=None, json_str=None): """Beautify JSON string or file. Keyword arguments: :param filename: use its contents as json string instead of json_str param. :param json_str: json string to be beautified. """ if filename is not None: with open(filename) as json_file: ...
python
def beautify(filename=None, json_str=None): """Beautify JSON string or file. Keyword arguments: :param filename: use its contents as json string instead of json_str param. :param json_str: json string to be beautified. """ if filename is not None: with open(filename) as json_file: ...
[ "def", "beautify", "(", "filename", "=", "None", ",", "json_str", "=", "None", ")", ":", "if", "filename", "is", "not", "None", ":", "with", "open", "(", "filename", ")", "as", "json_file", ":", "json_str", "=", "json", ".", "load", "(", "json_file", ...
Beautify JSON string or file. Keyword arguments: :param filename: use its contents as json string instead of json_str param. :param json_str: json string to be beautified.
[ "Beautify", "JSON", "string", "or", "file", "." ]
train
https://github.com/chaoss/grimoirelab-sigils/blob/33d395195acb316287143a535a2c6e4009bf0528/src/migration/utils.py#L26-L38
chaoss/grimoirelab-sigils
src/migration/utils.py
replace
def replace(pretty, old_str, new_str): """ Replace strings giving some info on where the replacement was done """ out_str = '' line_number = 1 changes = 0 for line in pretty.splitlines(keepends=True): new_line = line.replace(old_str, new_str) if line.find(old_str) != -1: ...
python
def replace(pretty, old_str, new_str): """ Replace strings giving some info on where the replacement was done """ out_str = '' line_number = 1 changes = 0 for line in pretty.splitlines(keepends=True): new_line = line.replace(old_str, new_str) if line.find(old_str) != -1: ...
[ "def", "replace", "(", "pretty", ",", "old_str", ",", "new_str", ")", ":", "out_str", "=", "''", "line_number", "=", "1", "changes", "=", "0", "for", "line", "in", "pretty", ".", "splitlines", "(", "keepends", "=", "True", ")", ":", "new_line", "=", ...
Replace strings giving some info on where the replacement was done
[ "Replace", "strings", "giving", "some", "info", "on", "where", "the", "replacement", "was", "done" ]
train
https://github.com/chaoss/grimoirelab-sigils/blob/33d395195acb316287143a535a2c6e4009bf0528/src/migration/utils.py#L40-L58
praw-dev/prawcore
examples/obtain_refresh_token.py
receive_connection
def receive_connection(): """Wait for and then return a connected socket.. Opens a TCP connection on port 8080, and waits for a single client. """ server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) server.bind(("localhost", 8...
python
def receive_connection(): """Wait for and then return a connected socket.. Opens a TCP connection on port 8080, and waits for a single client. """ server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) server.bind(("localhost", 8...
[ "def", "receive_connection", "(", ")", ":", "server", "=", "socket", ".", "socket", "(", "socket", ".", "AF_INET", ",", "socket", ".", "SOCK_STREAM", ")", "server", ".", "setsockopt", "(", "socket", ".", "SOL_SOCKET", ",", "socket", ".", "SO_REUSEADDR", ",...
Wait for and then return a connected socket.. Opens a TCP connection on port 8080, and waits for a single client.
[ "Wait", "for", "and", "then", "return", "a", "connected", "socket", ".." ]
train
https://github.com/praw-dev/prawcore/blob/b16ae88a1f2bf98095ed6fe64851cb7add7ed752/examples/obtain_refresh_token.py#L19-L31
praw-dev/prawcore
examples/obtain_refresh_token.py
send_message
def send_message(client, message): """Send message to client and close the connection.""" print(message) client.send("HTTP/1.1 200 OK\r\n\r\n{}".format(message).encode("utf-8")) client.close()
python
def send_message(client, message): """Send message to client and close the connection.""" print(message) client.send("HTTP/1.1 200 OK\r\n\r\n{}".format(message).encode("utf-8")) client.close()
[ "def", "send_message", "(", "client", ",", "message", ")", ":", "print", "(", "message", ")", "client", ".", "send", "(", "\"HTTP/1.1 200 OK\\r\\n\\r\\n{}\"", ".", "format", "(", "message", ")", ".", "encode", "(", "\"utf-8\"", ")", ")", "client", ".", "cl...
Send message to client and close the connection.
[ "Send", "message", "to", "client", "and", "close", "the", "connection", "." ]
train
https://github.com/praw-dev/prawcore/blob/b16ae88a1f2bf98095ed6fe64851cb7add7ed752/examples/obtain_refresh_token.py#L34-L38
praw-dev/prawcore
examples/obtain_refresh_token.py
main
def main(): """Provide the program's entry point when directly executed.""" if len(sys.argv) < 2: print("Usage: {} SCOPE...".format(sys.argv[0])) return 1 authenticator = prawcore.TrustedAuthenticator( prawcore.Requestor("prawcore_refresh_token_example"), os.environ["PRAWCOR...
python
def main(): """Provide the program's entry point when directly executed.""" if len(sys.argv) < 2: print("Usage: {} SCOPE...".format(sys.argv[0])) return 1 authenticator = prawcore.TrustedAuthenticator( prawcore.Requestor("prawcore_refresh_token_example"), os.environ["PRAWCOR...
[ "def", "main", "(", ")", ":", "if", "len", "(", "sys", ".", "argv", ")", "<", "2", ":", "print", "(", "\"Usage: {} SCOPE...\"", ".", "format", "(", "sys", ".", "argv", "[", "0", "]", ")", ")", "return", "1", "authenticator", "=", "prawcore", ".", ...
Provide the program's entry point when directly executed.
[ "Provide", "the", "program", "s", "entry", "point", "when", "directly", "executed", "." ]
train
https://github.com/praw-dev/prawcore/blob/b16ae88a1f2bf98095ed6fe64851cb7add7ed752/examples/obtain_refresh_token.py#L41-L82
neo4j-drivers/neobolt
neobolt/diagnostics.py
watch
def watch(logger_name, level=DEBUG, out=stdout): """ Quick wrapper for using the Watcher. :param logger_name: name of logger to watch :param level: minimum log level to show (default INFO) :param out: where to send output (default stdout) :return: Watcher instance """ watcher = Watcher(logg...
python
def watch(logger_name, level=DEBUG, out=stdout): """ Quick wrapper for using the Watcher. :param logger_name: name of logger to watch :param level: minimum log level to show (default INFO) :param out: where to send output (default stdout) :return: Watcher instance """ watcher = Watcher(logg...
[ "def", "watch", "(", "logger_name", ",", "level", "=", "DEBUG", ",", "out", "=", "stdout", ")", ":", "watcher", "=", "Watcher", "(", "logger_name", ")", "watcher", ".", "watch", "(", "level", ",", "out", ")", "return", "watcher" ]
Quick wrapper for using the Watcher. :param logger_name: name of logger to watch :param level: minimum log level to show (default INFO) :param out: where to send output (default stdout) :return: Watcher instance
[ "Quick", "wrapper", "for", "using", "the", "Watcher", "." ]
train
https://github.com/neo4j-drivers/neobolt/blob/724569d76e85777c4f5e30e8d0a18116bda4d8cd/neobolt/diagnostics.py#L80-L90
neo4j-drivers/neobolt
neobolt/meta.py
get_user_agent
def get_user_agent(): """ Obtain the default user agent string sent to the server after a successful handshake. """ from sys import platform, version_info template = "neobolt/{} Python/{}.{}.{}-{}-{} ({})" fields = (version,) + tuple(version_info) + (platform,) return template.format(*fields...
python
def get_user_agent(): """ Obtain the default user agent string sent to the server after a successful handshake. """ from sys import platform, version_info template = "neobolt/{} Python/{}.{}.{}-{}-{} ({})" fields = (version,) + tuple(version_info) + (platform,) return template.format(*fields...
[ "def", "get_user_agent", "(", ")", ":", "from", "sys", "import", "platform", ",", "version_info", "template", "=", "\"neobolt/{} Python/{}.{}.{}-{}-{} ({})\"", "fields", "=", "(", "version", ",", ")", "+", "tuple", "(", "version_info", ")", "+", "(", "platform",...
Obtain the default user agent string sent to the server after a successful handshake.
[ "Obtain", "the", "default", "user", "agent", "string", "sent", "to", "the", "server", "after", "a", "successful", "handshake", "." ]
train
https://github.com/neo4j-drivers/neobolt/blob/724569d76e85777c4f5e30e8d0a18116bda4d8cd/neobolt/meta.py#L26-L33
neo4j-drivers/neobolt
neobolt/meta.py
import_best
def import_best(c_module, py_module): """ Import the best available module, with C preferred to pure Python. """ from importlib import import_module from os import getenv pure_python = getenv("PURE_PYTHON", "") if pure_python: return import_module(py_module) else: try: ...
python
def import_best(c_module, py_module): """ Import the best available module, with C preferred to pure Python. """ from importlib import import_module from os import getenv pure_python = getenv("PURE_PYTHON", "") if pure_python: return import_module(py_module) else: try: ...
[ "def", "import_best", "(", "c_module", ",", "py_module", ")", ":", "from", "importlib", "import", "import_module", "from", "os", "import", "getenv", "pure_python", "=", "getenv", "(", "\"PURE_PYTHON\"", ",", "\"\"", ")", "if", "pure_python", ":", "return", "im...
Import the best available module, with C preferred to pure Python.
[ "Import", "the", "best", "available", "module", "with", "C", "preferred", "to", "pure", "Python", "." ]
train
https://github.com/neo4j-drivers/neobolt/blob/724569d76e85777c4f5e30e8d0a18116bda4d8cd/neobolt/meta.py#L58-L71
neo4j-drivers/neobolt
neobolt/types/__init__.py
PackStreamHydrator.hydrate
def hydrate(self, values): """ Convert PackStream values into native values. """ def hydrate_(obj): if isinstance(obj, Structure): try: f = self.hydration_functions[obj.tag] except KeyError: # If we don't recogn...
python
def hydrate(self, values): """ Convert PackStream values into native values. """ def hydrate_(obj): if isinstance(obj, Structure): try: f = self.hydration_functions[obj.tag] except KeyError: # If we don't recogn...
[ "def", "hydrate", "(", "self", ",", "values", ")", ":", "def", "hydrate_", "(", "obj", ")", ":", "if", "isinstance", "(", "obj", ",", "Structure", ")", ":", "try", ":", "f", "=", "self", ".", "hydration_functions", "[", "obj", ".", "tag", "]", "exc...
Convert PackStream values into native values.
[ "Convert", "PackStream", "values", "into", "native", "values", "." ]
train
https://github.com/neo4j-drivers/neobolt/blob/724569d76e85777c4f5e30e8d0a18116bda4d8cd/neobolt/types/__init__.py#L97-L117
praw-dev/prawcore
prawcore/auth.py
BaseAuthenticator.authorize_url
def authorize_url(self, duration, scopes, state, implicit=False): """Return the URL used out-of-band to grant access to your application. :param duration: Either ``permanent`` or ``temporary``. ``temporary`` authorizations generate access tokens that last only 1 hour. ``permanen...
python
def authorize_url(self, duration, scopes, state, implicit=False): """Return the URL used out-of-band to grant access to your application. :param duration: Either ``permanent`` or ``temporary``. ``temporary`` authorizations generate access tokens that last only 1 hour. ``permanen...
[ "def", "authorize_url", "(", "self", ",", "duration", ",", "scopes", ",", "state", ",", "implicit", "=", "False", ")", ":", "if", "self", ".", "redirect_uri", "is", "None", ":", "raise", "InvalidInvocation", "(", "\"redirect URI not provided\"", ")", "if", "...
Return the URL used out-of-band to grant access to your application. :param duration: Either ``permanent`` or ``temporary``. ``temporary`` authorizations generate access tokens that last only 1 hour. ``permanent`` authorizations additionally generate a refresh token that can...
[ "Return", "the", "URL", "used", "out", "-", "of", "-", "band", "to", "grant", "access", "to", "your", "application", "." ]
train
https://github.com/praw-dev/prawcore/blob/b16ae88a1f2bf98095ed6fe64851cb7add7ed752/prawcore/auth.py#L35-L75
praw-dev/prawcore
prawcore/auth.py
BaseAuthenticator.revoke_token
def revoke_token(self, token, token_type=None): """Ask Reddit to revoke the provided token. :param token: The access or refresh token to revoke. :param token_type: (Optional) When provided, hint to Reddit what the token type is for a possible efficiency gain. The value can be ...
python
def revoke_token(self, token, token_type=None): """Ask Reddit to revoke the provided token. :param token: The access or refresh token to revoke. :param token_type: (Optional) When provided, hint to Reddit what the token type is for a possible efficiency gain. The value can be ...
[ "def", "revoke_token", "(", "self", ",", "token", ",", "token_type", "=", "None", ")", ":", "data", "=", "{", "\"token\"", ":", "token", "}", "if", "token_type", "is", "not", "None", ":", "data", "[", "\"token_type_hint\"", "]", "=", "token_type", "url",...
Ask Reddit to revoke the provided token. :param token: The access or refresh token to revoke. :param token_type: (Optional) When provided, hint to Reddit what the token type is for a possible efficiency gain. The value can be either ``access_token`` or ``refresh_token``.
[ "Ask", "Reddit", "to", "revoke", "the", "provided", "token", "." ]
train
https://github.com/praw-dev/prawcore/blob/b16ae88a1f2bf98095ed6fe64851cb7add7ed752/prawcore/auth.py#L77-L90
praw-dev/prawcore
prawcore/auth.py
BaseAuthorizer.revoke
def revoke(self): """Revoke the current Authorization.""" if self.access_token is None: raise InvalidInvocation("no token available to revoke") self._authenticator.revoke_token(self.access_token, "access_token") self._clear_access_token()
python
def revoke(self): """Revoke the current Authorization.""" if self.access_token is None: raise InvalidInvocation("no token available to revoke") self._authenticator.revoke_token(self.access_token, "access_token") self._clear_access_token()
[ "def", "revoke", "(", "self", ")", ":", "if", "self", ".", "access_token", "is", "None", ":", "raise", "InvalidInvocation", "(", "\"no token available to revoke\"", ")", "self", ".", "_authenticator", ".", "revoke_token", "(", "self", ".", "access_token", ",", ...
Revoke the current Authorization.
[ "Revoke", "the", "current", "Authorization", "." ]
train
https://github.com/praw-dev/prawcore/blob/b16ae88a1f2bf98095ed6fe64851cb7add7ed752/prawcore/auth.py#L184-L190
praw-dev/prawcore
prawcore/auth.py
Authorizer.authorize
def authorize(self, code): """Obtain and set authorization tokens based on ``code``. :param code: The code obtained by an out-of-band authorization request to Reddit. """ if self._authenticator.redirect_uri is None: raise InvalidInvocation("redirect URI not prov...
python
def authorize(self, code): """Obtain and set authorization tokens based on ``code``. :param code: The code obtained by an out-of-band authorization request to Reddit. """ if self._authenticator.redirect_uri is None: raise InvalidInvocation("redirect URI not prov...
[ "def", "authorize", "(", "self", ",", "code", ")", ":", "if", "self", ".", "_authenticator", ".", "redirect_uri", "is", "None", ":", "raise", "InvalidInvocation", "(", "\"redirect URI not provided\"", ")", "self", ".", "_request_token", "(", "code", "=", "code...
Obtain and set authorization tokens based on ``code``. :param code: The code obtained by an out-of-band authorization request to Reddit.
[ "Obtain", "and", "set", "authorization", "tokens", "based", "on", "code", "." ]
train
https://github.com/praw-dev/prawcore/blob/b16ae88a1f2bf98095ed6fe64851cb7add7ed752/prawcore/auth.py#L210-L223