idx int64 0 63k | question stringlengths 61 4.03k | target stringlengths 6 1.23k |
|---|---|---|
51,100 | def to_datetime ( timestamp ) : return dt . fromtimestamp ( time . mktime ( time . localtime ( int ( str ( timestamp ) [ : 10 ] ) ) ) ) | Return datetime object from timestamp . |
51,101 | 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 . |
51,102 | def http_get ( url , filename = None ) : 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 open ( filename , 'wb' ) as data : data . write ( ret . content... | Download HTTP data . |
51,103 | def http_stream ( url , chunk = 4096 ) : ret = requests . get ( url , stream = True ) ret . raise_for_status ( ) for data in ret . iter_content ( chunk ) : yield data | Generate stream for a given record video . |
51,104 | def unseen_videos_reset ( self ) : url = RESET_CAM_ENDPOINT . format ( self . unique_id ) ret = self . _session . query ( url ) . get ( 'success' ) return ret | Reset the unseen videos counter . |
51,105 | 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 . |
51,106 | def base_station ( self ) : try : return list ( filter ( lambda x : x . device_id == self . parent_id , self . _session . base_stations ) ) [ 0 ] except ( IndexError , AttributeError ) : return None | Return the base_station assigned for the given camera . |
51,107 | 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 [ "serialNumber" ] == self . device_id : return cam return None | Lookup camera properties from base station . |
51,108 | def triggers ( self ) : capabilities = self . capabilities if not capabilities : return None for capability in capabilities : if not isinstance ( capability , dict ) : continue triggers = capability . get ( "Triggers" ) if triggers : return triggers return None | Get a camera s triggers . |
51,109 | def motion_detection_sensitivity ( self ) : if not self . triggers : return None for trigger in self . triggers : if trigger . get ( "type" ) != "pirMotionActive" : continue sensitivity = trigger . get ( "sensitivity" ) if sensitivity : return sensitivity . get ( "default" ) return None | Sensitivity level of Camera motion detection . |
51,110 | def audio_detection_sensitivity ( self ) : if not self . triggers : return None for trigger in self . triggers : if trigger . get ( "type" ) != "audioAmplitude" : continue sensitivity = trigger . get ( "sensitivity" ) if sensitivity : return sensitivity . get ( "default" ) return None | Sensitivity level of Camera audio detection . |
51,111 | def live_streaming ( self ) : url = STREAM_ENDPOINT params = STREAMING_BODY params [ 'from' ] = "{0}_web" . format ( self . user_id ) params [ 'to' ] = self . device_id params [ 'resource' ] = "cameras/{0}" . format ( self . device_id ) params [ 'transId' ] = "web!{0}" . format ( self . xcloud_id ) headers = { 'xCloudI... | Return live streaming generator . |
51,112 | def schedule_snapshot ( self ) : url = SNAPSHOTS_ENDPOINT params = SNAPSHOTS_BODY params [ 'from' ] = "{0}_web" . format ( self . user_id ) params [ 'to' ] = self . device_id params [ 'resource' ] = "cameras/{0}" . format ( self . device_id ) params [ 'transId' ] = "web!{0}" . format ( self . xcloud_id ) headers = { 'x... | Trigger snapshot to be uploaded to AWS . Return success state . |
51,113 | def thread_function ( self ) : 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 valid response. Aborting.." ) return None self .... | Thread function . |
51,114 | 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 . |
51,115 | 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 . |
51,116 | def _close_event_stream ( self ) : self . __subscribed = False del self . __events [ : ] self . __event_handle . clear ( ) | Stop the Event stream thread . |
51,117 | def publish_and_get_event ( self , resource ) : l_subscribed = False this_event = None if not self . __subscribed : self . _get_event_stream ( ) self . _subscribe_myself ( ) l_subscribed = True status = self . publish ( action = 'get' , resource = resource , mode = None , publish_response = False ) if status == 'succes... | Publish and get the event from base station . |
51,118 | def publish ( self , action = 'get' , resource = None , camera_id = None , mode = None , publish_response = None , properties = None ) : url = NOTIFY_ENDPOINT . format ( self . device_id ) body = ACTION_BODY . copy ( ) if properties is None : properties = { } if resource : body [ 'resource' ] = resource if action == 'g... | Run action . |
51,119 | def refresh_rate ( self , value ) : if isinstance ( value , ( int , float ) ) : self . _refresh_rate = value | Override the refresh_rate attribute . |
51,120 | 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 . keys ( ) ) return self . _available_modes | Return list of available mode names . |
51,121 | 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_available_modes ( ) try : if modes : simple_modes = dict ( [ ( m . get ( "type" , m . get ( "name" ) ) , m . get ( "id" ) ) for m in modes ] ) all_mode... | Return list of objects containing available mode name and id . |
51,122 | 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 = mode_event . get ( 'properties' ) active_mode = properties . get ( 'active' ) modes = properties . get ( 'modes' ) if not modes : return None for m... | Return current mode key . |
51,123 | 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 ) == "schedule" : properties = mode_event . get ( 'properties' ) return properties . get ( "active" , False ) return False | Returns True if base_station is currently on a scheduled mode . |
51,124 | def get_available_modes ( self ) : resource = "modes" resource_event = self . publish_and_get_event ( resource ) if resource_event : properties = resource_event . get ( "properties" ) return properties . get ( "modes" ) return None | Return a list of available mode objects for an Arlo user . |
51,125 | def get_cameras_properties ( self ) : 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' ) | Return camera properties . |
51,126 | def get_cameras_battery_level ( self ) : battery_levels = { } if not self . camera_properties : return None for camera in self . camera_properties : serialnum = camera . get ( 'serialNumber' ) cam_battery = camera . get ( 'batteryLevel' ) battery_levels [ serialnum ] = cam_battery return battery_levels | Return a list of battery levels of all cameras . |
51,127 | def get_cameras_signal_strength ( self ) : signal_strength = { } if not self . camera_properties : return None for camera in self . camera_properties : serialnum = camera . get ( 'serialNumber' ) cam_strength = camera . get ( 'signalStrength' ) signal_strength [ serialnum ] = cam_strength return signal_strength | Return a list of signal strength of all cameras . |
51,128 | def get_camera_extended_properties ( self ) : 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_event . get ( 'properties' ) return self . _camera_extended_properties | Return camera extended properties . |
51,129 | def get_speaker_muted ( self ) : if not self . camera_extended_properties : return None speaker = self . camera_extended_properties . get ( 'speaker' ) if not speaker : return None return speaker . get ( 'mute' ) | Return whether or not the speaker is muted . |
51,130 | def get_speaker_volume ( self ) : if not self . camera_extended_properties : return None speaker = self . camera_extended_properties . get ( 'speaker' ) if not speaker : return None return speaker . get ( 'volume' ) | Return the volume setting of the speaker . |
51,131 | def properties ( self ) : resource = "basestation" basestn_event = self . publish_and_get_event ( resource ) if basestn_event : return basestn_event . get ( 'properties' ) return None | Return the base station info . |
51,132 | def get_cameras_rules ( self ) : resource = "rules" rules_event = self . publish_and_get_event ( resource ) if rules_event : return rules_event . get ( 'properties' ) return None | Return the camera rules . |
51,133 | def get_cameras_schedule ( self ) : resource = "schedule" schedule_event = self . publish_and_get_event ( resource ) if schedule_event : return schedule_event . get ( 'properties' ) return None | Return the schedule set for cameras . |
51,134 | 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 is None : return None properties = history_event . get ( 'properties' ) self . _ambient_sensor_data = ArloBaseStation . _decode_s... | Refresh ambient sensor history |
51,135 | def _decode_sensor_data ( properties ) : b64_input = "" for s in properties . get ( 'payload' ) : b64_input += s decoded = base64 . b64decode ( b64_input ) data = zlib . decompress ( decoded ) points = [ ] i = 0 while i < len ( data ) : points . append ( { 'timestamp' : int ( 1e3 * ArloBaseStation . _parse_statistic ( ... | Decode decompress and parse the data from the history API |
51,136 | def _parse_statistic ( data , scale ) : 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 ) | Parse binary statistics returned from the history API |
51,137 | def play_track ( self , track_id = DEFAULT_TRACK_ID , position = 0 ) : self . publish ( action = 'playTrack' , resource = 'audioPlayback/player' , publish_response = False , properties = { 'trackId' : track_id , 'position' : position } ) | Plays a track at the given position . |
51,138 | def set_shuffle_on ( self ) : self . publish ( action = 'set' , resource = 'audioPlayback/config' , publish_response = False , properties = { 'config' : { 'shuffleActive' : True } } ) | Sets playback to shuffle . |
51,139 | def set_shuffle_off ( self ) : self . publish ( action = 'set' , resource = 'audioPlayback/config' , publish_response = False , properties = { 'config' : { 'shuffleActive' : False } } ) | Sets playback to sequential . |
51,140 | def set_night_light_on ( self ) : self . publish ( action = 'set' , resource = 'cameras/{}' . format ( self . device_id ) , publish_response = False , properties = { 'nightLight' : { 'enabled' : True } } ) | Turns on the night light . |
51,141 | def set_night_light_off ( self ) : self . publish ( action = 'set' , resource = 'cameras/{}' . format ( self . device_id ) , publish_response = False , properties = { 'nightLight' : { 'enabled' : False } } ) | Turns off the night light . |
51,142 | def mode ( self , mode ) : modes = self . available_modes if ( not modes ) or ( mode not in modes ) : return self . publish ( action = 'set' , resource = 'modes' if mode != 'schedule' else 'schedule' , mode = mode , publish_response = True ) self . update ( ) | Set Arlo camera mode . |
51,143 | def unindent ( self , lines ) : indent = min ( len ( self . re . match ( r'^ *' , line ) . group ( ) ) for line in lines ) return [ line [ indent : ] . rstrip ( ) for line in lines ] | Removes any indentation that is common to all of the given lines . |
51,144 | def get_call_exprs ( self , line ) : line = line . lstrip ( ) try : tree = self . ast . parse ( line ) except SyntaxError : return None for node in self . ast . walk ( tree ) : if isinstance ( node , self . ast . Call ) : offsets = [ ] for arg in node . args : if isinstance ( arg , self . ast . Attribute ) and ( ( 3 , ... | Gets the argument expressions from the source of a function call . |
51,145 | def show ( self , func_name , values , labels = None ) : 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 ) if labels : sep = '' for label , repr in zip ( labels , reprs ) : s . add ( [... | Prints out nice representations of the given values . |
51,146 | def trace ( self , func ) : def wrapper ( * args , ** kwargs ) : s = self . Stanza ( self . indent ) s . add ( [ self . GREEN , func . __name__ , self . NORMAL , '(' ] ) s . indent += 4 sep = '' for arg in args : s . add ( [ self . CYAN , self . safe_repr ( arg ) , self . NORMAL ] , sep ) sep = ', ' for name , value in... | Decorator to print out a function s arguments and return value . |
51,147 | def d ( self , depth = 1 ) : 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 ] ) self . writer . write ( s . chunks ) frame = self . sys . _getframe ... | Launches an interactive console at the point where it s called . |
51,148 | def swagger ( self ) : if not self . __swagger : return None common_path = os . path . commonprefix ( list ( self . __swagger . paths ) ) common_path = common_path [ : - 1 ] if common_path [ - 1 ] == '/' else common_path if len ( common_path ) > 0 : p = six . moves . urllib . parse . urlparse ( common_path ) self . __s... | some preparation before returning Swagger object |
51,149 | def scope_compose ( scope , name , sep = private . SCOPE_SEPARATOR ) : if name == None : new_scope = scope else : new_scope = scope if scope else name if scope and name : new_scope = scope + sep + name return new_scope | compose a new scope |
51,150 | def nv_tuple_list_replace ( l , v ) : _found = False for i , x in enumerate ( l ) : if x [ 0 ] == v [ 0 ] : l [ i ] = v _found = True if not _found : l . append ( v ) | replace a tuple in a tuple list |
51,151 | def url_dirname ( url ) : 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 . path . dirname ( p . path ) , ) + p [ 3 : ] ) return url | Return the folder containing the . json file |
51,152 | def url_join ( url , path ) : 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 ] == '/' else '/' ) . join ( [ p . path , path ] ) return si... | url version of os . path . join |
51,153 | def derelativise_url ( url ) : parsed = six . moves . urllib . parse . urlparse ( url ) newpath = [ ] for chunk in parsed . path [ 1 : ] . split ( '/' ) : if chunk == '.' : continue elif chunk == '..' : newpath = newpath [ : - 1 ] continue elif _fullmatch ( r'\.{3,}' , chunk ) is not None : newpath = newpath [ : - 1 ] ... | Normalizes URLs gets rid of .. and . |
51,154 | def get_swagger_version ( obj ) : if isinstance ( obj , dict ) : if 'swaggerVersion' in obj : return obj [ 'swaggerVersion' ] elif 'swagger' in obj : return obj [ 'swagger' ] return None else : return obj . swaggerVersion if hasattr ( obj , 'swaggerVersion' ) else obj . swagger | get swagger version from loaded json |
51,155 | def walk ( start , ofn , cyc = None ) : ctx , stk = { } , [ start ] cyc = [ ] if cyc == None else cyc while len ( stk ) : top = stk [ - 1 ] if top not in ctx : ctx . update ( { top : list ( ofn ( top ) ) } ) if len ( ctx [ top ] ) : n = ctx [ top ] [ 0 ] if n in stk : nc = stk [ stk . index ( n ) : ] ni = nc . index ( ... | Non recursive DFS to detect cycles |
51,156 | def _validate_param ( self , path , obj , _ ) : errs = [ ] if obj . allowMultiple : if not obj . paramType in ( 'path' , 'query' , 'header' ) : errs . append ( 'allowMultiple should be applied on path, header, or query parameters' ) if obj . type == 'array' : errs . append ( 'array Type with allowMultiple is not suppor... | validate option combination of Parameter object |
51,157 | def _validate_items ( self , path , obj , _ ) : errs = [ ] if obj . type == 'void' : errs . append ( 'void is only allowed in Operation object.' ) return path , obj . __class__ . __name__ , errs | validate option combination of Property object |
51,158 | def _validate_auth ( self , path , obj , _ ) : errs = [ ] if obj . type == 'apiKey' : if not obj . passAs : errs . append ( 'need "passAs" for apiKey' ) if not obj . keyname : errs . append ( 'need "keyname" for apiKey' ) elif obj . type == 'oauth2' : if not obj . grantTypes : errs . append ( 'need "grantTypes" for oau... | validate that apiKey and oauth2 requirements |
51,159 | def _validate_granttype ( self , path , obj , _ ) : errs = [ ] if not obj . implicit and not obj . authorization_code : errs . append ( 'Either implicit or authorization_code should be defined.' ) return path , obj . __class__ . __name__ , errs | make sure either implicit or authorization_code is defined |
51,160 | def _validate_auths ( self , path , obj , app ) : errs = [ ] for k , v in six . iteritems ( obj . authorizations or { } ) : if k not in app . raw . authorizations : errs . append ( 'auth {0} not found in resource list' . format ( k ) ) if app . raw . authorizations [ k ] . type in ( 'basicAuth' , 'apiKey' ) and v != [ ... | make sure that apiKey and basicAuth are empty list in Operation object . |
51,161 | def default_tree_traversal ( root , leaves ) : objs = [ ( '#' , root ) ] while len ( objs ) > 0 : path , obj = objs . pop ( ) if obj . __class__ not in leaves : objs . extend ( map ( lambda i : ( path + '/' + i [ 0 ] , ) + ( i [ 1 ] , ) , six . iteritems ( obj . _children_ ) ) ) yield path , obj | default tree traversal |
51,162 | def render_all ( self , op , exclude = [ ] , opt = None ) : opt = self . default ( ) if opt == None else opt if not isinstance ( op , Operation ) : raise ValueError ( 'Not a Operation: {0}' . format ( op ) ) if not isinstance ( opt , dict ) : raise ValueError ( 'Not a dict: {0}' . format ( opt ) ) template = opt [ 'par... | render a set of parameter for an Operation |
51,163 | 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 . SchemaError ( 'content type {0} does not present in {1}' . format ( content_type , self . __op . consumes ) ) return content_type , six . moves . urlli... | private function to prepare content for paramType = form |
51,164 | def _prepare_body ( self ) : 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 self . __op . consumes : raise errs . SchemaError ( 'content type {0} does not present in {1}... | private function to prepare content for paramType = body |
51,165 | def _prepare_files ( self , encoding ) : 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}' . format ( content_type , self . __op . consumes ) ) boundary = uuid4 ( ) . hex content_type += '... | private function to prepare content for paramType = form with File |
51,166 | def prepare ( self , scheme = 'http' , handle_files = True , encoding = 'utf-8' ) : if isinstance ( scheme , list ) : if self . __scheme is None : scheme = scheme . pop ( ) else : if self . __scheme in scheme : scheme = self . __scheme else : raise Exception ( 'preferred scheme:{} is not supported by the client or spec... | make this request ready for Clients |
51,167 | def apply_with ( self , status = None , raw = None , header = None ) : if status != None : self . __status = status r = ( final ( self . __op . responses . get ( str ( self . __status ) , None ) ) or final ( self . __op . responses . get ( 'default' , None ) ) ) if header != None : if isinstance ( header , ( collection... | update header status code raw datum ... etc |
51,168 | def parse ( self , obj = None ) : if obj == None : return if not isinstance ( obj , dict ) : raise ValueError ( 'invalid obj passed: ' + str ( type ( obj ) ) ) def _apply ( x , kk , ct , v ) : if key not in self . _obj : self . _obj [ kk ] = { } if ct == None else [ ] with x ( self . _obj , kk ) as ctx : ctx . parse ( ... | major part do parsing . |
51,169 | def _assign_parent ( self , ctx ) : def _assign ( cls , _ , obj ) : if obj == None : return if cls . is_produced ( obj ) : if isinstance ( obj , BaseObj ) : obj . _parent__ = self else : raise ValueError ( 'Object is not instance of {0} but {1}' . format ( cls . __swagger_ref_object__ . __name__ , obj . __class__ . __n... | parent assignment internal usage only |
51,170 | def get_private_name ( self , f ) : f = self . __swagger_rename__ [ f ] if f in self . __swagger_rename__ . keys ( ) else f return '_' + self . __class__ . __name__ + '__' + f | get private protected name of an attribute |
51,171 | 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 ( n , self . __class__ . __name__ ) ) setattr ( self , n , obj ) self . __origin_keys . add ( f ) | update a field |
51,172 | def resolve ( self , ts ) : if isinstance ( ts , six . string_types ) : ts = [ ts ] obj = self while len ( ts ) > 0 : t = ts . pop ( 0 ) if issubclass ( obj . __class__ , BaseObj ) : obj = getattr ( obj , t ) elif isinstance ( obj , list ) : obj = obj [ int ( t ) ] elif isinstance ( obj , dict ) : obj = obj [ t ] retur... | resolve a list of tokens to an child object |
51,173 | def compare ( self , other , base = None ) : if self . __class__ != other . __class__ : return False , '' names = self . _field_names_ def cmp_func ( name , s , o ) : if isinstance ( s , six . string_types ) and isinstance ( o , six . string_types ) : return s == o , name if s . __class__ != o . __class__ : return Fals... | comparison will return the first difference |
51,174 | def _field_names_ ( self ) : ret = [ ] for n in six . iterkeys ( self . __swagger_fields__ ) : new_n = self . __swagger_rename__ . get ( n , None ) ret . append ( new_n ) if new_n else ret . append ( n ) return ret | get list of field names defined in Swagger spec |
51,175 | def _children_ ( self ) : ret = { } names = self . _field_names_ def down ( name , obj ) : if isinstance ( obj , BaseObj ) : if not isinstance ( obj , weakref . ProxyTypes ) : ret [ name ] = obj elif isinstance ( obj , list ) : for i , v in zip ( range ( len ( obj ) ) , obj ) : down ( jp_compose ( str ( i ) , name ) , ... | get children objects |
51,176 | def load ( kls , url , getter = None , parser = None , url_load_hook = None , sep = consts . private . SCOPE_SEPARATOR , prim = None , mime_codec = None , resolver = None ) : logger . info ( 'load with [{0}]' . format ( url ) ) url = utils . normalize_url ( url ) app = kls ( url , url_load_hook = url_load_hook , sep = ... | load json as a raw App |
51,177 | def prepare ( self , strict = True ) : self . __root = self . prepare_obj ( self . raw , self . __url ) self . validate ( strict = strict ) if hasattr ( self . __root , 'schemes' ) and self . __root . schemes : if len ( self . __root . schemes ) > 0 : self . __schemes = self . __root . schemes else : self . __schemes =... | preparation for loaded json |
51,178 | def create ( kls , url , strict = True ) : app = kls . load ( url ) app . prepare ( strict = strict ) return app | factory of App |
51,179 | def resolve ( self , jref , parser = None ) : logger . info ( 'resolving: [{0}]' . format ( jref ) ) if jref == None or len ( jref ) == 0 : raise ValueError ( 'Empty Path is not allowed' ) obj = None url , jp = utils . jr_split ( jref ) o = self . __objs . get ( url , None ) if o : if isinstance ( o , BaseObj ) : obj =... | JSON reference resolver |
51,180 | def prepare_schemes ( self , req ) : ret = sorted ( self . __schemes__ & set ( req . schemes ) , reverse = True ) if len ( ret ) == 0 : raise ValueError ( 'No schemes available: {0}' . format ( req . schemes ) ) return ret | make sure this client support schemes required by current request |
51,181 | def compose_headers ( self , req , headers = None , opt = None , as_dict = False ) : if headers is None : return list ( req . header . items ( ) ) if not as_dict else req . header opt = opt or { } join_headers = opt . pop ( BaseClient . join_headers , None ) if as_dict and not join_headers : headers = dict ( headers ) ... | a utility to compose headers from pyswagger . io . Request and customized headers |
51,182 | def request ( self , req_and_resp , opt = None , headers = None ) : req , resp = req_and_resp logger . info ( 'request.url: {0}' . format ( req . url ) ) logger . info ( 'request.header: {0}' . format ( req . header ) ) logger . info ( 'request.query: {0}' . format ( req . query ) ) logger . info ( 'request.file: {0}' ... | preprocess before performing a request usually some patching . authorization also applied here . |
51,183 | 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 |
51,184 | def apply_with ( self , obj , val , ctx ) : for k , v in six . iteritems ( val ) : if k in obj . properties : pobj = obj . properties . get ( k ) if pobj . readOnly == True and ctx [ 'read' ] == False : raise Exception ( 'read-only property is set in write context.' ) self [ k ] = ctx [ 'factory' ] . produce ( pobj , v... | recursively apply Schema object |
51,185 | def _op ( self , _ , obj , app ) : 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 : tmp [ k ] = v obj . update_field ( 'responses' , tmp ) | convert status code in Responses from int to string |
51,186 | def produce ( self , obj , val , ctx = None ) : val = obj . default if val == None else val if val == None : return None obj = deref ( obj ) ctx = { } if ctx == None else ctx if 'name' not in ctx and hasattr ( obj , 'name' ) : ctx [ 'name' ] = obj . name if 'guard' not in ctx : ctx [ 'guard' ] = CycleGuard ( ) if 'addp... | factory function to create primitives |
51,187 | def _check_elementary_axis_name ( name : str ) -> bool : if len ( name ) == 0 : return False if not 'a' <= name [ 0 ] <= 'z' : return False for letter in name : if ( not letter . isdigit ( ) ) and not ( 'a' <= letter <= 'z' ) : return False return True | Valid elementary axes contain only lower latin letters and digits and start with a letter . |
51,188 | def open ( self ) : self . _window = Window ( caption = self . caption , height = self . height , width = self . width , vsync = False , resizable = True , ) | Open the window . |
51,189 | def show ( self , frame ) : if len ( frame . shape ) != 3 : raise ValueError ( 'frame should have shape with only 3 dimensions' ) if not self . is_open : self . open ( ) self . _window . clear ( ) self . _window . switch_to ( ) self . _window . dispatch_events ( ) image = ImageData ( frame . shape [ 1 ] , frame . shape... | Show an array of pixels on the window . |
51,190 | def display_arr ( screen , arr , video_size , transpose ) : if transpose : pyg_img = pygame . surfarray . make_surface ( arr . swapaxes ( 0 , 1 ) ) else : pyg_img = arr pyg_img = pygame . transform . scale ( pyg_img , video_size ) screen . blit ( pyg_img , ( 0 , 0 ) ) | Display an image to the pygame screen . |
51,191 | def play ( env , transpose = True , fps = 30 , nop_ = 0 ) : assert isinstance ( env . observation_space , gym . spaces . box . Box ) obs_s = env . observation_space is_bw = len ( obs_s . shape ) == 2 is_rgb = len ( obs_s . shape ) == 3 and obs_s . shape [ 2 ] in [ 1 , 3 ] assert is_bw or is_rgb if hasattr ( env , 'get_... | Play the game using the keyboard as a human . |
51,192 | def play_human ( env ) : try : play ( env , fps = env . metadata [ 'video.frames_per_second' ] ) except KeyboardInterrupt : pass env . close ( ) | Play the environment using keyboard as a human . |
51,193 | def get_action_meanings ( self ) : actions = sorted ( self . _action_meanings . keys ( ) ) return [ self . _action_meanings [ action ] for action in actions ] | Return a list of actions meanings . |
51,194 | def prg_rom ( self ) : try : return self . raw_data [ self . prg_rom_start : self . prg_rom_stop ] except IndexError : raise ValueError ( 'failed to read PRG-ROM on ROM.' ) | Return the PRG ROM of the ROM file . |
51,195 | def chr_rom ( self ) : try : return self . raw_data [ self . chr_rom_start : self . chr_rom_stop ] except IndexError : raise ValueError ( 'failed to read CHR-ROM on ROM.' ) | Return the CHR ROM of the ROM file . |
51,196 | def _screen_buffer ( self ) : address = _LIB . Screen ( self . _env ) buffer_ = ctypes . cast ( address , ctypes . POINTER ( SCREEN_TENSOR ) ) . contents screen = np . frombuffer ( buffer_ , dtype = 'uint8' ) screen = screen . reshape ( SCREEN_SHAPE_32_BIT ) if sys . byteorder == 'little' : screen = screen [ : , : , : ... | Setup the screen buffer from the C ++ code . |
51,197 | def _ram_buffer ( self ) : address = _LIB . Memory ( self . _env ) buffer_ = ctypes . cast ( address , ctypes . POINTER ( RAM_VECTOR ) ) . contents return np . frombuffer ( buffer_ , dtype = 'uint8' ) | Setup the RAM buffer from the C ++ code . |
51,198 | def _controller_buffer ( self , port ) : address = _LIB . Controller ( self . _env , port ) buffer_ = ctypes . cast ( address , ctypes . POINTER ( CONTROLLER_VECTOR ) ) . contents return np . frombuffer ( buffer_ , dtype = 'uint8' ) | Find the pointer to a controller and setup a NumPy buffer . |
51,199 | def _frame_advance ( self , action ) : self . controllers [ 0 ] [ : ] = action _LIB . Step ( self . _env ) | Advance a frame in the emulator with an action . |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.