crime_data/resources/offenders.py
import jsonfrom webargs.flaskparser import use_argsfrom crime_data.extensions import DEFAULT_MAX_AGEfrom flask.ext.cachecontrol import cache from crime_data.common import cdemodels, marshmallow_schemasfrom crime_data.common.base import CdeResource, tuning_page, ExplorerOffenseMapping # Template# variables => [location_type, offense_type, property_type, age, sex, race] def _is_string(col): col0 = list(col.base_columns)[0] return issubclass(col0.type.python_type, str) class OffendersCountNational(CdeResource): schema = False def _stringify(self, data): # Override stringify function to fit our needs. return [dict(r) for r in data] @use_args(marshmallow_schemas.IncidentViewCountArgs) @cache(max_age=DEFAULT_MAX_AGE, public=True) @tuning_page def get(self, args, variable): self.verify_api_key(args) model = cdemodels.OffenderCountView(variable, year=args['year']) results = model.query(args) return self.with_metadata(results.fetchall(), args, self.schema) class OffendersCountStates(CdeResource): schema = False def _stringify(self, data): # Override stringify function to fit our needs. return [dict(r) for r in data] @use_args(marshmallow_schemas.IncidentViewCountArgs) @cache(max_age=DEFAULT_MAX_AGE, public=True) @tuning_page def get(self, args, state_id=None, state_abbr=None, variable=None): self.verify_api_key(args) model = cdemodels.OffenderCountView(variable, year=args['year'], state_id=state_id, state_abbr=state_abbr) results = model.query(args) return self.with_metadata(results.fetchall(), args, self.schema) class OffendersCountAgencies(CdeResource): schema = False def _stringify(self, data): # Override stringify function to fit our needs. return [dict(r) for r in data] @use_args(marshmallow_schemas.IncidentViewCountArgs) @cache(max_age=DEFAULT_MAX_AGE, public=True) @tuning_page def get(self, args, ori, variable): self.verify_api_key(args) model = cdemodels.OffenderCountView(variable, year=args['year'], ori=ori) results = model.query(args) return self.with_metadata(results.fetchall(), args, self.schema) class OffenderOffenseSubcounts(CdeResource): schema = False def _stringify(self, data): # Override stringify function to fit our needs. return [dict(r) for r in data] @use_args(marshmallow_schemas.OffenseCountViewArgs) @cache(max_age=DEFAULT_MAX_AGE, public=True) @tuning_pageFunction `get` has 5 arguments (exceeds 4 allowed). Consider refactoring. def get(self, args, variable, state_id=None, state_abbr=None, ori=None): self.verify_api_key(args) model = cdemodels.OffenseOffenderCountView(variable, year=args.get('year', None), ori=ori, offense_name=args.get('offense_name', None), explorer_offense=args.get('explorer_offense', None), state_id=state_id, state_abbr=state_abbr) results = model.query(args) return self.with_metadata(results.fetchall(), args, self.schema)