id
int32
0
252k
repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
7,100
tchellomello/python-arlo
pyarlo/__init__.py
PyArlo.lookup_camera_by_id
def lookup_camera_by_id(self, device_id): """Return camera object by device_id.""" camera = list(filter( lambda cam: cam.device_id == device_id, self.cameras))[0] if camera: return camera return None
python
def lookup_camera_by_id(self, device_id): """Return camera object by device_id.""" camera = list(filter( lambda cam: cam.device_id == device_id, self.cameras))[0] if camera: return camera return None
[ "def", "lookup_camera_by_id", "(", "self", ",", "device_id", ")", ":", "camera", "=", "list", "(", "filter", "(", "lambda", "cam", ":", "cam", ".", "device_id", "==", "device_id", ",", "self", ".", "cameras", ")", ")", "[", "0", "]", "if", "camera", ...
Return camera object by device_id.
[ "Return", "camera", "object", "by", "device_id", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/__init__.py#L200-L206
7,101
tchellomello/python-arlo
pyarlo/__init__.py
PyArlo.refresh_attributes
def refresh_attributes(self, name): """Refresh attributes from a given Arlo object.""" url = DEVICES_ENDPOINT response = self.query(url) if not response or not isinstance(response, dict): return None for device in response.get('data'): if device.get('dev...
python
def refresh_attributes(self, name): """Refresh attributes from a given Arlo object.""" url = DEVICES_ENDPOINT response = self.query(url) if not response or not isinstance(response, dict): return None for device in response.get('data'): if device.get('dev...
[ "def", "refresh_attributes", "(", "self", ",", "name", ")", ":", "url", "=", "DEVICES_ENDPOINT", "response", "=", "self", ".", "query", "(", "url", ")", "if", "not", "response", "or", "not", "isinstance", "(", "response", ",", "dict", ")", ":", "return",...
Refresh attributes from a given Arlo object.
[ "Refresh", "attributes", "from", "a", "given", "Arlo", "object", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/__init__.py#L208-L219
7,102
tchellomello/python-arlo
pyarlo/__init__.py
PyArlo.update
def update(self, update_cameras=False, update_base_station=False): """Refresh object.""" self._authenticate() # update attributes in all cameras to avoid duped queries if update_cameras: url = DEVICES_ENDPOINT response = self.query(url) if not respons...
python
def update(self, update_cameras=False, update_base_station=False): """Refresh object.""" self._authenticate() # update attributes in all cameras to avoid duped queries if update_cameras: url = DEVICES_ENDPOINT response = self.query(url) if not respons...
[ "def", "update", "(", "self", ",", "update_cameras", "=", "False", ",", "update_base_station", "=", "False", ")", ":", "self", ".", "_authenticate", "(", ")", "# update attributes in all cameras to avoid duped queries", "if", "update_cameras", ":", "url", "=", "DEVI...
Refresh object.
[ "Refresh", "object", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/__init__.py#L249-L274
7,103
tchellomello/python-arlo
pyarlo/media.py
ArloMediaLibrary.load
def load(self, days=PRELOAD_DAYS, only_cameras=None, date_from=None, date_to=None, limit=None): """Load Arlo videos from the given criteria :param days: number of days to retrieve :param only_cameras: retrieve only <ArloCamera> on that list :param date_from: refine from in...
python
def load(self, days=PRELOAD_DAYS, only_cameras=None, date_from=None, date_to=None, limit=None): """Load Arlo videos from the given criteria :param days: number of days to retrieve :param only_cameras: retrieve only <ArloCamera> on that list :param date_from: refine from in...
[ "def", "load", "(", "self", ",", "days", "=", "PRELOAD_DAYS", ",", "only_cameras", "=", "None", ",", "date_from", "=", "None", ",", "date_to", "=", "None", ",", "limit", "=", "None", ")", ":", "videos", "=", "[", "]", "url", "=", "LIBRARY_ENDPOINT", ...
Load Arlo videos from the given criteria :param days: number of days to retrieve :param only_cameras: retrieve only <ArloCamera> on that list :param date_from: refine from initial date :param date_to: refine final date :param limit: define number of objects to return
[ "Load", "Arlo", "videos", "from", "the", "given", "criteria" ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/media.py#L38-L87
7,104
tchellomello/python-arlo
pyarlo/media.py
ArloVideo._name
def _name(self): """Define object name.""" return "{0} {1} {2}".format( self._camera.name, pretty_timestamp(self.created_at), self._attrs.get('mediaDuration'))
python
def _name(self): """Define object name.""" return "{0} {1} {2}".format( self._camera.name, pretty_timestamp(self.created_at), self._attrs.get('mediaDuration'))
[ "def", "_name", "(", "self", ")", ":", "return", "\"{0} {1} {2}\"", ".", "format", "(", "self", ".", "_camera", ".", "name", ",", "pretty_timestamp", "(", "self", ".", "created_at", ")", ",", "self", ".", "_attrs", ".", "get", "(", "'mediaDuration'", ")"...
Define object name.
[ "Define", "object", "name", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/media.py#L110-L115
7,105
tchellomello/python-arlo
pyarlo/media.py
ArloVideo.created_at_pretty
def created_at_pretty(self, date_format=None): """Return pretty timestamp.""" if date_format: return pretty_timestamp(self.created_at, date_format=date_format) return pretty_timestamp(self.created_at)
python
def created_at_pretty(self, date_format=None): """Return pretty timestamp.""" if date_format: return pretty_timestamp(self.created_at, date_format=date_format) return pretty_timestamp(self.created_at)
[ "def", "created_at_pretty", "(", "self", ",", "date_format", "=", "None", ")", ":", "if", "date_format", ":", "return", "pretty_timestamp", "(", "self", ".", "created_at", ",", "date_format", "=", "date_format", ")", "return", "pretty_timestamp", "(", "self", ...
Return pretty timestamp.
[ "Return", "pretty", "timestamp", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/media.py#L132-L136
7,106
tchellomello/python-arlo
pyarlo/media.py
ArloVideo.created_today
def created_today(self): """Return True if created today.""" if self.datetime.date() == datetime.today().date(): return True return False
python
def created_today(self): """Return True if created today.""" if self.datetime.date() == datetime.today().date(): return True return False
[ "def", "created_today", "(", "self", ")", ":", "if", "self", ".", "datetime", ".", "date", "(", ")", "==", "datetime", ".", "today", "(", ")", ".", "date", "(", ")", ":", "return", "True", "return", "False" ]
Return True if created today.
[ "Return", "True", "if", "created", "today", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/media.py#L139-L143
7,107
tchellomello/python-arlo
pyarlo/utils.py
to_datetime
def to_datetime(timestamp): """Return datetime object from timestamp.""" return dt.fromtimestamp(time.mktime( time.localtime(int(str(timestamp)[:10]))))
python
def to_datetime(timestamp): """Return datetime object from timestamp.""" return dt.fromtimestamp(time.mktime( time.localtime(int(str(timestamp)[:10]))))
[ "def", "to_datetime", "(", "timestamp", ")", ":", "return", "dt", ".", "fromtimestamp", "(", "time", ".", "mktime", "(", "time", ".", "localtime", "(", "int", "(", "str", "(", "timestamp", ")", "[", ":", "10", "]", ")", ")", ")", ")" ]
Return datetime object from timestamp.
[ "Return", "datetime", "object", "from", "timestamp", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/utils.py#L11-L14
7,108
tchellomello/python-arlo
pyarlo/utils.py
pretty_timestamp
def pretty_timestamp(timestamp, date_format='%a-%m_%d_%y:%H:%M:%S'): """Huminize timestamp.""" return time.strftime(date_format, time.localtime(int(str(timestamp)[:10])))
python
def pretty_timestamp(timestamp, date_format='%a-%m_%d_%y:%H:%M:%S'): """Huminize timestamp.""" return time.strftime(date_format, time.localtime(int(str(timestamp)[:10])))
[ "def", "pretty_timestamp", "(", "timestamp", ",", "date_format", "=", "'%a-%m_%d_%y:%H:%M:%S'", ")", ":", "return", "time", ".", "strftime", "(", "date_format", ",", "time", ".", "localtime", "(", "int", "(", "str", "(", "timestamp", ")", "[", ":", "10", "...
Huminize timestamp.
[ "Huminize", "timestamp", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/utils.py#L17-L20
7,109
tchellomello/python-arlo
pyarlo/utils.py
http_get
def http_get(url, filename=None): """Download HTTP data.""" try: ret = requests.get(url) except requests.exceptions.SSLError as error: _LOGGER.error(error) return False if ret.status_code != 200: return False if filename is None: return ret.content with...
python
def http_get(url, filename=None): """Download HTTP data.""" try: ret = requests.get(url) except requests.exceptions.SSLError as error: _LOGGER.error(error) return False if ret.status_code != 200: return False if filename is None: return ret.content with...
[ "def", "http_get", "(", "url", ",", "filename", "=", "None", ")", ":", "try", ":", "ret", "=", "requests", ".", "get", "(", "url", ")", "except", "requests", ".", "exceptions", ".", "SSLError", "as", "error", ":", "_LOGGER", ".", "error", "(", "error...
Download HTTP data.
[ "Download", "HTTP", "data", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/utils.py#L23-L39
7,110
tchellomello/python-arlo
pyarlo/utils.py
http_stream
def http_stream(url, chunk=4096): """Generate stream for a given record video. :param chunk: chunk bytes to read per time :returns generator object """ ret = requests.get(url, stream=True) ret.raise_for_status() for data in ret.iter_content(chunk): yield data
python
def http_stream(url, chunk=4096): """Generate stream for a given record video. :param chunk: chunk bytes to read per time :returns generator object """ ret = requests.get(url, stream=True) ret.raise_for_status() for data in ret.iter_content(chunk): yield data
[ "def", "http_stream", "(", "url", ",", "chunk", "=", "4096", ")", ":", "ret", "=", "requests", ".", "get", "(", "url", ",", "stream", "=", "True", ")", "ret", ".", "raise_for_status", "(", ")", "for", "data", "in", "ret", ".", "iter_content", "(", ...
Generate stream for a given record video. :param chunk: chunk bytes to read per time :returns generator object
[ "Generate", "stream", "for", "a", "given", "record", "video", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/utils.py#L42-L51
7,111
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.unseen_videos_reset
def unseen_videos_reset(self): """Reset the unseen videos counter.""" url = RESET_CAM_ENDPOINT.format(self.unique_id) ret = self._session.query(url).get('success') return ret
python
def unseen_videos_reset(self): """Reset the unseen videos counter.""" url = RESET_CAM_ENDPOINT.format(self.unique_id) ret = self._session.query(url).get('success') return ret
[ "def", "unseen_videos_reset", "(", "self", ")", ":", "url", "=", "RESET_CAM_ENDPOINT", ".", "format", "(", "self", ".", "unique_id", ")", "ret", "=", "self", ".", "_session", ".", "query", "(", "url", ")", ".", "get", "(", "'success'", ")", "return", "...
Reset the unseen videos counter.
[ "Reset", "the", "unseen", "videos", "counter", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L128-L132
7,112
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.make_video_cache
def make_video_cache(self, days=None): """Save videos on _cache_videos to avoid dups.""" if days is None: days = self._min_days_vdo_cache self._cached_videos = self.videos(days)
python
def make_video_cache(self, days=None): """Save videos on _cache_videos to avoid dups.""" if days is None: days = self._min_days_vdo_cache self._cached_videos = self.videos(days)
[ "def", "make_video_cache", "(", "self", ",", "days", "=", "None", ")", ":", "if", "days", "is", "None", ":", "days", "=", "self", ".", "_min_days_vdo_cache", "self", ".", "_cached_videos", "=", "self", ".", "videos", "(", "days", ")" ]
Save videos on _cache_videos to avoid dups.
[ "Save", "videos", "on", "_cache_videos", "to", "avoid", "dups", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L171-L175
7,113
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.base_station
def base_station(self): """Return the base_station assigned for the given camera.""" try: return list(filter(lambda x: x.device_id == self.parent_id, self._session.base_stations))[0] except (IndexError, AttributeError): return None
python
def base_station(self): """Return the base_station assigned for the given camera.""" try: return list(filter(lambda x: x.device_id == self.parent_id, self._session.base_stations))[0] except (IndexError, AttributeError): return None
[ "def", "base_station", "(", "self", ")", ":", "try", ":", "return", "list", "(", "filter", "(", "lambda", "x", ":", "x", ".", "device_id", "==", "self", ".", "parent_id", ",", "self", ".", "_session", ".", "base_stations", ")", ")", "[", "0", "]", ...
Return the base_station assigned for the given camera.
[ "Return", "the", "base_station", "assigned", "for", "the", "given", "camera", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L216-L222
7,114
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera._get_camera_properties
def _get_camera_properties(self): """Lookup camera properties from base station.""" if self.base_station and self.base_station.camera_properties: for cam in self.base_station.camera_properties: if cam["serialNumber"] == self.device_id: return cam r...
python
def _get_camera_properties(self): """Lookup camera properties from base station.""" if self.base_station and self.base_station.camera_properties: for cam in self.base_station.camera_properties: if cam["serialNumber"] == self.device_id: return cam r...
[ "def", "_get_camera_properties", "(", "self", ")", ":", "if", "self", ".", "base_station", "and", "self", ".", "base_station", ".", "camera_properties", ":", "for", "cam", "in", "self", ".", "base_station", ".", "camera_properties", ":", "if", "cam", "[", "\...
Lookup camera properties from base station.
[ "Lookup", "camera", "properties", "from", "base", "station", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L224-L230
7,115
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.triggers
def triggers(self): """Get a camera's triggers.""" capabilities = self.capabilities if not capabilities: return None for capability in capabilities: if not isinstance(capability, dict): continue triggers = capability.get("Triggers") ...
python
def triggers(self): """Get a camera's triggers.""" capabilities = self.capabilities if not capabilities: return None for capability in capabilities: if not isinstance(capability, dict): continue triggers = capability.get("Triggers") ...
[ "def", "triggers", "(", "self", ")", ":", "capabilities", "=", "self", ".", "capabilities", "if", "not", "capabilities", ":", "return", "None", "for", "capability", "in", "capabilities", ":", "if", "not", "isinstance", "(", "capability", ",", "dict", ")", ...
Get a camera's triggers.
[ "Get", "a", "camera", "s", "triggers", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L244-L258
7,116
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.motion_detection_sensitivity
def motion_detection_sensitivity(self): """Sensitivity level of Camera motion detection.""" if not self.triggers: return None for trigger in self.triggers: if trigger.get("type") != "pirMotionActive": continue sensitivity = trigger.get("sensi...
python
def motion_detection_sensitivity(self): """Sensitivity level of Camera motion detection.""" if not self.triggers: return None for trigger in self.triggers: if trigger.get("type") != "pirMotionActive": continue sensitivity = trigger.get("sensi...
[ "def", "motion_detection_sensitivity", "(", "self", ")", ":", "if", "not", "self", ".", "triggers", ":", "return", "None", "for", "trigger", "in", "self", ".", "triggers", ":", "if", "trigger", ".", "get", "(", "\"type\"", ")", "!=", "\"pirMotionActive\"", ...
Sensitivity level of Camera motion detection.
[ "Sensitivity", "level", "of", "Camera", "motion", "detection", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L304-L317
7,117
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.audio_detection_sensitivity
def audio_detection_sensitivity(self): """Sensitivity level of Camera audio detection.""" if not self.triggers: return None for trigger in self.triggers: if trigger.get("type") != "audioAmplitude": continue sensitivity = trigger.get("sensitiv...
python
def audio_detection_sensitivity(self): """Sensitivity level of Camera audio detection.""" if not self.triggers: return None for trigger in self.triggers: if trigger.get("type") != "audioAmplitude": continue sensitivity = trigger.get("sensitiv...
[ "def", "audio_detection_sensitivity", "(", "self", ")", ":", "if", "not", "self", ".", "triggers", ":", "return", "None", "for", "trigger", "in", "self", ".", "triggers", ":", "if", "trigger", ".", "get", "(", "\"type\"", ")", "!=", "\"audioAmplitude\"", "...
Sensitivity level of Camera audio detection.
[ "Sensitivity", "level", "of", "Camera", "audio", "detection", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L320-L333
7,118
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.live_streaming
def live_streaming(self): """Return live streaming generator.""" url = STREAM_ENDPOINT # override params params = STREAMING_BODY params['from'] = "{0}_web".format(self.user_id) params['to'] = self.device_id params['resource'] = "cameras/{0}".format(self.device_id...
python
def live_streaming(self): """Return live streaming generator.""" url = STREAM_ENDPOINT # override params params = STREAMING_BODY params['from'] = "{0}_web".format(self.user_id) params['to'] = self.device_id params['resource'] = "cameras/{0}".format(self.device_id...
[ "def", "live_streaming", "(", "self", ")", ":", "url", "=", "STREAM_ENDPOINT", "# override params", "params", "=", "STREAMING_BODY", "params", "[", "'from'", "]", "=", "\"{0}_web\"", ".", "format", "(", "self", ".", "user_id", ")", "params", "[", "'to'", "]"...
Return live streaming generator.
[ "Return", "live", "streaming", "generator", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L335-L361
7,119
tchellomello/python-arlo
pyarlo/camera.py
ArloCamera.schedule_snapshot
def schedule_snapshot(self): """Trigger snapshot to be uploaded to AWS. Return success state.""" # Notes: # - Snapshots are not immediate. # - Snapshots will be cached for predefined amount # of time. # - Snapshots are not balanced. To get a better #...
python
def schedule_snapshot(self): """Trigger snapshot to be uploaded to AWS. Return success state.""" # Notes: # - Snapshots are not immediate. # - Snapshots will be cached for predefined amount # of time. # - Snapshots are not balanced. To get a better #...
[ "def", "schedule_snapshot", "(", "self", ")", ":", "# Notes:", "# - Snapshots are not immediate.", "# - Snapshots will be cached for predefined amount", "# of time.", "# - Snapshots are not balanced. To get a better", "# image, it must be taken from the stream, a few", "# seconds...
Trigger snapshot to be uploaded to AWS. Return success state.
[ "Trigger", "snapshot", "to", "be", "uploaded", "to", "AWS", ".", "Return", "success", "state", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/camera.py#L374-L405
7,120
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.thread_function
def thread_function(self): """Thread function.""" self.__subscribed = True url = SUBSCRIBE_ENDPOINT + "?token=" + self._session_token data = self._session.query(url, method='GET', raw=True, stream=True) if not data or not data.ok: _LOGGER.debug("Did not receive a va...
python
def thread_function(self): """Thread function.""" self.__subscribed = True url = SUBSCRIBE_ENDPOINT + "?token=" + self._session_token data = self._session.query(url, method='GET', raw=True, stream=True) if not data or not data.ok: _LOGGER.debug("Did not receive a va...
[ "def", "thread_function", "(", "self", ")", ":", "self", ".", "__subscribed", "=", "True", "url", "=", "SUBSCRIBE_ENDPOINT", "+", "\"?token=\"", "+", "self", ".", "_session_token", "data", "=", "self", ".", "_session", ".", "query", "(", "url", ",", "metho...
Thread function.
[ "Thread", "function", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L55-L90
7,121
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation._get_event_stream
def _get_event_stream(self): """Spawn a thread and monitor the Arlo Event Stream.""" self.__event_handle = threading.Event() event_thread = threading.Thread(target=self.thread_function) event_thread.start()
python
def _get_event_stream(self): """Spawn a thread and monitor the Arlo Event Stream.""" self.__event_handle = threading.Event() event_thread = threading.Thread(target=self.thread_function) event_thread.start()
[ "def", "_get_event_stream", "(", "self", ")", ":", "self", ".", "__event_handle", "=", "threading", ".", "Event", "(", ")", "event_thread", "=", "threading", ".", "Thread", "(", "target", "=", "self", ".", "thread_function", ")", "event_thread", ".", "start"...
Spawn a thread and monitor the Arlo Event Stream.
[ "Spawn", "a", "thread", "and", "monitor", "the", "Arlo", "Event", "Stream", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L92-L96
7,122
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation._unsubscribe_myself
def _unsubscribe_myself(self): """Unsubscribe this base station for all events.""" url = UNSUBSCRIBE_ENDPOINT return self._session.query(url, method='GET', raw=True, stream=False)
python
def _unsubscribe_myself(self): """Unsubscribe this base station for all events.""" url = UNSUBSCRIBE_ENDPOINT return self._session.query(url, method='GET', raw=True, stream=False)
[ "def", "_unsubscribe_myself", "(", "self", ")", ":", "url", "=", "UNSUBSCRIBE_ENDPOINT", "return", "self", ".", "_session", ".", "query", "(", "url", ",", "method", "=", "'GET'", ",", "raw", "=", "True", ",", "stream", "=", "False", ")" ]
Unsubscribe this base station for all events.
[ "Unsubscribe", "this", "base", "station", "for", "all", "events", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L106-L109
7,123
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation._close_event_stream
def _close_event_stream(self): """Stop the Event stream thread.""" self.__subscribed = False del self.__events[:] self.__event_handle.clear()
python
def _close_event_stream(self): """Stop the Event stream thread.""" self.__subscribed = False del self.__events[:] self.__event_handle.clear()
[ "def", "_close_event_stream", "(", "self", ")", ":", "self", ".", "__subscribed", "=", "False", "del", "self", ".", "__events", "[", ":", "]", "self", ".", "__event_handle", ".", "clear", "(", ")" ]
Stop the Event stream thread.
[ "Stop", "the", "Event", "stream", "thread", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L111-L115
7,124
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.publish_and_get_event
def publish_and_get_event(self, resource): """Publish and get the event from base station.""" l_subscribed = False this_event = None if not self.__subscribed: self._get_event_stream() self._subscribe_myself() l_subscribed = True status = self...
python
def publish_and_get_event(self, resource): """Publish and get the event from base station.""" l_subscribed = False this_event = None if not self.__subscribed: self._get_event_stream() self._subscribe_myself() l_subscribed = True status = self...
[ "def", "publish_and_get_event", "(", "self", ",", "resource", ")", ":", "l_subscribed", "=", "False", "this_event", "=", "None", "if", "not", "self", ".", "__subscribed", ":", "self", ".", "_get_event_stream", "(", ")", "self", ".", "_subscribe_myself", "(", ...
Publish and get the event from base station.
[ "Publish", "and", "get", "the", "event", "from", "base", "station", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L117-L151
7,125
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.publish
def publish( self, action='get', resource=None, camera_id=None, mode=None, publish_response=None, properties=None): """Run action. :param method: Specify the method GET, POST or PUT. Default is GET. :param resou...
python
def publish( self, action='get', resource=None, camera_id=None, mode=None, publish_response=None, properties=None): """Run action. :param method: Specify the method GET, POST or PUT. Default is GET. :param resou...
[ "def", "publish", "(", "self", ",", "action", "=", "'get'", ",", "resource", "=", "None", ",", "camera_id", "=", "None", ",", "mode", "=", "None", ",", "publish_response", "=", "None", ",", "properties", "=", "None", ")", ":", "url", "=", "NOTIFY_ENDPO...
Run action. :param method: Specify the method GET, POST or PUT. Default is GET. :param resource: Specify one of the resources to fetch from arlo. :param camera_id: Specify the camera ID involved with this action :param mode: Specify the mode to set, else None for GET operations ...
[ "Run", "action", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L153-L215
7,126
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.refresh_rate
def refresh_rate(self, value): """Override the refresh_rate attribute.""" if isinstance(value, (int, float)): self._refresh_rate = value
python
def refresh_rate(self, value): """Override the refresh_rate attribute.""" if isinstance(value, (int, float)): self._refresh_rate = value
[ "def", "refresh_rate", "(", "self", ",", "value", ")", ":", "if", "isinstance", "(", "value", ",", "(", "int", ",", "float", ")", ")", ":", "self", ".", "_refresh_rate", "=", "value" ]
Override the refresh_rate attribute.
[ "Override", "the", "refresh_rate", "attribute", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L299-L302
7,127
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.available_modes
def available_modes(self): """Return list of available mode names.""" if not self._available_modes: modes = self.available_modes_with_ids if not modes: return None self._available_modes = list(modes.keys()) return self._available_modes
python
def available_modes(self): """Return list of available mode names.""" if not self._available_modes: modes = self.available_modes_with_ids if not modes: return None self._available_modes = list(modes.keys()) return self._available_modes
[ "def", "available_modes", "(", "self", ")", ":", "if", "not", "self", ".", "_available_modes", ":", "modes", "=", "self", ".", "available_modes_with_ids", "if", "not", "modes", ":", "return", "None", "self", ".", "_available_modes", "=", "list", "(", "modes"...
Return list of available mode names.
[ "Return", "list", "of", "available", "mode", "names", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L305-L312
7,128
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.available_modes_with_ids
def available_modes_with_ids(self): """Return list of objects containing available mode name and id.""" if not self._available_mode_ids: all_modes = FIXED_MODES.copy() self._available_mode_ids = all_modes modes = self.get_available_modes() try: ...
python
def available_modes_with_ids(self): """Return list of objects containing available mode name and id.""" if not self._available_mode_ids: all_modes = FIXED_MODES.copy() self._available_mode_ids = all_modes modes = self.get_available_modes() try: ...
[ "def", "available_modes_with_ids", "(", "self", ")", ":", "if", "not", "self", ".", "_available_mode_ids", ":", "all_modes", "=", "FIXED_MODES", ".", "copy", "(", ")", "self", ".", "_available_mode_ids", "=", "all_modes", "modes", "=", "self", ".", "get_availa...
Return list of objects containing available mode name and id.
[ "Return", "list", "of", "objects", "containing", "available", "mode", "name", "and", "id", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L315-L332
7,129
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.mode
def mode(self): """Return current mode key.""" if self.is_in_schedule_mode: return "schedule" resource = "modes" mode_event = self.publish_and_get_event(resource) if mode_event: properties = mode_event.get('properties') active_mode = properti...
python
def mode(self): """Return current mode key.""" if self.is_in_schedule_mode: return "schedule" resource = "modes" mode_event = self.publish_and_get_event(resource) if mode_event: properties = mode_event.get('properties') active_mode = properti...
[ "def", "mode", "(", "self", ")", ":", "if", "self", ".", "is_in_schedule_mode", ":", "return", "\"schedule\"", "resource", "=", "\"modes\"", "mode_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "mode_event", ":", "properties", "...
Return current mode key.
[ "Return", "current", "mode", "key", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L340-L359
7,130
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.is_in_schedule_mode
def is_in_schedule_mode(self): """Returns True if base_station is currently on a scheduled mode.""" resource = "schedule" mode_event = self.publish_and_get_event(resource) if mode_event and mode_event.get("resource", None) == "schedule": properties = mode_event.get('propertie...
python
def is_in_schedule_mode(self): """Returns True if base_station is currently on a scheduled mode.""" resource = "schedule" mode_event = self.publish_and_get_event(resource) if mode_event and mode_event.get("resource", None) == "schedule": properties = mode_event.get('propertie...
[ "def", "is_in_schedule_mode", "(", "self", ")", ":", "resource", "=", "\"schedule\"", "mode_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "mode_event", "and", "mode_event", ".", "get", "(", "\"resource\"", ",", "None", ")", "==...
Returns True if base_station is currently on a scheduled mode.
[ "Returns", "True", "if", "base_station", "is", "currently", "on", "a", "scheduled", "mode", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L362-L369
7,131
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_available_modes
def get_available_modes(self): """Return a list of available mode objects for an Arlo user.""" resource = "modes" resource_event = self.publish_and_get_event(resource) if resource_event: properties = resource_event.get("properties") return properties.get("modes") ...
python
def get_available_modes(self): """Return a list of available mode objects for an Arlo user.""" resource = "modes" resource_event = self.publish_and_get_event(resource) if resource_event: properties = resource_event.get("properties") return properties.get("modes") ...
[ "def", "get_available_modes", "(", "self", ")", ":", "resource", "=", "\"modes\"", "resource_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "resource_event", ":", "properties", "=", "resource_event", ".", "get", "(", "\"properties\"...
Return a list of available mode objects for an Arlo user.
[ "Return", "a", "list", "of", "available", "mode", "objects", "for", "an", "Arlo", "user", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L371-L379
7,132
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_cameras_properties
def get_cameras_properties(self): """Return camera properties.""" resource = "cameras" resource_event = self.publish_and_get_event(resource) if resource_event: self._last_refresh = int(time.time()) self._camera_properties = resource_event.get('properties')
python
def get_cameras_properties(self): """Return camera properties.""" resource = "cameras" resource_event = self.publish_and_get_event(resource) if resource_event: self._last_refresh = int(time.time()) self._camera_properties = resource_event.get('properties')
[ "def", "get_cameras_properties", "(", "self", ")", ":", "resource", "=", "\"cameras\"", "resource_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "resource_event", ":", "self", ".", "_last_refresh", "=", "int", "(", "time", ".", ...
Return camera properties.
[ "Return", "camera", "properties", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L388-L394
7,133
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_cameras_battery_level
def get_cameras_battery_level(self): """Return a list of battery levels of all cameras.""" battery_levels = {} if not self.camera_properties: return None for camera in self.camera_properties: serialnum = camera.get('serialNumber') cam_battery = camera...
python
def get_cameras_battery_level(self): """Return a list of battery levels of all cameras.""" battery_levels = {} if not self.camera_properties: return None for camera in self.camera_properties: serialnum = camera.get('serialNumber') cam_battery = camera...
[ "def", "get_cameras_battery_level", "(", "self", ")", ":", "battery_levels", "=", "{", "}", "if", "not", "self", ".", "camera_properties", ":", "return", "None", "for", "camera", "in", "self", ".", "camera_properties", ":", "serialnum", "=", "camera", ".", "...
Return a list of battery levels of all cameras.
[ "Return", "a", "list", "of", "battery", "levels", "of", "all", "cameras", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L396-L406
7,134
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_cameras_signal_strength
def get_cameras_signal_strength(self): """Return a list of signal strength of all cameras.""" signal_strength = {} if not self.camera_properties: return None for camera in self.camera_properties: serialnum = camera.get('serialNumber') cam_strength = c...
python
def get_cameras_signal_strength(self): """Return a list of signal strength of all cameras.""" signal_strength = {} if not self.camera_properties: return None for camera in self.camera_properties: serialnum = camera.get('serialNumber') cam_strength = c...
[ "def", "get_cameras_signal_strength", "(", "self", ")", ":", "signal_strength", "=", "{", "}", "if", "not", "self", ".", "camera_properties", ":", "return", "None", "for", "camera", "in", "self", ".", "camera_properties", ":", "serialnum", "=", "camera", ".", ...
Return a list of signal strength of all cameras.
[ "Return", "a", "list", "of", "signal", "strength", "of", "all", "cameras", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L408-L418
7,135
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_camera_extended_properties
def get_camera_extended_properties(self): """Return camera extended properties.""" resource = 'cameras/{}'.format(self.device_id) resource_event = self.publish_and_get_event(resource) if resource_event is None: return None self._camera_extended_properties = resource...
python
def get_camera_extended_properties(self): """Return camera extended properties.""" resource = 'cameras/{}'.format(self.device_id) resource_event = self.publish_and_get_event(resource) if resource_event is None: return None self._camera_extended_properties = resource...
[ "def", "get_camera_extended_properties", "(", "self", ")", ":", "resource", "=", "'cameras/{}'", ".", "format", "(", "self", ".", "device_id", ")", "resource_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "resource_event", "is", "...
Return camera extended properties.
[ "Return", "camera", "extended", "properties", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L427-L436
7,136
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_speaker_muted
def get_speaker_muted(self): """Return whether or not the speaker is muted.""" if not self.camera_extended_properties: return None speaker = self.camera_extended_properties.get('speaker') if not speaker: return None return speaker.get('mute')
python
def get_speaker_muted(self): """Return whether or not the speaker is muted.""" if not self.camera_extended_properties: return None speaker = self.camera_extended_properties.get('speaker') if not speaker: return None return speaker.get('mute')
[ "def", "get_speaker_muted", "(", "self", ")", ":", "if", "not", "self", ".", "camera_extended_properties", ":", "return", "None", "speaker", "=", "self", ".", "camera_extended_properties", ".", "get", "(", "'speaker'", ")", "if", "not", "speaker", ":", "return...
Return whether or not the speaker is muted.
[ "Return", "whether", "or", "not", "the", "speaker", "is", "muted", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L438-L447
7,137
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_speaker_volume
def get_speaker_volume(self): """Return the volume setting of the speaker.""" if not self.camera_extended_properties: return None speaker = self.camera_extended_properties.get('speaker') if not speaker: return None return speaker.get('volume')
python
def get_speaker_volume(self): """Return the volume setting of the speaker.""" if not self.camera_extended_properties: return None speaker = self.camera_extended_properties.get('speaker') if not speaker: return None return speaker.get('volume')
[ "def", "get_speaker_volume", "(", "self", ")", ":", "if", "not", "self", ".", "camera_extended_properties", ":", "return", "None", "speaker", "=", "self", ".", "camera_extended_properties", ".", "get", "(", "'speaker'", ")", "if", "not", "speaker", ":", "retur...
Return the volume setting of the speaker.
[ "Return", "the", "volume", "setting", "of", "the", "speaker", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L449-L458
7,138
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.properties
def properties(self): """Return the base station info.""" resource = "basestation" basestn_event = self.publish_and_get_event(resource) if basestn_event: return basestn_event.get('properties') return None
python
def properties(self): """Return the base station info.""" resource = "basestation" basestn_event = self.publish_and_get_event(resource) if basestn_event: return basestn_event.get('properties') return None
[ "def", "properties", "(", "self", ")", ":", "resource", "=", "\"basestation\"", "basestn_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "basestn_event", ":", "return", "basestn_event", ".", "get", "(", "'properties'", ")", "return...
Return the base station info.
[ "Return", "the", "base", "station", "info", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L486-L493
7,139
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_cameras_rules
def get_cameras_rules(self): """Return the camera rules.""" resource = "rules" rules_event = self.publish_and_get_event(resource) if rules_event: return rules_event.get('properties') return None
python
def get_cameras_rules(self): """Return the camera rules.""" resource = "rules" rules_event = self.publish_and_get_event(resource) if rules_event: return rules_event.get('properties') return None
[ "def", "get_cameras_rules", "(", "self", ")", ":", "resource", "=", "\"rules\"", "rules_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "rules_event", ":", "return", "rules_event", ".", "get", "(", "'properties'", ")", "return", ...
Return the camera rules.
[ "Return", "the", "camera", "rules", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L495-L502
7,140
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_cameras_schedule
def get_cameras_schedule(self): """Return the schedule set for cameras.""" resource = "schedule" schedule_event = self.publish_and_get_event(resource) if schedule_event: return schedule_event.get('properties') return None
python
def get_cameras_schedule(self): """Return the schedule set for cameras.""" resource = "schedule" schedule_event = self.publish_and_get_event(resource) if schedule_event: return schedule_event.get('properties') return None
[ "def", "get_cameras_schedule", "(", "self", ")", ":", "resource", "=", "\"schedule\"", "schedule_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "schedule_event", ":", "return", "schedule_event", ".", "get", "(", "'properties'", ")",...
Return the schedule set for cameras.
[ "Return", "the", "schedule", "set", "for", "cameras", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L504-L511
7,141
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.get_ambient_sensor_data
def get_ambient_sensor_data(self): """Refresh ambient sensor history""" resource = 'cameras/{}/ambientSensors/history'.format(self.device_id) history_event = self.publish_and_get_event(resource) if history_event is None: return None properties = history_event.get('p...
python
def get_ambient_sensor_data(self): """Refresh ambient sensor history""" resource = 'cameras/{}/ambientSensors/history'.format(self.device_id) history_event = self.publish_and_get_event(resource) if history_event is None: return None properties = history_event.get('p...
[ "def", "get_ambient_sensor_data", "(", "self", ")", ":", "resource", "=", "'cameras/{}/ambientSensors/history'", ".", "format", "(", "self", ".", "device_id", ")", "history_event", "=", "self", ".", "publish_and_get_event", "(", "resource", ")", "if", "history_event...
Refresh ambient sensor history
[ "Refresh", "ambient", "sensor", "history" ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L543-L556
7,142
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation._decode_sensor_data
def _decode_sensor_data(properties): """Decode, decompress, and parse the data from the history API""" b64_input = "" for s in properties.get('payload'): # pylint: disable=consider-using-join b64_input += s decoded = base64.b64decode(b64_input) data = zli...
python
def _decode_sensor_data(properties): """Decode, decompress, and parse the data from the history API""" b64_input = "" for s in properties.get('payload'): # pylint: disable=consider-using-join b64_input += s decoded = base64.b64decode(b64_input) data = zli...
[ "def", "_decode_sensor_data", "(", "properties", ")", ":", "b64_input", "=", "\"\"", "for", "s", "in", "properties", ".", "get", "(", "'payload'", ")", ":", "# pylint: disable=consider-using-join", "b64_input", "+=", "s", "decoded", "=", "base64", ".", "b64decod...
Decode, decompress, and parse the data from the history API
[ "Decode", "decompress", "and", "parse", "the", "data", "from", "the", "history", "API" ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L559-L584
7,143
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation._parse_statistic
def _parse_statistic(data, scale): """Parse binary statistics returned from the history API""" i = 0 for byte in bytearray(data): i = (i << 8) + byte if i == 32768: return None if scale == 0: return i return float(i) / (scale * 10)
python
def _parse_statistic(data, scale): """Parse binary statistics returned from the history API""" i = 0 for byte in bytearray(data): i = (i << 8) + byte if i == 32768: return None if scale == 0: return i return float(i) / (scale * 10)
[ "def", "_parse_statistic", "(", "data", ",", "scale", ")", ":", "i", "=", "0", "for", "byte", "in", "bytearray", "(", "data", ")", ":", "i", "=", "(", "i", "<<", "8", ")", "+", "byte", "if", "i", "==", "32768", ":", "return", "None", "if", "sca...
Parse binary statistics returned from the history API
[ "Parse", "binary", "statistics", "returned", "from", "the", "history", "API" ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L587-L599
7,144
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.play_track
def play_track(self, track_id=DEFAULT_TRACK_ID, position=0): """Plays a track at the given position.""" self.publish( action='playTrack', resource='audioPlayback/player', publish_response=False, properties={'trackId': track_id, 'position': position} ...
python
def play_track(self, track_id=DEFAULT_TRACK_ID, position=0): """Plays a track at the given position.""" self.publish( action='playTrack', resource='audioPlayback/player', publish_response=False, properties={'trackId': track_id, 'position': position} ...
[ "def", "play_track", "(", "self", ",", "track_id", "=", "DEFAULT_TRACK_ID", ",", "position", "=", "0", ")", ":", "self", ".", "publish", "(", "action", "=", "'playTrack'", ",", "resource", "=", "'audioPlayback/player'", ",", "publish_response", "=", "False", ...
Plays a track at the given position.
[ "Plays", "a", "track", "at", "the", "given", "position", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L618-L625
7,145
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.set_shuffle_on
def set_shuffle_on(self): """Sets playback to shuffle.""" self.publish( action='set', resource='audioPlayback/config', publish_response=False, properties={'config': {'shuffleActive': True}} )
python
def set_shuffle_on(self): """Sets playback to shuffle.""" self.publish( action='set', resource='audioPlayback/config', publish_response=False, properties={'config': {'shuffleActive': True}} )
[ "def", "set_shuffle_on", "(", "self", ")", ":", "self", ".", "publish", "(", "action", "=", "'set'", ",", "resource", "=", "'audioPlayback/config'", ",", "publish_response", "=", "False", ",", "properties", "=", "{", "'config'", ":", "{", "'shuffleActive'", ...
Sets playback to shuffle.
[ "Sets", "playback", "to", "shuffle", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L661-L668
7,146
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.set_shuffle_off
def set_shuffle_off(self): """Sets playback to sequential.""" self.publish( action='set', resource='audioPlayback/config', publish_response=False, properties={'config': {'shuffleActive': False}} )
python
def set_shuffle_off(self): """Sets playback to sequential.""" self.publish( action='set', resource='audioPlayback/config', publish_response=False, properties={'config': {'shuffleActive': False}} )
[ "def", "set_shuffle_off", "(", "self", ")", ":", "self", ".", "publish", "(", "action", "=", "'set'", ",", "resource", "=", "'audioPlayback/config'", ",", "publish_response", "=", "False", ",", "properties", "=", "{", "'config'", ":", "{", "'shuffleActive'", ...
Sets playback to sequential.
[ "Sets", "playback", "to", "sequential", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L670-L677
7,147
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.set_night_light_on
def set_night_light_on(self): """Turns on the night light.""" self.publish( action='set', resource='cameras/{}'.format(self.device_id), publish_response=False, properties={'nightLight': {'enabled': True}} )
python
def set_night_light_on(self): """Turns on the night light.""" self.publish( action='set', resource='cameras/{}'.format(self.device_id), publish_response=False, properties={'nightLight': {'enabled': True}} )
[ "def", "set_night_light_on", "(", "self", ")", ":", "self", ".", "publish", "(", "action", "=", "'set'", ",", "resource", "=", "'cameras/{}'", ".", "format", "(", "self", ".", "device_id", ")", ",", "publish_response", "=", "False", ",", "properties", "=",...
Turns on the night light.
[ "Turns", "on", "the", "night", "light", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L688-L695
7,148
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.set_night_light_off
def set_night_light_off(self): """Turns off the night light.""" self.publish( action='set', resource='cameras/{}'.format(self.device_id), publish_response=False, properties={'nightLight': {'enabled': False}} )
python
def set_night_light_off(self): """Turns off the night light.""" self.publish( action='set', resource='cameras/{}'.format(self.device_id), publish_response=False, properties={'nightLight': {'enabled': False}} )
[ "def", "set_night_light_off", "(", "self", ")", ":", "self", ".", "publish", "(", "action", "=", "'set'", ",", "resource", "=", "'cameras/{}'", ".", "format", "(", "self", ".", "device_id", ")", ",", "publish_response", "=", "False", ",", "properties", "="...
Turns off the night light.
[ "Turns", "off", "the", "night", "light", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L697-L704
7,149
tchellomello/python-arlo
pyarlo/base_station.py
ArloBaseStation.mode
def mode(self, mode): """Set Arlo camera mode. :param mode: arm, disarm """ modes = self.available_modes if (not modes) or (mode not in modes): return self.publish( action='set', resource='modes' if mode != 'schedule' else 'schedule', ...
python
def mode(self, mode): """Set Arlo camera mode. :param mode: arm, disarm """ modes = self.available_modes if (not modes) or (mode not in modes): return self.publish( action='set', resource='modes' if mode != 'schedule' else 'schedule', ...
[ "def", "mode", "(", "self", ",", "mode", ")", ":", "modes", "=", "self", ".", "available_modes", "if", "(", "not", "modes", ")", "or", "(", "mode", "not", "in", "modes", ")", ":", "return", "self", ".", "publish", "(", "action", "=", "'set'", ",", ...
Set Arlo camera mode. :param mode: arm, disarm
[ "Set", "Arlo", "camera", "mode", "." ]
db70aeb81705309c56ad32bbab1094f6cd146524
https://github.com/tchellomello/python-arlo/blob/db70aeb81705309c56ad32bbab1094f6cd146524/pyarlo/base_station.py#L728-L741
7,150
zestyping/q
q.py
Q.unindent
def unindent(self, lines): """Removes any indentation that is common to all of the given lines.""" indent = min( len(self.re.match(r'^ *', line).group()) for line in lines) return [line[indent:].rstrip() for line in lines]
python
def unindent(self, lines): """Removes any indentation that is common to all of the given lines.""" indent = min( len(self.re.match(r'^ *', line).group()) for line in lines) return [line[indent:].rstrip() for line in lines]
[ "def", "unindent", "(", "self", ",", "lines", ")", ":", "indent", "=", "min", "(", "len", "(", "self", ".", "re", ".", "match", "(", "r'^ *'", ",", "line", ")", ".", "group", "(", ")", ")", "for", "line", "in", "lines", ")", "return", "[", "lin...
Removes any indentation that is common to all of the given lines.
[ "Removes", "any", "indentation", "that", "is", "common", "to", "all", "of", "the", "given", "lines", "." ]
1c178bf3595eb579f29957f674c08f4a1cd00ffe
https://github.com/zestyping/q/blob/1c178bf3595eb579f29957f674c08f4a1cd00ffe/q.py#L194-L198
7,151
zestyping/q
q.py
Q.get_call_exprs
def get_call_exprs(self, line): """Gets the argument expressions from the source of a function call.""" line = line.lstrip() try: tree = self.ast.parse(line) except SyntaxError: return None for node in self.ast.walk(tree): if isinstance(node, s...
python
def get_call_exprs(self, line): """Gets the argument expressions from the source of a function call.""" line = line.lstrip() try: tree = self.ast.parse(line) except SyntaxError: return None for node in self.ast.walk(tree): if isinstance(node, s...
[ "def", "get_call_exprs", "(", "self", ",", "line", ")", ":", "line", "=", "line", ".", "lstrip", "(", ")", "try", ":", "tree", "=", "self", ".", "ast", ".", "parse", "(", "line", ")", "except", "SyntaxError", ":", "return", "None", "for", "node", "...
Gets the argument expressions from the source of a function call.
[ "Gets", "the", "argument", "expressions", "from", "the", "source", "of", "a", "function", "call", "." ]
1c178bf3595eb579f29957f674c08f4a1cd00ffe
https://github.com/zestyping/q/blob/1c178bf3595eb579f29957f674c08f4a1cd00ffe/q.py#L214-L241
7,152
zestyping/q
q.py
Q.show
def show(self, func_name, values, labels=None): """Prints out nice representations of the given values.""" s = self.Stanza(self.indent) if func_name == '<module>' and self.in_console: func_name = '<console>' s.add([func_name + ': ']) reprs = map(self.safe_repr, values...
python
def show(self, func_name, values, labels=None): """Prints out nice representations of the given values.""" s = self.Stanza(self.indent) if func_name == '<module>' and self.in_console: func_name = '<console>' s.add([func_name + ': ']) reprs = map(self.safe_repr, values...
[ "def", "show", "(", "self", ",", "func_name", ",", "values", ",", "labels", "=", "None", ")", ":", "s", "=", "self", ".", "Stanza", "(", "self", ".", "indent", ")", "if", "func_name", "==", "'<module>'", "and", "self", ".", "in_console", ":", "func_n...
Prints out nice representations of the given values.
[ "Prints", "out", "nice", "representations", "of", "the", "given", "values", "." ]
1c178bf3595eb579f29957f674c08f4a1cd00ffe
https://github.com/zestyping/q/blob/1c178bf3595eb579f29957f674c08f4a1cd00ffe/q.py#L243-L260
7,153
zestyping/q
q.py
Q.trace
def trace(self, func): """Decorator to print out a function's arguments and return value.""" def wrapper(*args, **kwargs): # Print out the call to the function with its arguments. s = self.Stanza(self.indent) s.add([self.GREEN, func.__name__, self.NORMAL, '(']) ...
python
def trace(self, func): """Decorator to print out a function's arguments and return value.""" def wrapper(*args, **kwargs): # Print out the call to the function with its arguments. s = self.Stanza(self.indent) s.add([self.GREEN, func.__name__, self.NORMAL, '(']) ...
[ "def", "trace", "(", "self", ",", "func", ")", ":", "def", "wrapper", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "# Print out the call to the function with its arguments.", "s", "=", "self", ".", "Stanza", "(", "self", ".", "indent", ")", "s", ...
Decorator to print out a function's arguments and return value.
[ "Decorator", "to", "print", "out", "a", "function", "s", "arguments", "and", "return", "value", "." ]
1c178bf3595eb579f29957f674c08f4a1cd00ffe
https://github.com/zestyping/q/blob/1c178bf3595eb579f29957f674c08f4a1cd00ffe/q.py#L262-L312
7,154
zestyping/q
q.py
Q.d
def d(self, depth=1): """Launches an interactive console at the point where it's called.""" info = self.inspect.getframeinfo(self.sys._getframe(1)) s = self.Stanza(self.indent) s.add([info.function + ': ']) s.add([self.MAGENTA, 'Interactive console opened', self.NORMAL]) ...
python
def d(self, depth=1): """Launches an interactive console at the point where it's called.""" info = self.inspect.getframeinfo(self.sys._getframe(1)) s = self.Stanza(self.indent) s.add([info.function + ': ']) s.add([self.MAGENTA, 'Interactive console opened', self.NORMAL]) ...
[ "def", "d", "(", "self", ",", "depth", "=", "1", ")", ":", "info", "=", "self", ".", "inspect", ".", "getframeinfo", "(", "self", ".", "sys", ".", "_getframe", "(", "1", ")", ")", "s", "=", "self", ".", "Stanza", "(", "self", ".", "indent", ")"...
Launches an interactive console at the point where it's called.
[ "Launches", "an", "interactive", "console", "at", "the", "point", "where", "it", "s", "called", "." ]
1c178bf3595eb579f29957f674c08f4a1cd00ffe
https://github.com/zestyping/q/blob/1c178bf3595eb579f29957f674c08f4a1cd00ffe/q.py#L353-L374
7,155
pyopenapi/pyswagger
pyswagger/scanner/v1_2/upgrade.py
Upgrade.swagger
def swagger(self): """ some preparation before returning Swagger object """ # prepare Swagger.host & Swagger.basePath if not self.__swagger: return None common_path = os.path.commonprefix(list(self.__swagger.paths)) # remove tailing slash, # because a...
python
def swagger(self): """ some preparation before returning Swagger object """ # prepare Swagger.host & Swagger.basePath if not self.__swagger: return None common_path = os.path.commonprefix(list(self.__swagger.paths)) # remove tailing slash, # because a...
[ "def", "swagger", "(", "self", ")", ":", "# prepare Swagger.host & Swagger.basePath", "if", "not", "self", ".", "__swagger", ":", "return", "None", "common_path", "=", "os", ".", "path", ".", "commonprefix", "(", "list", "(", "self", ".", "__swagger", ".", "...
some preparation before returning Swagger object
[ "some", "preparation", "before", "returning", "Swagger", "object" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scanner/v1_2/upgrade.py#L288-L311
7,156
pyopenapi/pyswagger
pyswagger/utils.py
scope_compose
def scope_compose(scope, name, sep=private.SCOPE_SEPARATOR): """ compose a new scope :param str scope: current scope :param str name: name of next level in scope :return the composed scope """ if name == None: new_scope = scope else: new_scope = scope if scope else name ...
python
def scope_compose(scope, name, sep=private.SCOPE_SEPARATOR): """ compose a new scope :param str scope: current scope :param str name: name of next level in scope :return the composed scope """ if name == None: new_scope = scope else: new_scope = scope if scope else name ...
[ "def", "scope_compose", "(", "scope", ",", "name", ",", "sep", "=", "private", ".", "SCOPE_SEPARATOR", ")", ":", "if", "name", "==", "None", ":", "new_scope", "=", "scope", "else", ":", "new_scope", "=", "scope", "if", "scope", "else", "name", "if", "s...
compose a new scope :param str scope: current scope :param str name: name of next level in scope :return the composed scope
[ "compose", "a", "new", "scope" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/utils.py#L15-L31
7,157
pyopenapi/pyswagger
pyswagger/utils.py
nv_tuple_list_replace
def nv_tuple_list_replace(l, v): """ replace a tuple in a tuple list """ _found = False for i, x in enumerate(l): if x[0] == v[0]: l[i] = v _found = True if not _found: l.append(v)
python
def nv_tuple_list_replace(l, v): """ replace a tuple in a tuple list """ _found = False for i, x in enumerate(l): if x[0] == v[0]: l[i] = v _found = True if not _found: l.append(v)
[ "def", "nv_tuple_list_replace", "(", "l", ",", "v", ")", ":", "_found", "=", "False", "for", "i", ",", "x", "in", "enumerate", "(", "l", ")", ":", "if", "x", "[", "0", "]", "==", "v", "[", "0", "]", ":", "l", "[", "i", "]", "=", "v", "_foun...
replace a tuple in a tuple list
[ "replace", "a", "tuple", "in", "a", "tuple", "list" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/utils.py#L286-L296
7,158
pyopenapi/pyswagger
pyswagger/utils.py
url_dirname
def url_dirname(url): """ Return the folder containing the '.json' file """ p = six.moves.urllib.parse.urlparse(url) for e in [private.FILE_EXT_JSON, private.FILE_EXT_YAML]: if p.path.endswith(e): return six.moves.urllib.parse.urlunparse( p[:2]+ (os.pa...
python
def url_dirname(url): """ Return the folder containing the '.json' file """ p = six.moves.urllib.parse.urlparse(url) for e in [private.FILE_EXT_JSON, private.FILE_EXT_YAML]: if p.path.endswith(e): return six.moves.urllib.parse.urlunparse( p[:2]+ (os.pa...
[ "def", "url_dirname", "(", "url", ")", ":", "p", "=", "six", ".", "moves", ".", "urllib", ".", "parse", ".", "urlparse", "(", "url", ")", "for", "e", "in", "[", "private", ".", "FILE_EXT_JSON", ",", "private", ".", "FILE_EXT_YAML", "]", ":", "if", ...
Return the folder containing the '.json' file
[ "Return", "the", "folder", "containing", "the", ".", "json", "file" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/utils.py#L332-L343
7,159
pyopenapi/pyswagger
pyswagger/utils.py
url_join
def url_join(url, path): """ url version of os.path.join """ p = six.moves.urllib.parse.urlparse(url) t = None if p.path and p.path[-1] == '/': if path and path[0] == '/': path = path[1:] t = ''.join([p.path, path]) else: t = ('' if path and path[0] == '/' el...
python
def url_join(url, path): """ url version of os.path.join """ p = six.moves.urllib.parse.urlparse(url) t = None if p.path and p.path[-1] == '/': if path and path[0] == '/': path = path[1:] t = ''.join([p.path, path]) else: t = ('' if path and path[0] == '/' el...
[ "def", "url_join", "(", "url", ",", "path", ")", ":", "p", "=", "six", ".", "moves", ".", "urllib", ".", "parse", ".", "urlparse", "(", "url", ")", "t", "=", "None", "if", "p", ".", "path", "and", "p", ".", "path", "[", "-", "1", "]", "==", ...
url version of os.path.join
[ "url", "version", "of", "os", ".", "path", ".", "join" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/utils.py#L345-L362
7,160
pyopenapi/pyswagger
pyswagger/utils.py
derelativise_url
def derelativise_url(url): ''' Normalizes URLs, gets rid of .. and . ''' parsed = six.moves.urllib.parse.urlparse(url) newpath=[] for chunk in parsed.path[1:].split('/'): if chunk == '.': continue elif chunk == '..': # parent dir. newpath=newpa...
python
def derelativise_url(url): ''' Normalizes URLs, gets rid of .. and . ''' parsed = six.moves.urllib.parse.urlparse(url) newpath=[] for chunk in parsed.path[1:].split('/'): if chunk == '.': continue elif chunk == '..': # parent dir. newpath=newpa...
[ "def", "derelativise_url", "(", "url", ")", ":", "parsed", "=", "six", ".", "moves", ".", "urllib", ".", "parse", ".", "urlparse", "(", "url", ")", "newpath", "=", "[", "]", "for", "chunk", "in", "parsed", ".", "path", "[", "1", ":", "]", ".", "s...
Normalizes URLs, gets rid of .. and .
[ "Normalizes", "URLs", "gets", "rid", "of", "..", "and", "." ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/utils.py#L405-L424
7,161
pyopenapi/pyswagger
pyswagger/utils.py
get_swagger_version
def get_swagger_version(obj): """ get swagger version from loaded json """ if isinstance(obj, dict): if 'swaggerVersion' in obj: return obj['swaggerVersion'] elif 'swagger' in obj: return obj['swagger'] return None else: # should be an instance of Bas...
python
def get_swagger_version(obj): """ get swagger version from loaded json """ if isinstance(obj, dict): if 'swaggerVersion' in obj: return obj['swaggerVersion'] elif 'swagger' in obj: return obj['swagger'] return None else: # should be an instance of Bas...
[ "def", "get_swagger_version", "(", "obj", ")", ":", "if", "isinstance", "(", "obj", ",", "dict", ")", ":", "if", "'swaggerVersion'", "in", "obj", ":", "return", "obj", "[", "'swaggerVersion'", "]", "elif", "'swagger'", "in", "obj", ":", "return", "obj", ...
get swagger version from loaded json
[ "get", "swagger", "version", "from", "loaded", "json" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/utils.py#L426-L437
7,162
pyopenapi/pyswagger
pyswagger/utils.py
walk
def walk(start, ofn, cyc=None): """ Non recursive DFS to detect cycles :param start: start vertex in graph :param ofn: function to get the list of outgoing edges of a vertex :param cyc: list of existing cycles, cycles are represented in a list started with minimum vertex. :return: cycles :rtype...
python
def walk(start, ofn, cyc=None): """ Non recursive DFS to detect cycles :param start: start vertex in graph :param ofn: function to get the list of outgoing edges of a vertex :param cyc: list of existing cycles, cycles are represented in a list started with minimum vertex. :return: cycles :rtype...
[ "def", "walk", "(", "start", ",", "ofn", ",", "cyc", "=", "None", ")", ":", "ctx", ",", "stk", "=", "{", "}", ",", "[", "start", "]", "cyc", "=", "[", "]", "if", "cyc", "==", "None", "else", "cyc", "while", "len", "(", "stk", ")", ":", "top...
Non recursive DFS to detect cycles :param start: start vertex in graph :param ofn: function to get the list of outgoing edges of a vertex :param cyc: list of existing cycles, cycles are represented in a list started with minimum vertex. :return: cycles :rtype: list of lists
[ "Non", "recursive", "DFS", "to", "detect", "cycles" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/utils.py#L439-L480
7,163
pyopenapi/pyswagger
pyswagger/scanner/v1_2/validate.py
Validate._validate_param
def _validate_param(self, path, obj, _): """ validate option combination of Parameter object """ errs = [] if obj.allowMultiple: if not obj.paramType in ('path', 'query', 'header'): errs.append('allowMultiple should be applied on path, header, or query parameters') ...
python
def _validate_param(self, path, obj, _): """ validate option combination of Parameter object """ errs = [] if obj.allowMultiple: if not obj.paramType in ('path', 'query', 'header'): errs.append('allowMultiple should be applied on path, header, or query parameters') ...
[ "def", "_validate_param", "(", "self", ",", "path", ",", "obj", ",", "_", ")", ":", "errs", "=", "[", "]", "if", "obj", ".", "allowMultiple", ":", "if", "not", "obj", ".", "paramType", "in", "(", "'path'", ",", "'query'", ",", "'header'", ")", ":",...
validate option combination of Parameter object
[ "validate", "option", "combination", "of", "Parameter", "object" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scanner/v1_2/validate.py#L53-L75
7,164
pyopenapi/pyswagger
pyswagger/scanner/v1_2/validate.py
Validate._validate_items
def _validate_items(self, path, obj, _): """ validate option combination of Property object """ errs = [] if obj.type == 'void': errs.append('void is only allowed in Operation object.') return path, obj.__class__.__name__, errs
python
def _validate_items(self, path, obj, _): """ validate option combination of Property object """ errs = [] if obj.type == 'void': errs.append('void is only allowed in Operation object.') return path, obj.__class__.__name__, errs
[ "def", "_validate_items", "(", "self", ",", "path", ",", "obj", ",", "_", ")", ":", "errs", "=", "[", "]", "if", "obj", ".", "type", "==", "'void'", ":", "errs", ".", "append", "(", "'void is only allowed in Operation object.'", ")", "return", "path", ",...
validate option combination of Property object
[ "validate", "option", "combination", "of", "Property", "object" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scanner/v1_2/validate.py#L88-L95
7,165
pyopenapi/pyswagger
pyswagger/scanner/v1_2/validate.py
Validate._validate_auth
def _validate_auth(self, path, obj, _): """ validate that apiKey and oauth2 requirements """ errs = [] if obj.type == 'apiKey': if not obj.passAs: errs.append('need "passAs" for apiKey') if not obj.keyname: errs.append('need "keyname" for ...
python
def _validate_auth(self, path, obj, _): """ validate that apiKey and oauth2 requirements """ errs = [] if obj.type == 'apiKey': if not obj.passAs: errs.append('need "passAs" for apiKey') if not obj.keyname: errs.append('need "keyname" for ...
[ "def", "_validate_auth", "(", "self", ",", "path", ",", "obj", ",", "_", ")", ":", "errs", "=", "[", "]", "if", "obj", ".", "type", "==", "'apiKey'", ":", "if", "not", "obj", ".", "passAs", ":", "errs", ".", "append", "(", "'need \"passAs\" for apiKe...
validate that apiKey and oauth2 requirements
[ "validate", "that", "apiKey", "and", "oauth2", "requirements" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scanner/v1_2/validate.py#L98-L112
7,166
pyopenapi/pyswagger
pyswagger/scanner/v1_2/validate.py
Validate._validate_granttype
def _validate_granttype(self, path, obj, _): """ make sure either implicit or authorization_code is defined """ errs = [] if not obj.implicit and not obj.authorization_code: errs.append('Either implicit or authorization_code should be defined.') return path, obj.__class__._...
python
def _validate_granttype(self, path, obj, _): """ make sure either implicit or authorization_code is defined """ errs = [] if not obj.implicit and not obj.authorization_code: errs.append('Either implicit or authorization_code should be defined.') return path, obj.__class__._...
[ "def", "_validate_granttype", "(", "self", ",", "path", ",", "obj", ",", "_", ")", ":", "errs", "=", "[", "]", "if", "not", "obj", ".", "implicit", "and", "not", "obj", ".", "authorization_code", ":", "errs", ".", "append", "(", "'Either implicit or auth...
make sure either implicit or authorization_code is defined
[ "make", "sure", "either", "implicit", "or", "authorization_code", "is", "defined" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scanner/v1_2/validate.py#L115-L122
7,167
pyopenapi/pyswagger
pyswagger/scanner/v1_2/validate.py
Validate._validate_auths
def _validate_auths(self, path, obj, app): """ make sure that apiKey and basicAuth are empty list in Operation object. """ errs = [] for k, v in six.iteritems(obj.authorizations or {}): if k not in app.raw.authorizations: errs.append('auth {0} not fou...
python
def _validate_auths(self, path, obj, app): """ make sure that apiKey and basicAuth are empty list in Operation object. """ errs = [] for k, v in six.iteritems(obj.authorizations or {}): if k not in app.raw.authorizations: errs.append('auth {0} not fou...
[ "def", "_validate_auths", "(", "self", ",", "path", ",", "obj", ",", "app", ")", ":", "errs", "=", "[", "]", "for", "k", ",", "v", "in", "six", ".", "iteritems", "(", "obj", ".", "authorizations", "or", "{", "}", ")", ":", "if", "k", "not", "in...
make sure that apiKey and basicAuth are empty list in Operation object.
[ "make", "sure", "that", "apiKey", "and", "basicAuth", "are", "empty", "list", "in", "Operation", "object", "." ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scanner/v1_2/validate.py#L125-L138
7,168
pyopenapi/pyswagger
pyswagger/scan.py
default_tree_traversal
def default_tree_traversal(root, leaves): """ default tree traversal """ objs = [('#', root)] while len(objs) > 0: path, obj = objs.pop() # name of child are json-pointer encoded, we don't have # to encode it again. if obj.__class__ not in leaves: objs.extend(map...
python
def default_tree_traversal(root, leaves): """ default tree traversal """ objs = [('#', root)] while len(objs) > 0: path, obj = objs.pop() # name of child are json-pointer encoded, we don't have # to encode it again. if obj.__class__ not in leaves: objs.extend(map...
[ "def", "default_tree_traversal", "(", "root", ",", "leaves", ")", ":", "objs", "=", "[", "(", "'#'", ",", "root", ")", "]", "while", "len", "(", "objs", ")", ">", "0", ":", "path", ",", "obj", "=", "objs", ".", "pop", "(", ")", "# name of child are...
default tree traversal
[ "default", "tree", "traversal" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scan.py#L6-L19
7,169
pyopenapi/pyswagger
pyswagger/primitives/render.py
Renderer.render_all
def render_all(self, op, exclude=[], opt=None): """ render a set of parameter for an Operation :param op Operation: the swagger spec object :param opt dict: render option :return: a set of parameters that can be passed to Operation.__call__ :rtype: dict """ opt =...
python
def render_all(self, op, exclude=[], opt=None): """ render a set of parameter for an Operation :param op Operation: the swagger spec object :param opt dict: render option :return: a set of parameters that can be passed to Operation.__call__ :rtype: dict """ opt =...
[ "def", "render_all", "(", "self", ",", "op", ",", "exclude", "=", "[", "]", ",", "opt", "=", "None", ")", ":", "opt", "=", "self", ".", "default", "(", ")", "if", "opt", "==", "None", "else", "opt", "if", "not", "isinstance", "(", "op", ",", "O...
render a set of parameter for an Operation :param op Operation: the swagger spec object :param opt dict: render option :return: a set of parameters that can be passed to Operation.__call__ :rtype: dict
[ "render", "a", "set", "of", "parameter", "for", "an", "Operation" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/primitives/render.py#L287-L314
7,170
pyopenapi/pyswagger
pyswagger/io.py
Request._prepare_forms
def _prepare_forms(self): """ private function to prepare content for paramType=form """ content_type = 'application/x-www-form-urlencoded' if self.__op.consumes and content_type not in self.__op.consumes: raise errs.SchemaError('content type {0} does not present in {1}'.form...
python
def _prepare_forms(self): """ private function to prepare content for paramType=form """ content_type = 'application/x-www-form-urlencoded' if self.__op.consumes and content_type not in self.__op.consumes: raise errs.SchemaError('content type {0} does not present in {1}'.form...
[ "def", "_prepare_forms", "(", "self", ")", ":", "content_type", "=", "'application/x-www-form-urlencoded'", "if", "self", ".", "__op", ".", "consumes", "and", "content_type", "not", "in", "self", ".", "__op", ".", "consumes", ":", "raise", "errs", ".", "Schema...
private function to prepare content for paramType=form
[ "private", "function", "to", "prepare", "content", "for", "paramType", "=", "form" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/io.py#L56-L63
7,171
pyopenapi/pyswagger
pyswagger/io.py
Request._prepare_body
def _prepare_body(self): """ private function to prepare content for paramType=body """ content_type = self.__consume if not content_type: content_type = self.__op.consumes[0] if self.__op.consumes else 'application/json' if self.__op.consumes and content_type not in ...
python
def _prepare_body(self): """ private function to prepare content for paramType=body """ content_type = self.__consume if not content_type: content_type = self.__op.consumes[0] if self.__op.consumes else 'application/json' if self.__op.consumes and content_type not in ...
[ "def", "_prepare_body", "(", "self", ")", ":", "content_type", "=", "self", ".", "__consume", "if", "not", "content_type", ":", "content_type", "=", "self", ".", "__op", ".", "consumes", "[", "0", "]", "if", "self", ".", "__op", ".", "consumes", "else", ...
private function to prepare content for paramType=body
[ "private", "function", "to", "prepare", "content", "for", "paramType", "=", "body" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/io.py#L65-L85
7,172
pyopenapi/pyswagger
pyswagger/io.py
Request._prepare_files
def _prepare_files(self, encoding): """ private function to prepare content for paramType=form with File """ content_type = 'multipart/form-data' if self.__op.consumes and content_type not in self.__op.consumes: raise errs.SchemaError('content type {0} does not present in {1}...
python
def _prepare_files(self, encoding): """ private function to prepare content for paramType=form with File """ content_type = 'multipart/form-data' if self.__op.consumes and content_type not in self.__op.consumes: raise errs.SchemaError('content type {0} does not present in {1}...
[ "def", "_prepare_files", "(", "self", ",", "encoding", ")", ":", "content_type", "=", "'multipart/form-data'", "if", "self", ".", "__op", ".", "consumes", "and", "content_type", "not", "in", "self", ".", "__op", ".", "consumes", ":", "raise", "errs", ".", ...
private function to prepare content for paramType=form with File
[ "private", "function", "to", "prepare", "content", "for", "paramType", "=", "form", "with", "File" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/io.py#L87-L151
7,173
pyopenapi/pyswagger
pyswagger/io.py
Request.prepare
def prepare(self, scheme='http', handle_files=True, encoding='utf-8'): """ make this request ready for Clients :param str scheme: scheme used in this request :param bool handle_files: False to skip multipart/form-data encoding :param str encoding: encoding for body content. :rty...
python
def prepare(self, scheme='http', handle_files=True, encoding='utf-8'): """ make this request ready for Clients :param str scheme: scheme used in this request :param bool handle_files: False to skip multipart/form-data encoding :param str encoding: encoding for body content. :rty...
[ "def", "prepare", "(", "self", ",", "scheme", "=", "'http'", ",", "handle_files", "=", "True", ",", "encoding", "=", "'utf-8'", ")", ":", "if", "isinstance", "(", "scheme", ",", "list", ")", ":", "if", "self", ".", "__scheme", "is", "None", ":", "sch...
make this request ready for Clients :param str scheme: scheme used in this request :param bool handle_files: False to skip multipart/form-data encoding :param str encoding: encoding for body content. :rtype: Request
[ "make", "this", "request", "ready", "for", "Clients" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/io.py#L174-L239
7,174
pyopenapi/pyswagger
pyswagger/io.py
Response.apply_with
def apply_with(self, status=None, raw=None, header=None): """ update header, status code, raw datum, ...etc :param int status: status code :param str raw: body content :param dict header: header section :return: return self for chaining :rtype: Response """ ...
python
def apply_with(self, status=None, raw=None, header=None): """ update header, status code, raw datum, ...etc :param int status: status code :param str raw: body content :param dict header: header section :return: return self for chaining :rtype: Response """ ...
[ "def", "apply_with", "(", "self", ",", "status", "=", "None", ",", "raw", "=", "None", ",", "header", "=", "None", ")", ":", "if", "status", "!=", "None", ":", "self", ".", "__status", "=", "status", "r", "=", "(", "final", "(", "self", ".", "__o...
update header, status code, raw datum, ...etc :param int status: status code :param str raw: body content :param dict header: header section :return: return self for chaining :rtype: Response
[ "update", "header", "status", "code", "raw", "datum", "...", "etc" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/io.py#L374-L419
7,175
pyopenapi/pyswagger
pyswagger/spec/base.py
Context.parse
def parse(self, obj=None): """ major part do parsing. :param dict obj: json object to be parsed. :raises ValueError: if obj is not a dict type. """ if obj == None: return if not isinstance(obj, dict): raise ValueError('invalid obj passed: ' + str...
python
def parse(self, obj=None): """ major part do parsing. :param dict obj: json object to be parsed. :raises ValueError: if obj is not a dict type. """ if obj == None: return if not isinstance(obj, dict): raise ValueError('invalid obj passed: ' + str...
[ "def", "parse", "(", "self", ",", "obj", "=", "None", ")", ":", "if", "obj", "==", "None", ":", "return", "if", "not", "isinstance", "(", "obj", ",", "dict", ")", ":", "raise", "ValueError", "(", "'invalid obj passed: '", "+", "str", "(", "type", "("...
major part do parsing. :param dict obj: json object to be parsed. :raises ValueError: if obj is not a dict type.
[ "major", "part", "do", "parsing", "." ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L118-L171
7,176
pyopenapi/pyswagger
pyswagger/spec/base.py
BaseObj._assign_parent
def _assign_parent(self, ctx): """ parent assignment, internal usage only """ def _assign(cls, _, obj): if obj == None: return if cls.is_produced(obj): if isinstance(obj, BaseObj): obj._parent__ = self else:...
python
def _assign_parent(self, ctx): """ parent assignment, internal usage only """ def _assign(cls, _, obj): if obj == None: return if cls.is_produced(obj): if isinstance(obj, BaseObj): obj._parent__ = self else:...
[ "def", "_assign_parent", "(", "self", ",", "ctx", ")", ":", "def", "_assign", "(", "cls", ",", "_", ",", "obj", ")", ":", "if", "obj", "==", "None", ":", "return", "if", "cls", ".", "is_produced", "(", "obj", ")", ":", "if", "isinstance", "(", "o...
parent assignment, internal usage only
[ "parent", "assignment", "internal", "usage", "only" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L217-L236
7,177
pyopenapi/pyswagger
pyswagger/spec/base.py
BaseObj.get_private_name
def get_private_name(self, f): """ get private protected name of an attribute :param str f: name of the private attribute to be accessed. """ f = self.__swagger_rename__[f] if f in self.__swagger_rename__.keys() else f return '_' + self.__class__.__name__ + '__' + f
python
def get_private_name(self, f): """ get private protected name of an attribute :param str f: name of the private attribute to be accessed. """ f = self.__swagger_rename__[f] if f in self.__swagger_rename__.keys() else f return '_' + self.__class__.__name__ + '__' + f
[ "def", "get_private_name", "(", "self", ",", "f", ")", ":", "f", "=", "self", ".", "__swagger_rename__", "[", "f", "]", "if", "f", "in", "self", ".", "__swagger_rename__", ".", "keys", "(", ")", "else", "f", "return", "'_'", "+", "self", ".", "__clas...
get private protected name of an attribute :param str f: name of the private attribute to be accessed.
[ "get", "private", "protected", "name", "of", "an", "attribute" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L238-L244
7,178
pyopenapi/pyswagger
pyswagger/spec/base.py
BaseObj.update_field
def update_field(self, f, obj): """ update a field :param str f: name of field to be updated. :param obj: value of field to be updated. """ n = self.get_private_name(f) if not hasattr(self, n): raise AttributeError('{0} is not in {1}'.format(n, self.__class__...
python
def update_field(self, f, obj): """ update a field :param str f: name of field to be updated. :param obj: value of field to be updated. """ n = self.get_private_name(f) if not hasattr(self, n): raise AttributeError('{0} is not in {1}'.format(n, self.__class__...
[ "def", "update_field", "(", "self", ",", "f", ",", "obj", ")", ":", "n", "=", "self", ".", "get_private_name", "(", "f", ")", "if", "not", "hasattr", "(", "self", ",", "n", ")", ":", "raise", "AttributeError", "(", "'{0} is not in {1}'", ".", "format",...
update a field :param str f: name of field to be updated. :param obj: value of field to be updated.
[ "update", "a", "field" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L246-L257
7,179
pyopenapi/pyswagger
pyswagger/spec/base.py
BaseObj.resolve
def resolve(self, ts): """ resolve a list of tokens to an child object :param list ts: list of tokens """ if isinstance(ts, six.string_types): ts = [ts] obj = self while len(ts) > 0: t = ts.pop(0) if issubclass(obj.__class__, BaseObj...
python
def resolve(self, ts): """ resolve a list of tokens to an child object :param list ts: list of tokens """ if isinstance(ts, six.string_types): ts = [ts] obj = self while len(ts) > 0: t = ts.pop(0) if issubclass(obj.__class__, BaseObj...
[ "def", "resolve", "(", "self", ",", "ts", ")", ":", "if", "isinstance", "(", "ts", ",", "six", ".", "string_types", ")", ":", "ts", "=", "[", "ts", "]", "obj", "=", "self", "while", "len", "(", "ts", ")", ">", "0", ":", "t", "=", "ts", ".", ...
resolve a list of tokens to an child object :param list ts: list of tokens
[ "resolve", "a", "list", "of", "tokens", "to", "an", "child", "object" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L259-L278
7,180
pyopenapi/pyswagger
pyswagger/spec/base.py
BaseObj.compare
def compare(self, other, base=None): """ comparison, will return the first difference """ if self.__class__ != other.__class__: return False, '' names = self._field_names_ def cmp_func(name, s, o): # special case for string types if isinstance(s, six...
python
def compare(self, other, base=None): """ comparison, will return the first difference """ if self.__class__ != other.__class__: return False, '' names = self._field_names_ def cmp_func(name, s, o): # special case for string types if isinstance(s, six...
[ "def", "compare", "(", "self", ",", "other", ",", "base", "=", "None", ")", ":", "if", "self", ".", "__class__", "!=", "other", ".", "__class__", ":", "return", "False", ",", "''", "names", "=", "self", ".", "_field_names_", "def", "cmp_func", "(", "...
comparison, will return the first difference
[ "comparison", "will", "return", "the", "first", "difference" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L345-L391
7,181
pyopenapi/pyswagger
pyswagger/spec/base.py
BaseObj._field_names_
def _field_names_(self): """ get list of field names defined in Swagger spec :return: a list of field names :rtype: a list of str """ ret = [] for n in six.iterkeys(self.__swagger_fields__): new_n = self.__swagger_rename__.get(n, None) ret.append(...
python
def _field_names_(self): """ get list of field names defined in Swagger spec :return: a list of field names :rtype: a list of str """ ret = [] for n in six.iterkeys(self.__swagger_fields__): new_n = self.__swagger_rename__.get(n, None) ret.append(...
[ "def", "_field_names_", "(", "self", ")", ":", "ret", "=", "[", "]", "for", "n", "in", "six", ".", "iterkeys", "(", "self", ".", "__swagger_fields__", ")", ":", "new_n", "=", "self", ".", "__swagger_rename__", ".", "get", "(", "n", ",", "None", ")", ...
get list of field names defined in Swagger spec :return: a list of field names :rtype: a list of str
[ "get", "list", "of", "field", "names", "defined", "in", "Swagger", "spec" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L438-L449
7,182
pyopenapi/pyswagger
pyswagger/spec/base.py
BaseObj._children_
def _children_(self): """ get children objects :rtype: a dict of children {child_name: child_object} """ ret = {} names = self._field_names_ def down(name, obj): if isinstance(obj, BaseObj): if not isinstance(obj, weakref.ProxyTypes): ...
python
def _children_(self): """ get children objects :rtype: a dict of children {child_name: child_object} """ ret = {} names = self._field_names_ def down(name, obj): if isinstance(obj, BaseObj): if not isinstance(obj, weakref.ProxyTypes): ...
[ "def", "_children_", "(", "self", ")", ":", "ret", "=", "{", "}", "names", "=", "self", ".", "_field_names_", "def", "down", "(", "name", ",", "obj", ")", ":", "if", "isinstance", "(", "obj", ",", "BaseObj", ")", ":", "if", "not", "isinstance", "("...
get children objects :rtype: a dict of children {child_name: child_object}
[ "get", "children", "objects" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/spec/base.py#L452-L474
7,183
pyopenapi/pyswagger
pyswagger/core.py
App.load
def load(kls, url, getter=None, parser=None, url_load_hook=None, sep=consts.private.SCOPE_SEPARATOR, prim=None, mime_codec=None, resolver=None): """ load json as a raw App :param str url: url of path of Swagger API definition :param getter: customized Getter :type getter: sub class/inst...
python
def load(kls, url, getter=None, parser=None, url_load_hook=None, sep=consts.private.SCOPE_SEPARATOR, prim=None, mime_codec=None, resolver=None): """ load json as a raw App :param str url: url of path of Swagger API definition :param getter: customized Getter :type getter: sub class/inst...
[ "def", "load", "(", "kls", ",", "url", ",", "getter", "=", "None", ",", "parser", "=", "None", ",", "url_load_hook", "=", "None", ",", "sep", "=", "consts", ".", "private", ".", "SCOPE_SEPARATOR", ",", "prim", "=", "None", ",", "mime_codec", "=", "No...
load json as a raw App :param str url: url of path of Swagger API definition :param getter: customized Getter :type getter: sub class/instance of Getter :param parser: the parser to parse the loaded json. :type parser: pyswagger.base.Context :param dict app_cache: the ca...
[ "load", "json", "as", "a", "raw", "App" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L261-L294
7,184
pyopenapi/pyswagger
pyswagger/core.py
App.prepare
def prepare(self, strict=True): """ preparation for loaded json :param bool strict: when in strict mode, exception would be raised if not valid. """ self.__root = self.prepare_obj(self.raw, self.__url) self.validate(strict=strict) if hasattr(self.__root, 'schemes') and...
python
def prepare(self, strict=True): """ preparation for loaded json :param bool strict: when in strict mode, exception would be raised if not valid. """ self.__root = self.prepare_obj(self.raw, self.__url) self.validate(strict=strict) if hasattr(self.__root, 'schemes') and...
[ "def", "prepare", "(", "self", ",", "strict", "=", "True", ")", ":", "self", ".", "__root", "=", "self", ".", "prepare_obj", "(", "self", ".", "raw", ",", "self", ".", "__url", ")", "self", ".", "validate", "(", "strict", "=", "strict", ")", "if", ...
preparation for loaded json :param bool strict: when in strict mode, exception would be raised if not valid.
[ "preparation", "for", "loaded", "json" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L312-L351
7,185
pyopenapi/pyswagger
pyswagger/core.py
App.create
def create(kls, url, strict=True): """ factory of App :param str url: url of path of Swagger API definition :param bool strict: when in strict mode, exception would be raised if not valid. :return: the created App object :rtype: App :raises ValueError: if url is wrong ...
python
def create(kls, url, strict=True): """ factory of App :param str url: url of path of Swagger API definition :param bool strict: when in strict mode, exception would be raised if not valid. :return: the created App object :rtype: App :raises ValueError: if url is wrong ...
[ "def", "create", "(", "kls", ",", "url", ",", "strict", "=", "True", ")", ":", "app", "=", "kls", ".", "load", "(", "url", ")", "app", ".", "prepare", "(", "strict", "=", "strict", ")", "return", "app" ]
factory of App :param str url: url of path of Swagger API definition :param bool strict: when in strict mode, exception would be raised if not valid. :return: the created App object :rtype: App :raises ValueError: if url is wrong :raises NotImplementedError: the swagger ...
[ "factory", "of", "App" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L354-L367
7,186
pyopenapi/pyswagger
pyswagger/core.py
App.resolve
def resolve(self, jref, parser=None): """ JSON reference resolver :param str jref: a JSON Reference, refer to http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03 for details. :param parser: the parser corresponding to target object. :type parser: pyswagger.base.Context :retu...
python
def resolve(self, jref, parser=None): """ JSON reference resolver :param str jref: a JSON Reference, refer to http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03 for details. :param parser: the parser corresponding to target object. :type parser: pyswagger.base.Context :retu...
[ "def", "resolve", "(", "self", ",", "jref", ",", "parser", "=", "None", ")", ":", "logger", ".", "info", "(", "'resolving: [{0}]'", ".", "format", "(", "jref", ")", ")", "if", "jref", "==", "None", "or", "len", "(", "jref", ")", "==", "0", ":", "...
JSON reference resolver :param str jref: a JSON Reference, refer to http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03 for details. :param parser: the parser corresponding to target object. :type parser: pyswagger.base.Context :return: the referenced object, wrapped by weakref.Prox...
[ "JSON", "reference", "resolver" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L374-L426
7,187
pyopenapi/pyswagger
pyswagger/core.py
BaseClient.prepare_schemes
def prepare_schemes(self, req): """ make sure this client support schemes required by current request :param pyswagger.io.Request req: current request object """ # fix test bug when in python3 scheme, more details in commint msg ret = sorted(self.__schemes__ & set(req.schemes),...
python
def prepare_schemes(self, req): """ make sure this client support schemes required by current request :param pyswagger.io.Request req: current request object """ # fix test bug when in python3 scheme, more details in commint msg ret = sorted(self.__schemes__ & set(req.schemes),...
[ "def", "prepare_schemes", "(", "self", ",", "req", ")", ":", "# fix test bug when in python3 scheme, more details in commint msg", "ret", "=", "sorted", "(", "self", ".", "__schemes__", "&", "set", "(", "req", ".", "schemes", ")", ",", "reverse", "=", "True", ")...
make sure this client support schemes required by current request :param pyswagger.io.Request req: current request object
[ "make", "sure", "this", "client", "support", "schemes", "required", "by", "current", "request" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L558-L569
7,188
pyopenapi/pyswagger
pyswagger/core.py
BaseClient.compose_headers
def compose_headers(self, req, headers=None, opt=None, as_dict=False): """ a utility to compose headers from pyswagger.io.Request and customized headers :return: list of tuple (key, value) when as_dict is False, else dict """ if headers is None: return list(req.header.items(...
python
def compose_headers(self, req, headers=None, opt=None, as_dict=False): """ a utility to compose headers from pyswagger.io.Request and customized headers :return: list of tuple (key, value) when as_dict is False, else dict """ if headers is None: return list(req.header.items(...
[ "def", "compose_headers", "(", "self", ",", "req", ",", "headers", "=", "None", ",", "opt", "=", "None", ",", "as_dict", "=", "False", ")", ":", "if", "headers", "is", "None", ":", "return", "list", "(", "req", ".", "header", ".", "items", "(", ")"...
a utility to compose headers from pyswagger.io.Request and customized headers :return: list of tuple (key, value) when as_dict is False, else dict
[ "a", "utility", "to", "compose", "headers", "from", "pyswagger", ".", "io", ".", "Request", "and", "customized", "headers" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L571-L608
7,189
pyopenapi/pyswagger
pyswagger/core.py
BaseClient.request
def request(self, req_and_resp, opt=None, headers=None): """ preprocess before performing a request, usually some patching. authorization also applied here. :param req_and_resp: tuple of Request and Response :type req_and_resp: (Request, Response) :param opt: customized options ...
python
def request(self, req_and_resp, opt=None, headers=None): """ preprocess before performing a request, usually some patching. authorization also applied here. :param req_and_resp: tuple of Request and Response :type req_and_resp: (Request, Response) :param opt: customized options ...
[ "def", "request", "(", "self", ",", "req_and_resp", ",", "opt", "=", "None", ",", "headers", "=", "None", ")", ":", "req", ",", "resp", "=", "req_and_resp", "# dump info for debugging", "logger", ".", "info", "(", "'request.url: {0}'", ".", "format", "(", ...
preprocess before performing a request, usually some patching. authorization also applied here. :param req_and_resp: tuple of Request and Response :type req_and_resp: (Request, Response) :param opt: customized options :type opt: dict :param headers: customized headers ...
[ "preprocess", "before", "performing", "a", "request", "usually", "some", "patching", ".", "authorization", "also", "applied", "here", "." ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L610-L636
7,190
pyopenapi/pyswagger
pyswagger/primitives/_array.py
Array.to_url
def to_url(self): """ special function for handling 'multi', refer to Swagger 2.0, Parameter Object, collectionFormat """ if self.__collection_format == 'multi': return [str(s) for s in self] else: return [str(self)]
python
def to_url(self): """ special function for handling 'multi', refer to Swagger 2.0, Parameter Object, collectionFormat """ if self.__collection_format == 'multi': return [str(s) for s in self] else: return [str(self)]
[ "def", "to_url", "(", "self", ")", ":", "if", "self", ".", "__collection_format", "==", "'multi'", ":", "return", "[", "str", "(", "s", ")", "for", "s", "in", "self", "]", "else", ":", "return", "[", "str", "(", "self", ")", "]" ]
special function for handling 'multi', refer to Swagger 2.0, Parameter Object, collectionFormat
[ "special", "function", "for", "handling", "multi", "refer", "to", "Swagger", "2", ".", "0", "Parameter", "Object", "collectionFormat" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/primitives/_array.py#L83-L90
7,191
pyopenapi/pyswagger
pyswagger/primitives/_model.py
Model.apply_with
def apply_with(self, obj, val, ctx): """ recursively apply Schema object :param obj.Model obj: model object to instruct how to create this model :param dict val: things used to construct this model """ for k, v in six.iteritems(val): if k in obj.properties: ...
python
def apply_with(self, obj, val, ctx): """ recursively apply Schema object :param obj.Model obj: model object to instruct how to create this model :param dict val: things used to construct this model """ for k, v in six.iteritems(val): if k in obj.properties: ...
[ "def", "apply_with", "(", "self", ",", "obj", ",", "val", ",", "ctx", ")", ":", "for", "k", ",", "v", "in", "six", ".", "iteritems", "(", "val", ")", ":", "if", "k", "in", "obj", ".", "properties", ":", "pobj", "=", "obj", ".", "properties", "....
recursively apply Schema object :param obj.Model obj: model object to instruct how to create this model :param dict val: things used to construct this model
[ "recursively", "apply", "Schema", "object" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/primitives/_model.py#L17-L60
7,192
pyopenapi/pyswagger
pyswagger/scanner/v2_0/yaml.py
YamlFixer._op
def _op(self, _, obj, app): """ convert status code in Responses from int to string """ if obj.responses == None: return tmp = {} for k, v in six.iteritems(obj.responses): if isinstance(k, six.integer_types): tmp[str(k)] = v else: ...
python
def _op(self, _, obj, app): """ convert status code in Responses from int to string """ if obj.responses == None: return tmp = {} for k, v in six.iteritems(obj.responses): if isinstance(k, six.integer_types): tmp[str(k)] = v else: ...
[ "def", "_op", "(", "self", ",", "_", ",", "obj", ",", "app", ")", ":", "if", "obj", ".", "responses", "==", "None", ":", "return", "tmp", "=", "{", "}", "for", "k", ",", "v", "in", "six", ".", "iteritems", "(", "obj", ".", "responses", ")", "...
convert status code in Responses from int to string
[ "convert", "status", "code", "in", "Responses", "from", "int", "to", "string" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/scanner/v2_0/yaml.py#L15-L26
7,193
pyopenapi/pyswagger
pyswagger/primitives/__init__.py
Primitive.produce
def produce(self, obj, val, ctx=None): """ factory function to create primitives :param pyswagger.spec.v2_0.objects.Schema obj: spec to construct primitives :param val: value to construct primitives :return: the created primitive """ val = obj.default if val == None els...
python
def produce(self, obj, val, ctx=None): """ factory function to create primitives :param pyswagger.spec.v2_0.objects.Schema obj: spec to construct primitives :param val: value to construct primitives :return: the created primitive """ val = obj.default if val == None els...
[ "def", "produce", "(", "self", ",", "obj", ",", "val", ",", "ctx", "=", "None", ")", ":", "val", "=", "obj", ".", "default", "if", "val", "==", "None", "else", "val", "if", "val", "==", "None", ":", "return", "None", "obj", "=", "deref", "(", "...
factory function to create primitives :param pyswagger.spec.v2_0.objects.Schema obj: spec to construct primitives :param val: value to construct primitives :return: the created primitive
[ "factory", "function", "to", "create", "primitives" ]
333c4ca08e758cd2194943d9904a3eda3fe43977
https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/primitives/__init__.py#L151-L243
7,194
arogozhnikov/einops
einops/einops.py
_check_elementary_axis_name
def _check_elementary_axis_name(name: str) -> bool: """ Valid elementary axes contain only lower latin letters and digits and start with a letter. """ if len(name) == 0: return False if not 'a' <= name[0] <= 'z': return False for letter in name: if (not letter.isdigit()) ...
python
def _check_elementary_axis_name(name: str) -> bool: """ Valid elementary axes contain only lower latin letters and digits and start with a letter. """ if len(name) == 0: return False if not 'a' <= name[0] <= 'z': return False for letter in name: if (not letter.isdigit()) ...
[ "def", "_check_elementary_axis_name", "(", "name", ":", "str", ")", "->", "bool", ":", "if", "len", "(", "name", ")", "==", "0", ":", "return", "False", "if", "not", "'a'", "<=", "name", "[", "0", "]", "<=", "'z'", ":", "return", "False", "for", "l...
Valid elementary axes contain only lower latin letters and digits and start with a letter.
[ "Valid", "elementary", "axes", "contain", "only", "lower", "latin", "letters", "and", "digits", "and", "start", "with", "a", "letter", "." ]
9698f0f5efa6c5a79daa75253137ba5d79a95615
https://github.com/arogozhnikov/einops/blob/9698f0f5efa6c5a79daa75253137ba5d79a95615/einops/einops.py#L268-L279
7,195
Kautenja/nes-py
nes_py/_image_viewer.py
ImageViewer.open
def open(self): """Open the window.""" self._window = Window( caption=self.caption, height=self.height, width=self.width, vsync=False, resizable=True, )
python
def open(self): """Open the window.""" self._window = Window( caption=self.caption, height=self.height, width=self.width, vsync=False, resizable=True, )
[ "def", "open", "(", "self", ")", ":", "self", ".", "_window", "=", "Window", "(", "caption", "=", "self", ".", "caption", ",", "height", "=", "self", ".", "height", ",", "width", "=", "self", ".", "width", ",", "vsync", "=", "False", ",", "resizabl...
Open the window.
[ "Open", "the", "window", "." ]
a113885198d418f38fcf24b8f79ac508975788c2
https://github.com/Kautenja/nes-py/blob/a113885198d418f38fcf24b8f79ac508975788c2/nes_py/_image_viewer.py#L40-L48
7,196
Kautenja/nes-py
nes_py/_image_viewer.py
ImageViewer.show
def show(self, frame): """ Show an array of pixels on the window. Args: frame (numpy.ndarray): the frame to show on the window Returns: None """ # check that the frame has the correct dimensions if len(frame.shape) != 3: raise...
python
def show(self, frame): """ Show an array of pixels on the window. Args: frame (numpy.ndarray): the frame to show on the window Returns: None """ # check that the frame has the correct dimensions if len(frame.shape) != 3: raise...
[ "def", "show", "(", "self", ",", "frame", ")", ":", "# check that the frame has the correct dimensions", "if", "len", "(", "frame", ".", "shape", ")", "!=", "3", ":", "raise", "ValueError", "(", "'frame should have shape with only 3 dimensions'", ")", "# open the wind...
Show an array of pixels on the window. Args: frame (numpy.ndarray): the frame to show on the window Returns: None
[ "Show", "an", "array", "of", "pixels", "on", "the", "window", "." ]
a113885198d418f38fcf24b8f79ac508975788c2
https://github.com/Kautenja/nes-py/blob/a113885198d418f38fcf24b8f79ac508975788c2/nes_py/_image_viewer.py#L50-L80
7,197
Kautenja/nes-py
nes_py/app/play_human.py
display_arr
def display_arr(screen, arr, video_size, transpose): """ Display an image to the pygame screen. Args: screen (pygame.Surface): the pygame surface to write frames to arr (np.ndarray): numpy array representing a single frame of gameplay video_size (tuple): the size to render the frame...
python
def display_arr(screen, arr, video_size, transpose): """ Display an image to the pygame screen. Args: screen (pygame.Surface): the pygame surface to write frames to arr (np.ndarray): numpy array representing a single frame of gameplay video_size (tuple): the size to render the frame...
[ "def", "display_arr", "(", "screen", ",", "arr", ",", "video_size", ",", "transpose", ")", ":", "# take the transpose if necessary", "if", "transpose", ":", "pyg_img", "=", "pygame", ".", "surfarray", ".", "make_surface", "(", "arr", ".", "swapaxes", "(", "0",...
Display an image to the pygame screen. Args: screen (pygame.Surface): the pygame surface to write frames to arr (np.ndarray): numpy array representing a single frame of gameplay video_size (tuple): the size to render the frame as transpose (bool): whether to transpose the frame befo...
[ "Display", "an", "image", "to", "the", "pygame", "screen", "." ]
a113885198d418f38fcf24b8f79ac508975788c2
https://github.com/Kautenja/nes-py/blob/a113885198d418f38fcf24b8f79ac508975788c2/nes_py/app/play_human.py#L6-L28
7,198
Kautenja/nes-py
nes_py/app/play_human.py
play
def play(env, transpose=True, fps=30, nop_=0): """Play the game using the keyboard as a human. Args: env (gym.Env): the environment to use for playing transpose (bool): whether to transpose frame before viewing them fps (int): number of steps of the environment to execute every second ...
python
def play(env, transpose=True, fps=30, nop_=0): """Play the game using the keyboard as a human. Args: env (gym.Env): the environment to use for playing transpose (bool): whether to transpose frame before viewing them fps (int): number of steps of the environment to execute every second ...
[ "def", "play", "(", "env", ",", "transpose", "=", "True", ",", "fps", "=", "30", ",", "nop_", "=", "0", ")", ":", "# ensure the observation space is a box of pixels", "assert", "isinstance", "(", "env", ".", "observation_space", ",", "gym", ".", "spaces", "....
Play the game using the keyboard as a human. Args: env (gym.Env): the environment to use for playing transpose (bool): whether to transpose frame before viewing them fps (int): number of steps of the environment to execute every second nop_ (any): the object to use as a null op acti...
[ "Play", "the", "game", "using", "the", "keyboard", "as", "a", "human", "." ]
a113885198d418f38fcf24b8f79ac508975788c2
https://github.com/Kautenja/nes-py/blob/a113885198d418f38fcf24b8f79ac508975788c2/nes_py/app/play_human.py#L31-L135
7,199
Kautenja/nes-py
nes_py/app/play_human.py
play_human
def play_human(env): """ Play the environment using keyboard as a human. Args: env (gym.Env): the initialized gym environment to play Returns: None """ # play the game and catch a potential keyboard interrupt try: play(env, fps=env.metadata['video.frames_per_second...
python
def play_human(env): """ Play the environment using keyboard as a human. Args: env (gym.Env): the initialized gym environment to play Returns: None """ # play the game and catch a potential keyboard interrupt try: play(env, fps=env.metadata['video.frames_per_second...
[ "def", "play_human", "(", "env", ")", ":", "# play the game and catch a potential keyboard interrupt", "try", ":", "play", "(", "env", ",", "fps", "=", "env", ".", "metadata", "[", "'video.frames_per_second'", "]", ")", "except", "KeyboardInterrupt", ":", "pass", ...
Play the environment using keyboard as a human. Args: env (gym.Env): the initialized gym environment to play Returns: None
[ "Play", "the", "environment", "using", "keyboard", "as", "a", "human", "." ]
a113885198d418f38fcf24b8f79ac508975788c2
https://github.com/Kautenja/nes-py/blob/a113885198d418f38fcf24b8f79ac508975788c2/nes_py/app/play_human.py#L138-L155