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
listlengths
20
707
docstring
stringlengths
3
17.3k
docstring_tokens
listlengths
3
222
sha
stringlengths
40
40
url
stringlengths
87
242
partition
stringclasses
1 value
idx
int64
0
252k
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.get_room_id
def get_room_id(self, room_alias): """Get room id from its alias. Args: room_alias (str): The room alias name. Returns: Wanted room's id. """ content = self._send("GET", "/directory/room/{}".format(quote(room_alias))) return content.get("room_id", None)
python
def get_room_id(self, room_alias): """Get room id from its alias. Args: room_alias (str): The room alias name. Returns: Wanted room's id. """ content = self._send("GET", "/directory/room/{}".format(quote(room_alias))) return content.get("room_id", None)
[ "def", "get_room_id", "(", "self", ",", "room_alias", ")", ":", "content", "=", "self", ".", "_send", "(", "\"GET\"", ",", "\"/directory/room/{}\"", ".", "format", "(", "quote", "(", "room_alias", ")", ")", ")", "return", "content", ".", "get", "(", "\"r...
Get room id from its alias. Args: room_alias (str): The room alias name. Returns: Wanted room's id.
[ "Get", "room", "id", "from", "its", "alias", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L870-L880
train
228,800
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.set_room_alias
def set_room_alias(self, room_id, room_alias): """Set alias to room id Args: room_id (str): The room id. room_alias (str): The room wanted alias name. """ data = { "room_id": room_id } return self._send("PUT", "/directory/room/{}".format(quote(room_alias)), content=data)
python
def set_room_alias(self, room_id, room_alias): """Set alias to room id Args: room_id (str): The room id. room_alias (str): The room wanted alias name. """ data = { "room_id": room_id } return self._send("PUT", "/directory/room/{}".format(quote(room_alias)), content=data)
[ "def", "set_room_alias", "(", "self", ",", "room_id", ",", "room_alias", ")", ":", "data", "=", "{", "\"room_id\"", ":", "room_id", "}", "return", "self", ".", "_send", "(", "\"PUT\"", ",", "\"/directory/room/{}\"", ".", "format", "(", "quote", "(", "room_...
Set alias to room id Args: room_id (str): The room id. room_alias (str): The room wanted alias name.
[ "Set", "alias", "to", "room", "id" ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L882-L894
train
228,801
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.set_join_rule
def set_join_rule(self, room_id, join_rule): """Set the rule for users wishing to join the room. Args: room_id(str): The room to set the rules for. join_rule(str): The chosen rule. One of: ["public", "knock", "invite", "private"] """ content = { "join_rule": join_rule } return self.send_state_event(room_id, "m.room.join_rules", content)
python
def set_join_rule(self, room_id, join_rule): """Set the rule for users wishing to join the room. Args: room_id(str): The room to set the rules for. join_rule(str): The chosen rule. One of: ["public", "knock", "invite", "private"] """ content = { "join_rule": join_rule } return self.send_state_event(room_id, "m.room.join_rules", content)
[ "def", "set_join_rule", "(", "self", ",", "room_id", ",", "join_rule", ")", ":", "content", "=", "{", "\"join_rule\"", ":", "join_rule", "}", "return", "self", ".", "send_state_event", "(", "room_id", ",", "\"m.room.join_rules\"", ",", "content", ")" ]
Set the rule for users wishing to join the room. Args: room_id(str): The room to set the rules for. join_rule(str): The chosen rule. One of: ["public", "knock", "invite", "private"]
[ "Set", "the", "rule", "for", "users", "wishing", "to", "join", "the", "room", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L915-L926
train
228,802
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.set_guest_access
def set_guest_access(self, room_id, guest_access): """Set the guest access policy of the room. Args: room_id(str): The room to set the rules for. guest_access(str): Wether guests can join. One of: ["can_join", "forbidden"] """ content = { "guest_access": guest_access } return self.send_state_event(room_id, "m.room.guest_access", content)
python
def set_guest_access(self, room_id, guest_access): """Set the guest access policy of the room. Args: room_id(str): The room to set the rules for. guest_access(str): Wether guests can join. One of: ["can_join", "forbidden"] """ content = { "guest_access": guest_access } return self.send_state_event(room_id, "m.room.guest_access", content)
[ "def", "set_guest_access", "(", "self", ",", "room_id", ",", "guest_access", ")", ":", "content", "=", "{", "\"guest_access\"", ":", "guest_access", "}", "return", "self", ".", "send_state_event", "(", "room_id", ",", "\"m.room.guest_access\"", ",", "content", "...
Set the guest access policy of the room. Args: room_id(str): The room to set the rules for. guest_access(str): Wether guests can join. One of: ["can_join", "forbidden"]
[ "Set", "the", "guest", "access", "policy", "of", "the", "room", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L928-L939
train
228,803
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.update_device_info
def update_device_info(self, device_id, display_name): """Update the display name of a device. Args: device_id (str): The device ID of the device to update. display_name (str): New display name for the device. """ content = { "display_name": display_name } return self._send("PUT", "/devices/%s" % device_id, content=content)
python
def update_device_info(self, device_id, display_name): """Update the display name of a device. Args: device_id (str): The device ID of the device to update. display_name (str): New display name for the device. """ content = { "display_name": display_name } return self._send("PUT", "/devices/%s" % device_id, content=content)
[ "def", "update_device_info", "(", "self", ",", "device_id", ",", "display_name", ")", ":", "content", "=", "{", "\"display_name\"", ":", "display_name", "}", "return", "self", ".", "_send", "(", "\"PUT\"", ",", "\"/devices/%s\"", "%", "device_id", ",", "conten...
Update the display name of a device. Args: device_id (str): The device ID of the device to update. display_name (str): New display name for the device.
[ "Update", "the", "display", "name", "of", "a", "device", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L949-L959
train
228,804
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.delete_device
def delete_device(self, auth_body, device_id): """Deletes the given device, and invalidates any access token associated with it. NOTE: This endpoint uses the User-Interactive Authentication API. Args: auth_body (dict): Authentication params. device_id (str): The device ID of the device to delete. """ content = { "auth": auth_body } return self._send("DELETE", "/devices/%s" % device_id, content=content)
python
def delete_device(self, auth_body, device_id): """Deletes the given device, and invalidates any access token associated with it. NOTE: This endpoint uses the User-Interactive Authentication API. Args: auth_body (dict): Authentication params. device_id (str): The device ID of the device to delete. """ content = { "auth": auth_body } return self._send("DELETE", "/devices/%s" % device_id, content=content)
[ "def", "delete_device", "(", "self", ",", "auth_body", ",", "device_id", ")", ":", "content", "=", "{", "\"auth\"", ":", "auth_body", "}", "return", "self", ".", "_send", "(", "\"DELETE\"", ",", "\"/devices/%s\"", "%", "device_id", ",", "content", "=", "co...
Deletes the given device, and invalidates any access token associated with it. NOTE: This endpoint uses the User-Interactive Authentication API. Args: auth_body (dict): Authentication params. device_id (str): The device ID of the device to delete.
[ "Deletes", "the", "given", "device", "and", "invalidates", "any", "access", "token", "associated", "with", "it", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L961-L973
train
228,805
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.delete_devices
def delete_devices(self, auth_body, devices): """Bulk deletion of devices. NOTE: This endpoint uses the User-Interactive Authentication API. Args: auth_body (dict): Authentication params. devices (list): List of device ID"s to delete. """ content = { "auth": auth_body, "devices": devices } return self._send("POST", "/delete_devices", content=content)
python
def delete_devices(self, auth_body, devices): """Bulk deletion of devices. NOTE: This endpoint uses the User-Interactive Authentication API. Args: auth_body (dict): Authentication params. devices (list): List of device ID"s to delete. """ content = { "auth": auth_body, "devices": devices } return self._send("POST", "/delete_devices", content=content)
[ "def", "delete_devices", "(", "self", ",", "auth_body", ",", "devices", ")", ":", "content", "=", "{", "\"auth\"", ":", "auth_body", ",", "\"devices\"", ":", "devices", "}", "return", "self", ".", "_send", "(", "\"POST\"", ",", "\"/delete_devices\"", ",", ...
Bulk deletion of devices. NOTE: This endpoint uses the User-Interactive Authentication API. Args: auth_body (dict): Authentication params. devices (list): List of device ID"s to delete.
[ "Bulk", "deletion", "of", "devices", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L975-L988
train
228,806
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.upload_keys
def upload_keys(self, device_keys=None, one_time_keys=None): """Publishes end-to-end encryption keys for the device. Said device must be the one used when logging in. Args: device_keys (dict): Optional. Identity keys for the device. The required keys are: | user_id (str): The ID of the user the device belongs to. Must match the user ID used when logging in. | device_id (str): The ID of the device these keys belong to. Must match the device ID used when logging in. | algorithms (list<str>): The encryption algorithms supported by this device. | keys (dict): Public identity keys. Should be formatted as <algorithm:device_id>: <key>. | signatures (dict): Signatures for the device key object. Should be formatted as <user_id>: {<algorithm:device_id>: <key>} one_time_keys (dict): Optional. One-time public keys. Should be formatted as <algorithm:key_id>: <key>, the key format being determined by the algorithm. """ content = {} if device_keys: content["device_keys"] = device_keys if one_time_keys: content["one_time_keys"] = one_time_keys return self._send("POST", "/keys/upload", content=content)
python
def upload_keys(self, device_keys=None, one_time_keys=None): """Publishes end-to-end encryption keys for the device. Said device must be the one used when logging in. Args: device_keys (dict): Optional. Identity keys for the device. The required keys are: | user_id (str): The ID of the user the device belongs to. Must match the user ID used when logging in. | device_id (str): The ID of the device these keys belong to. Must match the device ID used when logging in. | algorithms (list<str>): The encryption algorithms supported by this device. | keys (dict): Public identity keys. Should be formatted as <algorithm:device_id>: <key>. | signatures (dict): Signatures for the device key object. Should be formatted as <user_id>: {<algorithm:device_id>: <key>} one_time_keys (dict): Optional. One-time public keys. Should be formatted as <algorithm:key_id>: <key>, the key format being determined by the algorithm. """ content = {} if device_keys: content["device_keys"] = device_keys if one_time_keys: content["one_time_keys"] = one_time_keys return self._send("POST", "/keys/upload", content=content)
[ "def", "upload_keys", "(", "self", ",", "device_keys", "=", "None", ",", "one_time_keys", "=", "None", ")", ":", "content", "=", "{", "}", "if", "device_keys", ":", "content", "[", "\"device_keys\"", "]", "=", "device_keys", "if", "one_time_keys", ":", "co...
Publishes end-to-end encryption keys for the device. Said device must be the one used when logging in. Args: device_keys (dict): Optional. Identity keys for the device. The required keys are: | user_id (str): The ID of the user the device belongs to. Must match the user ID used when logging in. | device_id (str): The ID of the device these keys belong to. Must match the device ID used when logging in. | algorithms (list<str>): The encryption algorithms supported by this device. | keys (dict): Public identity keys. Should be formatted as <algorithm:device_id>: <key>. | signatures (dict): Signatures for the device key object. Should be formatted as <user_id>: {<algorithm:device_id>: <key>} one_time_keys (dict): Optional. One-time public keys. Should be formatted as <algorithm:key_id>: <key>, the key format being determined by the algorithm.
[ "Publishes", "end", "-", "to", "-", "end", "encryption", "keys", "for", "the", "device", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L990-L1019
train
228,807
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.query_keys
def query_keys(self, user_devices, timeout=None, token=None): """Query HS for public keys by user and optionally device. Args: user_devices (dict): The devices whose keys to download. Should be formatted as <user_id>: [<device_ids>]. No device_ids indicates all devices for the corresponding user. timeout (int): Optional. The time (in milliseconds) to wait when downloading keys from remote servers. token (str): Optional. If the client is fetching keys as a result of a device update received in a sync request, this should be the 'since' token of that sync request, or any later sync token. """ content = {"device_keys": user_devices} if timeout: content["timeout"] = timeout if token: content["token"] = token return self._send("POST", "/keys/query", content=content)
python
def query_keys(self, user_devices, timeout=None, token=None): """Query HS for public keys by user and optionally device. Args: user_devices (dict): The devices whose keys to download. Should be formatted as <user_id>: [<device_ids>]. No device_ids indicates all devices for the corresponding user. timeout (int): Optional. The time (in milliseconds) to wait when downloading keys from remote servers. token (str): Optional. If the client is fetching keys as a result of a device update received in a sync request, this should be the 'since' token of that sync request, or any later sync token. """ content = {"device_keys": user_devices} if timeout: content["timeout"] = timeout if token: content["token"] = token return self._send("POST", "/keys/query", content=content)
[ "def", "query_keys", "(", "self", ",", "user_devices", ",", "timeout", "=", "None", ",", "token", "=", "None", ")", ":", "content", "=", "{", "\"device_keys\"", ":", "user_devices", "}", "if", "timeout", ":", "content", "[", "\"timeout\"", "]", "=", "tim...
Query HS for public keys by user and optionally device. Args: user_devices (dict): The devices whose keys to download. Should be formatted as <user_id>: [<device_ids>]. No device_ids indicates all devices for the corresponding user. timeout (int): Optional. The time (in milliseconds) to wait when downloading keys from remote servers. token (str): Optional. If the client is fetching keys as a result of a device update received in a sync request, this should be the 'since' token of that sync request, or any later sync token.
[ "Query", "HS", "for", "public", "keys", "by", "user", "and", "optionally", "device", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L1021-L1039
train
228,808
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.claim_keys
def claim_keys(self, key_request, timeout=None): """Claims one-time keys for use in pre-key messages. Args: key_request (dict): The keys to be claimed. Format should be <user_id>: { <device_id>: <algorithm> }. timeout (int): Optional. The time (in milliseconds) to wait when downloading keys from remote servers. """ content = {"one_time_keys": key_request} if timeout: content["timeout"] = timeout return self._send("POST", "/keys/claim", content=content)
python
def claim_keys(self, key_request, timeout=None): """Claims one-time keys for use in pre-key messages. Args: key_request (dict): The keys to be claimed. Format should be <user_id>: { <device_id>: <algorithm> }. timeout (int): Optional. The time (in milliseconds) to wait when downloading keys from remote servers. """ content = {"one_time_keys": key_request} if timeout: content["timeout"] = timeout return self._send("POST", "/keys/claim", content=content)
[ "def", "claim_keys", "(", "self", ",", "key_request", ",", "timeout", "=", "None", ")", ":", "content", "=", "{", "\"one_time_keys\"", ":", "key_request", "}", "if", "timeout", ":", "content", "[", "\"timeout\"", "]", "=", "timeout", "return", "self", ".",...
Claims one-time keys for use in pre-key messages. Args: key_request (dict): The keys to be claimed. Format should be <user_id>: { <device_id>: <algorithm> }. timeout (int): Optional. The time (in milliseconds) to wait when downloading keys from remote servers.
[ "Claims", "one", "-", "time", "keys", "for", "use", "in", "pre", "-", "key", "messages", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L1041-L1053
train
228,809
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.key_changes
def key_changes(self, from_token, to_token): """Gets a list of users who have updated their device identity keys. Args: from_token (str): The desired start point of the list. Should be the next_batch field from a response to an earlier call to /sync. to_token (str): The desired end point of the list. Should be the next_batch field from a recent call to /sync - typically the most recent such call. """ params = {"from": from_token, "to": to_token} return self._send("GET", "/keys/changes", query_params=params)
python
def key_changes(self, from_token, to_token): """Gets a list of users who have updated their device identity keys. Args: from_token (str): The desired start point of the list. Should be the next_batch field from a response to an earlier call to /sync. to_token (str): The desired end point of the list. Should be the next_batch field from a recent call to /sync - typically the most recent such call. """ params = {"from": from_token, "to": to_token} return self._send("GET", "/keys/changes", query_params=params)
[ "def", "key_changes", "(", "self", ",", "from_token", ",", "to_token", ")", ":", "params", "=", "{", "\"from\"", ":", "from_token", ",", "\"to\"", ":", "to_token", "}", "return", "self", ".", "_send", "(", "\"GET\"", ",", "\"/keys/changes\"", ",", "query_p...
Gets a list of users who have updated their device identity keys. Args: from_token (str): The desired start point of the list. Should be the next_batch field from a response to an earlier call to /sync. to_token (str): The desired end point of the list. Should be the next_batch field from a recent call to /sync - typically the most recent such call.
[ "Gets", "a", "list", "of", "users", "who", "have", "updated", "their", "device", "identity", "keys", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L1055-L1065
train
228,810
matrix-org/matrix-python-sdk
matrix_client/api.py
MatrixHttpApi.send_to_device
def send_to_device(self, event_type, messages, txn_id=None): """Sends send-to-device events to a set of client devices. Args: event_type (str): The type of event to send. messages (dict): The messages to send. Format should be <user_id>: {<device_id>: <event_content>}. The device ID may also be '*', meaning all known devices for the user. txn_id (str): Optional. The transaction ID for this event, will be generated automatically otherwise. """ txn_id = txn_id if txn_id else self._make_txn_id() return self._send( "PUT", "/sendToDevice/{}/{}".format(event_type, txn_id), content={"messages": messages} )
python
def send_to_device(self, event_type, messages, txn_id=None): """Sends send-to-device events to a set of client devices. Args: event_type (str): The type of event to send. messages (dict): The messages to send. Format should be <user_id>: {<device_id>: <event_content>}. The device ID may also be '*', meaning all known devices for the user. txn_id (str): Optional. The transaction ID for this event, will be generated automatically otherwise. """ txn_id = txn_id if txn_id else self._make_txn_id() return self._send( "PUT", "/sendToDevice/{}/{}".format(event_type, txn_id), content={"messages": messages} )
[ "def", "send_to_device", "(", "self", ",", "event_type", ",", "messages", ",", "txn_id", "=", "None", ")", ":", "txn_id", "=", "txn_id", "if", "txn_id", "else", "self", ".", "_make_txn_id", "(", ")", "return", "self", ".", "_send", "(", "\"PUT\"", ",", ...
Sends send-to-device events to a set of client devices. Args: event_type (str): The type of event to send. messages (dict): The messages to send. Format should be <user_id>: {<device_id>: <event_content>}. The device ID may also be '*', meaning all known devices for the user. txn_id (str): Optional. The transaction ID for this event, will be generated automatically otherwise.
[ "Sends", "send", "-", "to", "-", "device", "events", "to", "a", "set", "of", "client", "devices", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/api.py#L1067-L1083
train
228,811
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.register_with_password
def register_with_password(self, username, password): """ Register for a new account on this HS. Args: username (str): Account username password (str): Account password Returns: str: Access Token Raises: MatrixRequestError """ response = self.api.register( auth_body={"type": "m.login.dummy"}, kind='user', username=username, password=password, ) return self._post_registration(response)
python
def register_with_password(self, username, password): """ Register for a new account on this HS. Args: username (str): Account username password (str): Account password Returns: str: Access Token Raises: MatrixRequestError """ response = self.api.register( auth_body={"type": "m.login.dummy"}, kind='user', username=username, password=password, ) return self._post_registration(response)
[ "def", "register_with_password", "(", "self", ",", "username", ",", "password", ")", ":", "response", "=", "self", ".", "api", ".", "register", "(", "auth_body", "=", "{", "\"type\"", ":", "\"m.login.dummy\"", "}", ",", "kind", "=", "'user'", ",", "usernam...
Register for a new account on this HS. Args: username (str): Account username password (str): Account password Returns: str: Access Token Raises: MatrixRequestError
[ "Register", "for", "a", "new", "account", "on", "this", "HS", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L190-L209
train
228,812
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.login_with_password_no_sync
def login_with_password_no_sync(self, username, password): """Deprecated. Use ``login`` with ``sync=False``. Login to the homeserver. Args: username (str): Account username password (str): Account password Returns: str: Access token Raises: MatrixRequestError """ warn("login_with_password_no_sync is deprecated. Use login with sync=False.", DeprecationWarning) return self.login(username, password, sync=False)
python
def login_with_password_no_sync(self, username, password): """Deprecated. Use ``login`` with ``sync=False``. Login to the homeserver. Args: username (str): Account username password (str): Account password Returns: str: Access token Raises: MatrixRequestError """ warn("login_with_password_no_sync is deprecated. Use login with sync=False.", DeprecationWarning) return self.login(username, password, sync=False)
[ "def", "login_with_password_no_sync", "(", "self", ",", "username", ",", "password", ")", ":", "warn", "(", "\"login_with_password_no_sync is deprecated. Use login with sync=False.\"", ",", "DeprecationWarning", ")", "return", "self", ".", "login", "(", "username", ",", ...
Deprecated. Use ``login`` with ``sync=False``. Login to the homeserver. Args: username (str): Account username password (str): Account password Returns: str: Access token Raises: MatrixRequestError
[ "Deprecated", ".", "Use", "login", "with", "sync", "=", "False", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L219-L236
train
228,813
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.login_with_password
def login_with_password(self, username, password, limit=10): """Deprecated. Use ``login`` with ``sync=True``. Login to the homeserver. Args: username (str): Account username password (str): Account password limit (int): Deprecated. How many messages to return when syncing. This will be replaced by a filter API in a later release. Returns: str: Access token Raises: MatrixRequestError """ warn("login_with_password is deprecated. Use login with sync=True.", DeprecationWarning) return self.login(username, password, limit, sync=True)
python
def login_with_password(self, username, password, limit=10): """Deprecated. Use ``login`` with ``sync=True``. Login to the homeserver. Args: username (str): Account username password (str): Account password limit (int): Deprecated. How many messages to return when syncing. This will be replaced by a filter API in a later release. Returns: str: Access token Raises: MatrixRequestError """ warn("login_with_password is deprecated. Use login with sync=True.", DeprecationWarning) return self.login(username, password, limit, sync=True)
[ "def", "login_with_password", "(", "self", ",", "username", ",", "password", ",", "limit", "=", "10", ")", ":", "warn", "(", "\"login_with_password is deprecated. Use login with sync=True.\"", ",", "DeprecationWarning", ")", "return", "self", ".", "login", "(", "use...
Deprecated. Use ``login`` with ``sync=True``. Login to the homeserver. Args: username (str): Account username password (str): Account password limit (int): Deprecated. How many messages to return when syncing. This will be replaced by a filter API in a later release. Returns: str: Access token Raises: MatrixRequestError
[ "Deprecated", ".", "Use", "login", "with", "sync", "=", "True", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L238-L257
train
228,814
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.login
def login(self, username, password, limit=10, sync=True, device_id=None): """Login to the homeserver. Args: username (str): Account username password (str): Account password limit (int): Deprecated. How many messages to return when syncing. This will be replaced by a filter API in a later release. sync (bool): Optional. Whether to initiate a /sync request after logging in. device_id (str): Optional. ID of the client device. The server will auto-generate a device_id if this is not specified. Returns: str: Access token Raises: MatrixRequestError """ response = self.api.login( "m.login.password", user=username, password=password, device_id=device_id ) self.user_id = response["user_id"] self.token = response["access_token"] self.hs = response["home_server"] self.api.token = self.token self.device_id = response["device_id"] if self._encryption: self.olm_device = OlmDevice( self.api, self.user_id, self.device_id, **self.encryption_conf) self.olm_device.upload_identity_keys() self.olm_device.upload_one_time_keys() if sync: """ Limit Filter """ self.sync_filter = '{ "room": { "timeline" : { "limit" : %i } } }' % limit self._sync() return self.token
python
def login(self, username, password, limit=10, sync=True, device_id=None): """Login to the homeserver. Args: username (str): Account username password (str): Account password limit (int): Deprecated. How many messages to return when syncing. This will be replaced by a filter API in a later release. sync (bool): Optional. Whether to initiate a /sync request after logging in. device_id (str): Optional. ID of the client device. The server will auto-generate a device_id if this is not specified. Returns: str: Access token Raises: MatrixRequestError """ response = self.api.login( "m.login.password", user=username, password=password, device_id=device_id ) self.user_id = response["user_id"] self.token = response["access_token"] self.hs = response["home_server"] self.api.token = self.token self.device_id = response["device_id"] if self._encryption: self.olm_device = OlmDevice( self.api, self.user_id, self.device_id, **self.encryption_conf) self.olm_device.upload_identity_keys() self.olm_device.upload_one_time_keys() if sync: """ Limit Filter """ self.sync_filter = '{ "room": { "timeline" : { "limit" : %i } } }' % limit self._sync() return self.token
[ "def", "login", "(", "self", ",", "username", ",", "password", ",", "limit", "=", "10", ",", "sync", "=", "True", ",", "device_id", "=", "None", ")", ":", "response", "=", "self", ".", "api", ".", "login", "(", "\"m.login.password\"", ",", "user", "=...
Login to the homeserver. Args: username (str): Account username password (str): Account password limit (int): Deprecated. How many messages to return when syncing. This will be replaced by a filter API in a later release. sync (bool): Optional. Whether to initiate a /sync request after logging in. device_id (str): Optional. ID of the client device. The server will auto-generate a device_id if this is not specified. Returns: str: Access token Raises: MatrixRequestError
[ "Login", "to", "the", "homeserver", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L259-L296
train
228,815
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.create_room
def create_room(self, alias=None, is_public=False, invitees=None): """ Create a new room on the homeserver. Args: alias (str): The canonical_alias of the room. is_public (bool): The public/private visibility of the room. invitees (str[]): A set of user ids to invite into the room. Returns: Room Raises: MatrixRequestError """ response = self.api.create_room(alias=alias, is_public=is_public, invitees=invitees) return self._mkroom(response["room_id"])
python
def create_room(self, alias=None, is_public=False, invitees=None): """ Create a new room on the homeserver. Args: alias (str): The canonical_alias of the room. is_public (bool): The public/private visibility of the room. invitees (str[]): A set of user ids to invite into the room. Returns: Room Raises: MatrixRequestError """ response = self.api.create_room(alias=alias, is_public=is_public, invitees=invitees) return self._mkroom(response["room_id"])
[ "def", "create_room", "(", "self", ",", "alias", "=", "None", ",", "is_public", "=", "False", ",", "invitees", "=", "None", ")", ":", "response", "=", "self", ".", "api", ".", "create_room", "(", "alias", "=", "alias", ",", "is_public", "=", "is_public...
Create a new room on the homeserver. Args: alias (str): The canonical_alias of the room. is_public (bool): The public/private visibility of the room. invitees (str[]): A set of user ids to invite into the room. Returns: Room Raises: MatrixRequestError
[ "Create", "a", "new", "room", "on", "the", "homeserver", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L306-L323
train
228,816
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.add_listener
def add_listener(self, callback, event_type=None): """ Add a listener that will send a callback when the client recieves an event. Args: callback (func(roomchunk)): Callback called when an event arrives. event_type (str): The event_type to filter for. Returns: uuid.UUID: Unique id of the listener, can be used to identify the listener. """ listener_uid = uuid4() # TODO: listeners should be stored in dict and accessed/deleted directly. Add # convenience method such that MatrixClient.listeners.new(Listener(...)) performs # MatrixClient.listeners[uuid4()] = Listener(...) self.listeners.append( { 'uid': listener_uid, 'callback': callback, 'event_type': event_type } ) return listener_uid
python
def add_listener(self, callback, event_type=None): """ Add a listener that will send a callback when the client recieves an event. Args: callback (func(roomchunk)): Callback called when an event arrives. event_type (str): The event_type to filter for. Returns: uuid.UUID: Unique id of the listener, can be used to identify the listener. """ listener_uid = uuid4() # TODO: listeners should be stored in dict and accessed/deleted directly. Add # convenience method such that MatrixClient.listeners.new(Listener(...)) performs # MatrixClient.listeners[uuid4()] = Listener(...) self.listeners.append( { 'uid': listener_uid, 'callback': callback, 'event_type': event_type } ) return listener_uid
[ "def", "add_listener", "(", "self", ",", "callback", ",", "event_type", "=", "None", ")", ":", "listener_uid", "=", "uuid4", "(", ")", "# TODO: listeners should be stored in dict and accessed/deleted directly. Add", "# convenience method such that MatrixClient.listeners.new(Liste...
Add a listener that will send a callback when the client recieves an event. Args: callback (func(roomchunk)): Callback called when an event arrives. event_type (str): The event_type to filter for. Returns: uuid.UUID: Unique id of the listener, can be used to identify the listener.
[ "Add", "a", "listener", "that", "will", "send", "a", "callback", "when", "the", "client", "recieves", "an", "event", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L355-L377
train
228,817
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.add_presence_listener
def add_presence_listener(self, callback): """ Add a presence listener that will send a callback when the client receives a presence update. Args: callback (func(roomchunk)): Callback called when a presence update arrives. Returns: uuid.UUID: Unique id of the listener, can be used to identify the listener. """ listener_uid = uuid4() self.presence_listeners[listener_uid] = callback return listener_uid
python
def add_presence_listener(self, callback): """ Add a presence listener that will send a callback when the client receives a presence update. Args: callback (func(roomchunk)): Callback called when a presence update arrives. Returns: uuid.UUID: Unique id of the listener, can be used to identify the listener. """ listener_uid = uuid4() self.presence_listeners[listener_uid] = callback return listener_uid
[ "def", "add_presence_listener", "(", "self", ",", "callback", ")", ":", "listener_uid", "=", "uuid4", "(", ")", "self", ".", "presence_listeners", "[", "listener_uid", "]", "=", "callback", "return", "listener_uid" ]
Add a presence listener that will send a callback when the client receives a presence update. Args: callback (func(roomchunk)): Callback called when a presence update arrives. Returns: uuid.UUID: Unique id of the listener, can be used to identify the listener.
[ "Add", "a", "presence", "listener", "that", "will", "send", "a", "callback", "when", "the", "client", "receives", "a", "presence", "update", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L388-L400
train
228,818
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.listen_forever
def listen_forever(self, timeout_ms=30000, exception_handler=None, bad_sync_timeout=5): """ Keep listening for events forever. Args: timeout_ms (int): How long to poll the Home Server for before retrying. exception_handler (func(exception)): Optional exception handler function which can be used to handle exceptions in the caller thread. bad_sync_timeout (int): Base time to wait after an error before retrying. Will be increased according to exponential backoff. """ _bad_sync_timeout = bad_sync_timeout self.should_listen = True while (self.should_listen): try: self._sync(timeout_ms) _bad_sync_timeout = bad_sync_timeout # TODO: we should also handle MatrixHttpLibError for retry in case no response except MatrixRequestError as e: logger.warning("A MatrixRequestError occured during sync.") if e.code >= 500: logger.warning("Problem occured serverside. Waiting %i seconds", bad_sync_timeout) sleep(bad_sync_timeout) _bad_sync_timeout = min(_bad_sync_timeout * 2, self.bad_sync_timeout_limit) elif exception_handler is not None: exception_handler(e) else: raise except Exception as e: logger.exception("Exception thrown during sync") if exception_handler is not None: exception_handler(e) else: raise
python
def listen_forever(self, timeout_ms=30000, exception_handler=None, bad_sync_timeout=5): """ Keep listening for events forever. Args: timeout_ms (int): How long to poll the Home Server for before retrying. exception_handler (func(exception)): Optional exception handler function which can be used to handle exceptions in the caller thread. bad_sync_timeout (int): Base time to wait after an error before retrying. Will be increased according to exponential backoff. """ _bad_sync_timeout = bad_sync_timeout self.should_listen = True while (self.should_listen): try: self._sync(timeout_ms) _bad_sync_timeout = bad_sync_timeout # TODO: we should also handle MatrixHttpLibError for retry in case no response except MatrixRequestError as e: logger.warning("A MatrixRequestError occured during sync.") if e.code >= 500: logger.warning("Problem occured serverside. Waiting %i seconds", bad_sync_timeout) sleep(bad_sync_timeout) _bad_sync_timeout = min(_bad_sync_timeout * 2, self.bad_sync_timeout_limit) elif exception_handler is not None: exception_handler(e) else: raise except Exception as e: logger.exception("Exception thrown during sync") if exception_handler is not None: exception_handler(e) else: raise
[ "def", "listen_forever", "(", "self", ",", "timeout_ms", "=", "30000", ",", "exception_handler", "=", "None", ",", "bad_sync_timeout", "=", "5", ")", ":", "_bad_sync_timeout", "=", "bad_sync_timeout", "self", ".", "should_listen", "=", "True", "while", "(", "s...
Keep listening for events forever. Args: timeout_ms (int): How long to poll the Home Server for before retrying. exception_handler (func(exception)): Optional exception handler function which can be used to handle exceptions in the caller thread. bad_sync_timeout (int): Base time to wait after an error before retrying. Will be increased according to exponential backoff.
[ "Keep", "listening", "for", "events", "forever", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L473-L510
train
228,819
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.start_listener_thread
def start_listener_thread(self, timeout_ms=30000, exception_handler=None): """ Start a listener thread to listen for events in the background. Args: timeout (int): How long to poll the Home Server for before retrying. exception_handler (func(exception)): Optional exception handler function which can be used to handle exceptions in the caller thread. """ try: thread = Thread(target=self.listen_forever, args=(timeout_ms, exception_handler)) thread.daemon = True self.sync_thread = thread self.should_listen = True thread.start() except RuntimeError: e = sys.exc_info()[0] logger.error("Error: unable to start thread. %s", str(e))
python
def start_listener_thread(self, timeout_ms=30000, exception_handler=None): """ Start a listener thread to listen for events in the background. Args: timeout (int): How long to poll the Home Server for before retrying. exception_handler (func(exception)): Optional exception handler function which can be used to handle exceptions in the caller thread. """ try: thread = Thread(target=self.listen_forever, args=(timeout_ms, exception_handler)) thread.daemon = True self.sync_thread = thread self.should_listen = True thread.start() except RuntimeError: e = sys.exc_info()[0] logger.error("Error: unable to start thread. %s", str(e))
[ "def", "start_listener_thread", "(", "self", ",", "timeout_ms", "=", "30000", ",", "exception_handler", "=", "None", ")", ":", "try", ":", "thread", "=", "Thread", "(", "target", "=", "self", ".", "listen_forever", ",", "args", "=", "(", "timeout_ms", ",",...
Start a listener thread to listen for events in the background. Args: timeout (int): How long to poll the Home Server for before retrying. exception_handler (func(exception)): Optional exception handler function which can be used to handle exceptions in the caller thread.
[ "Start", "a", "listener", "thread", "to", "listen", "for", "events", "in", "the", "background", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L512-L531
train
228,820
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.stop_listener_thread
def stop_listener_thread(self): """ Stop listener thread running in the background """ if self.sync_thread: self.should_listen = False self.sync_thread.join() self.sync_thread = None
python
def stop_listener_thread(self): """ Stop listener thread running in the background """ if self.sync_thread: self.should_listen = False self.sync_thread.join() self.sync_thread = None
[ "def", "stop_listener_thread", "(", "self", ")", ":", "if", "self", ".", "sync_thread", ":", "self", ".", "should_listen", "=", "False", "self", ".", "sync_thread", ".", "join", "(", ")", "self", ".", "sync_thread", "=", "None" ]
Stop listener thread running in the background
[ "Stop", "listener", "thread", "running", "in", "the", "background" ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L533-L539
train
228,821
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.upload
def upload(self, content, content_type, filename=None): """ Upload content to the home server and recieve a MXC url. Args: content (bytes): The data of the content. content_type (str): The mimetype of the content. filename (str): Optional. Filename of the content. Raises: MatrixUnexpectedResponse: If the homeserver gave a strange response MatrixRequestError: If the upload failed for some reason. """ try: response = self.api.media_upload(content, content_type, filename) if "content_uri" in response: return response["content_uri"] else: raise MatrixUnexpectedResponse( "The upload was successful, but content_uri wasn't found." ) except MatrixRequestError as e: raise MatrixRequestError( code=e.code, content="Upload failed: %s" % e )
python
def upload(self, content, content_type, filename=None): """ Upload content to the home server and recieve a MXC url. Args: content (bytes): The data of the content. content_type (str): The mimetype of the content. filename (str): Optional. Filename of the content. Raises: MatrixUnexpectedResponse: If the homeserver gave a strange response MatrixRequestError: If the upload failed for some reason. """ try: response = self.api.media_upload(content, content_type, filename) if "content_uri" in response: return response["content_uri"] else: raise MatrixUnexpectedResponse( "The upload was successful, but content_uri wasn't found." ) except MatrixRequestError as e: raise MatrixRequestError( code=e.code, content="Upload failed: %s" % e )
[ "def", "upload", "(", "self", ",", "content", ",", "content_type", ",", "filename", "=", "None", ")", ":", "try", ":", "response", "=", "self", ".", "api", ".", "media_upload", "(", "content", ",", "content_type", ",", "filename", ")", "if", "\"content_u...
Upload content to the home server and recieve a MXC url. Args: content (bytes): The data of the content. content_type (str): The mimetype of the content. filename (str): Optional. Filename of the content. Raises: MatrixUnexpectedResponse: If the homeserver gave a strange response MatrixRequestError: If the upload failed for some reason.
[ "Upload", "content", "to", "the", "home", "server", "and", "recieve", "a", "MXC", "url", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L542-L566
train
228,822
matrix-org/matrix-python-sdk
matrix_client/client.py
MatrixClient.remove_room_alias
def remove_room_alias(self, room_alias): """Remove mapping of an alias Args: room_alias(str): The alias to be removed. Returns: bool: True if the alias is removed, False otherwise. """ try: self.api.remove_room_alias(room_alias) return True except MatrixRequestError: return False
python
def remove_room_alias(self, room_alias): """Remove mapping of an alias Args: room_alias(str): The alias to be removed. Returns: bool: True if the alias is removed, False otherwise. """ try: self.api.remove_room_alias(room_alias) return True except MatrixRequestError: return False
[ "def", "remove_room_alias", "(", "self", ",", "room_alias", ")", ":", "try", ":", "self", ".", "api", ".", "remove_room_alias", "(", "room_alias", ")", "return", "True", "except", "MatrixRequestError", ":", "return", "False" ]
Remove mapping of an alias Args: room_alias(str): The alias to be removed. Returns: bool: True if the alias is removed, False otherwise.
[ "Remove", "mapping", "of", "an", "alias" ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/client.py#L656-L669
train
228,823
matrix-org/matrix-python-sdk
matrix_client/crypto/olm_device.py
OlmDevice.upload_identity_keys
def upload_identity_keys(self): """Uploads this device's identity keys to HS. This device must be the one used when logging in. """ device_keys = { 'user_id': self.user_id, 'device_id': self.device_id, 'algorithms': self._algorithms, 'keys': {'{}:{}'.format(alg, self.device_id): key for alg, key in self.identity_keys.items()} } self.sign_json(device_keys) ret = self.api.upload_keys(device_keys=device_keys) self.one_time_keys_manager.server_counts = ret['one_time_key_counts'] logger.info('Uploaded identity keys.')
python
def upload_identity_keys(self): """Uploads this device's identity keys to HS. This device must be the one used when logging in. """ device_keys = { 'user_id': self.user_id, 'device_id': self.device_id, 'algorithms': self._algorithms, 'keys': {'{}:{}'.format(alg, self.device_id): key for alg, key in self.identity_keys.items()} } self.sign_json(device_keys) ret = self.api.upload_keys(device_keys=device_keys) self.one_time_keys_manager.server_counts = ret['one_time_key_counts'] logger.info('Uploaded identity keys.')
[ "def", "upload_identity_keys", "(", "self", ")", ":", "device_keys", "=", "{", "'user_id'", ":", "self", ".", "user_id", ",", "'device_id'", ":", "self", ".", "device_id", ",", "'algorithms'", ":", "self", ".", "_algorithms", ",", "'keys'", ":", "{", "'{}:...
Uploads this device's identity keys to HS. This device must be the one used when logging in.
[ "Uploads", "this", "device", "s", "identity", "keys", "to", "HS", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/crypto/olm_device.py#L63-L78
train
228,824
matrix-org/matrix-python-sdk
matrix_client/crypto/olm_device.py
OlmDevice.upload_one_time_keys
def upload_one_time_keys(self, force_update=False): """Uploads new one-time keys to the HS, if needed. Args: force_update (bool): Fetch the number of one-time keys currently on the HS before uploading, even if we already know one. In most cases this should not be necessary, as we get this value from sync responses. Returns: A dict containg the number of new keys that were uploaded for each key type (signed_curve25519 or curve25519). The format is ``<key_type>: <uploaded_number>``. If no keys of a given type have been uploaded, the corresponding key will not be present. Consequently, an empty dict indicates that no keys were uploaded. """ if force_update or not self.one_time_keys_manager.server_counts: counts = self.api.upload_keys()['one_time_key_counts'] self.one_time_keys_manager.server_counts = counts signed_keys_to_upload = self.one_time_keys_manager.signed_curve25519_to_upload unsigned_keys_to_upload = self.one_time_keys_manager.curve25519_to_upload self.olm_account.generate_one_time_keys(signed_keys_to_upload + unsigned_keys_to_upload) one_time_keys = {} keys = self.olm_account.one_time_keys['curve25519'] for i, key_id in enumerate(keys): if i < signed_keys_to_upload: key = self.sign_json({'key': keys[key_id]}) key_type = 'signed_curve25519' else: key = keys[key_id] key_type = 'curve25519' one_time_keys['{}:{}'.format(key_type, key_id)] = key ret = self.api.upload_keys(one_time_keys=one_time_keys) self.one_time_keys_manager.server_counts = ret['one_time_key_counts'] self.olm_account.mark_keys_as_published() keys_uploaded = {} if unsigned_keys_to_upload: keys_uploaded['curve25519'] = unsigned_keys_to_upload if signed_keys_to_upload: keys_uploaded['signed_curve25519'] = signed_keys_to_upload logger.info('Uploaded new one-time keys: %s.', keys_uploaded) return keys_uploaded
python
def upload_one_time_keys(self, force_update=False): """Uploads new one-time keys to the HS, if needed. Args: force_update (bool): Fetch the number of one-time keys currently on the HS before uploading, even if we already know one. In most cases this should not be necessary, as we get this value from sync responses. Returns: A dict containg the number of new keys that were uploaded for each key type (signed_curve25519 or curve25519). The format is ``<key_type>: <uploaded_number>``. If no keys of a given type have been uploaded, the corresponding key will not be present. Consequently, an empty dict indicates that no keys were uploaded. """ if force_update or not self.one_time_keys_manager.server_counts: counts = self.api.upload_keys()['one_time_key_counts'] self.one_time_keys_manager.server_counts = counts signed_keys_to_upload = self.one_time_keys_manager.signed_curve25519_to_upload unsigned_keys_to_upload = self.one_time_keys_manager.curve25519_to_upload self.olm_account.generate_one_time_keys(signed_keys_to_upload + unsigned_keys_to_upload) one_time_keys = {} keys = self.olm_account.one_time_keys['curve25519'] for i, key_id in enumerate(keys): if i < signed_keys_to_upload: key = self.sign_json({'key': keys[key_id]}) key_type = 'signed_curve25519' else: key = keys[key_id] key_type = 'curve25519' one_time_keys['{}:{}'.format(key_type, key_id)] = key ret = self.api.upload_keys(one_time_keys=one_time_keys) self.one_time_keys_manager.server_counts = ret['one_time_key_counts'] self.olm_account.mark_keys_as_published() keys_uploaded = {} if unsigned_keys_to_upload: keys_uploaded['curve25519'] = unsigned_keys_to_upload if signed_keys_to_upload: keys_uploaded['signed_curve25519'] = signed_keys_to_upload logger.info('Uploaded new one-time keys: %s.', keys_uploaded) return keys_uploaded
[ "def", "upload_one_time_keys", "(", "self", ",", "force_update", "=", "False", ")", ":", "if", "force_update", "or", "not", "self", ".", "one_time_keys_manager", ".", "server_counts", ":", "counts", "=", "self", ".", "api", ".", "upload_keys", "(", ")", "[",...
Uploads new one-time keys to the HS, if needed. Args: force_update (bool): Fetch the number of one-time keys currently on the HS before uploading, even if we already know one. In most cases this should not be necessary, as we get this value from sync responses. Returns: A dict containg the number of new keys that were uploaded for each key type (signed_curve25519 or curve25519). The format is ``<key_type>: <uploaded_number>``. If no keys of a given type have been uploaded, the corresponding key will not be present. Consequently, an empty dict indicates that no keys were uploaded.
[ "Uploads", "new", "one", "-", "time", "keys", "to", "the", "HS", "if", "needed", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/crypto/olm_device.py#L80-L126
train
228,825
matrix-org/matrix-python-sdk
matrix_client/crypto/olm_device.py
OlmDevice.update_one_time_key_counts
def update_one_time_key_counts(self, counts): """Update data on one-time keys count and upload new ones if necessary. Args: counts (dict): Counts of keys currently on the HS for each key type. """ self.one_time_keys_manager.server_counts = counts if self.one_time_keys_manager.should_upload(): logger.info('Uploading new one-time keys.') self.upload_one_time_keys()
python
def update_one_time_key_counts(self, counts): """Update data on one-time keys count and upload new ones if necessary. Args: counts (dict): Counts of keys currently on the HS for each key type. """ self.one_time_keys_manager.server_counts = counts if self.one_time_keys_manager.should_upload(): logger.info('Uploading new one-time keys.') self.upload_one_time_keys()
[ "def", "update_one_time_key_counts", "(", "self", ",", "counts", ")", ":", "self", ".", "one_time_keys_manager", ".", "server_counts", "=", "counts", "if", "self", ".", "one_time_keys_manager", ".", "should_upload", "(", ")", ":", "logger", ".", "info", "(", "...
Update data on one-time keys count and upload new ones if necessary. Args: counts (dict): Counts of keys currently on the HS for each key type.
[ "Update", "data", "on", "one", "-", "time", "keys", "count", "and", "upload", "new", "ones", "if", "necessary", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/crypto/olm_device.py#L128-L137
train
228,826
matrix-org/matrix-python-sdk
matrix_client/crypto/olm_device.py
OlmDevice.sign_json
def sign_json(self, json): """Signs a JSON object. NOTE: The object is modified in-place and the return value can be ignored. As specified, this is done by encoding the JSON object without ``signatures`` or keys grouped as ``unsigned``, using canonical encoding. Args: json (dict): The JSON object to sign. Returns: The same JSON object, with a ``signatures`` key added. It is formatted as ``"signatures": ed25519:<device_id>: <base64_signature>``. """ signatures = json.pop('signatures', {}) unsigned = json.pop('unsigned', None) signature_base64 = self.olm_account.sign(encode_canonical_json(json)) key_id = 'ed25519:{}'.format(self.device_id) signatures.setdefault(self.user_id, {})[key_id] = signature_base64 json['signatures'] = signatures if unsigned: json['unsigned'] = unsigned return json
python
def sign_json(self, json): """Signs a JSON object. NOTE: The object is modified in-place and the return value can be ignored. As specified, this is done by encoding the JSON object without ``signatures`` or keys grouped as ``unsigned``, using canonical encoding. Args: json (dict): The JSON object to sign. Returns: The same JSON object, with a ``signatures`` key added. It is formatted as ``"signatures": ed25519:<device_id>: <base64_signature>``. """ signatures = json.pop('signatures', {}) unsigned = json.pop('unsigned', None) signature_base64 = self.olm_account.sign(encode_canonical_json(json)) key_id = 'ed25519:{}'.format(self.device_id) signatures.setdefault(self.user_id, {})[key_id] = signature_base64 json['signatures'] = signatures if unsigned: json['unsigned'] = unsigned return json
[ "def", "sign_json", "(", "self", ",", "json", ")", ":", "signatures", "=", "json", ".", "pop", "(", "'signatures'", ",", "{", "}", ")", "unsigned", "=", "json", ".", "pop", "(", "'unsigned'", ",", "None", ")", "signature_base64", "=", "self", ".", "o...
Signs a JSON object. NOTE: The object is modified in-place and the return value can be ignored. As specified, this is done by encoding the JSON object without ``signatures`` or keys grouped as ``unsigned``, using canonical encoding. Args: json (dict): The JSON object to sign. Returns: The same JSON object, with a ``signatures`` key added. It is formatted as ``"signatures": ed25519:<device_id>: <base64_signature>``.
[ "Signs", "a", "JSON", "object", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/crypto/olm_device.py#L139-L166
train
228,827
matrix-org/matrix-python-sdk
matrix_client/crypto/olm_device.py
OlmDevice.verify_json
def verify_json(self, json, user_key, user_id, device_id): """Verifies a signed key object's signature. The object must have a 'signatures' key associated with an object of the form `user_id: {key_id: signature}`. Args: json (dict): The JSON object to verify. user_key (str): The public ed25519 key which was used to sign the object. user_id (str): The user who owns the device. device_id (str): The device who owns the key. Returns: True if the verification was successful, False if not. """ try: signatures = json.pop('signatures') except KeyError: return False key_id = 'ed25519:{}'.format(device_id) try: signature_base64 = signatures[user_id][key_id] except KeyError: json['signatures'] = signatures return False unsigned = json.pop('unsigned', None) try: olm.ed25519_verify(user_key, encode_canonical_json(json), signature_base64) success = True except olm.utility.OlmVerifyError: success = False json['signatures'] = signatures if unsigned: json['unsigned'] = unsigned return success
python
def verify_json(self, json, user_key, user_id, device_id): """Verifies a signed key object's signature. The object must have a 'signatures' key associated with an object of the form `user_id: {key_id: signature}`. Args: json (dict): The JSON object to verify. user_key (str): The public ed25519 key which was used to sign the object. user_id (str): The user who owns the device. device_id (str): The device who owns the key. Returns: True if the verification was successful, False if not. """ try: signatures = json.pop('signatures') except KeyError: return False key_id = 'ed25519:{}'.format(device_id) try: signature_base64 = signatures[user_id][key_id] except KeyError: json['signatures'] = signatures return False unsigned = json.pop('unsigned', None) try: olm.ed25519_verify(user_key, encode_canonical_json(json), signature_base64) success = True except olm.utility.OlmVerifyError: success = False json['signatures'] = signatures if unsigned: json['unsigned'] = unsigned return success
[ "def", "verify_json", "(", "self", ",", "json", ",", "user_key", ",", "user_id", ",", "device_id", ")", ":", "try", ":", "signatures", "=", "json", ".", "pop", "(", "'signatures'", ")", "except", "KeyError", ":", "return", "False", "key_id", "=", "'ed255...
Verifies a signed key object's signature. The object must have a 'signatures' key associated with an object of the form `user_id: {key_id: signature}`. Args: json (dict): The JSON object to verify. user_key (str): The public ed25519 key which was used to sign the object. user_id (str): The user who owns the device. device_id (str): The device who owns the key. Returns: True if the verification was successful, False if not.
[ "Verifies", "a", "signed", "key", "object", "s", "signature", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/crypto/olm_device.py#L168-L207
train
228,828
matrix-org/matrix-python-sdk
matrix_client/user.py
User.get_display_name
def get_display_name(self, room=None): """Get this user's display name. Args: room (Room): Optional. When specified, return the display name of the user in this room. Returns: The display name. Defaults to the user ID if not set. """ if room: try: return room.members_displaynames[self.user_id] except KeyError: return self.user_id if not self.displayname: self.displayname = self.api.get_display_name(self.user_id) return self.displayname or self.user_id
python
def get_display_name(self, room=None): """Get this user's display name. Args: room (Room): Optional. When specified, return the display name of the user in this room. Returns: The display name. Defaults to the user ID if not set. """ if room: try: return room.members_displaynames[self.user_id] except KeyError: return self.user_id if not self.displayname: self.displayname = self.api.get_display_name(self.user_id) return self.displayname or self.user_id
[ "def", "get_display_name", "(", "self", ",", "room", "=", "None", ")", ":", "if", "room", ":", "try", ":", "return", "room", ".", "members_displaynames", "[", "self", ".", "user_id", "]", "except", "KeyError", ":", "return", "self", ".", "user_id", "if",...
Get this user's display name. Args: room (Room): Optional. When specified, return the display name of the user in this room. Returns: The display name. Defaults to the user ID if not set.
[ "Get", "this", "user", "s", "display", "name", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/user.py#L30-L47
train
228,829
matrix-org/matrix-python-sdk
matrix_client/user.py
User.set_display_name
def set_display_name(self, display_name): """ Set this users display name. Args: display_name (str): Display Name """ self.displayname = display_name return self.api.set_display_name(self.user_id, display_name)
python
def set_display_name(self, display_name): """ Set this users display name. Args: display_name (str): Display Name """ self.displayname = display_name return self.api.set_display_name(self.user_id, display_name)
[ "def", "set_display_name", "(", "self", ",", "display_name", ")", ":", "self", ".", "displayname", "=", "display_name", "return", "self", ".", "api", ".", "set_display_name", "(", "self", ".", "user_id", ",", "display_name", ")" ]
Set this users display name. Args: display_name (str): Display Name
[ "Set", "this", "users", "display", "name", "." ]
e734cce3ccd35f2d355c6a19a7a701033472498a
https://github.com/matrix-org/matrix-python-sdk/blob/e734cce3ccd35f2d355c6a19a7a701033472498a/matrix_client/user.py#L55-L62
train
228,830
diyan/pywinrm
winrm/encryption.py
Encryption.prepare_encrypted_request
def prepare_encrypted_request(self, session, endpoint, message): """ Creates a prepared request to send to the server with an encrypted message and correct headers :param session: The handle of the session to prepare requests with :param endpoint: The endpoint/server to prepare requests to :param message: The unencrypted message to send to the server :return: A prepared request that has an encrypted message """ host = urlsplit(endpoint).hostname if self.protocol == 'credssp' and len(message) > self.SIXTEN_KB: content_type = 'multipart/x-multi-encrypted' encrypted_message = b'' message_chunks = [message[i:i+self.SIXTEN_KB] for i in range(0, len(message), self.SIXTEN_KB)] for message_chunk in message_chunks: encrypted_chunk = self._encrypt_message(message_chunk, host) encrypted_message += encrypted_chunk else: content_type = 'multipart/encrypted' encrypted_message = self._encrypt_message(message, host) encrypted_message += self.MIME_BOUNDARY + b"--\r\n" request = requests.Request('POST', endpoint, data=encrypted_message) prepared_request = session.prepare_request(request) prepared_request.headers['Content-Length'] = str(len(prepared_request.body)) prepared_request.headers['Content-Type'] = '{0};protocol="{1}";boundary="Encrypted Boundary"'\ .format(content_type, self.protocol_string.decode()) return prepared_request
python
def prepare_encrypted_request(self, session, endpoint, message): """ Creates a prepared request to send to the server with an encrypted message and correct headers :param session: The handle of the session to prepare requests with :param endpoint: The endpoint/server to prepare requests to :param message: The unencrypted message to send to the server :return: A prepared request that has an encrypted message """ host = urlsplit(endpoint).hostname if self.protocol == 'credssp' and len(message) > self.SIXTEN_KB: content_type = 'multipart/x-multi-encrypted' encrypted_message = b'' message_chunks = [message[i:i+self.SIXTEN_KB] for i in range(0, len(message), self.SIXTEN_KB)] for message_chunk in message_chunks: encrypted_chunk = self._encrypt_message(message_chunk, host) encrypted_message += encrypted_chunk else: content_type = 'multipart/encrypted' encrypted_message = self._encrypt_message(message, host) encrypted_message += self.MIME_BOUNDARY + b"--\r\n" request = requests.Request('POST', endpoint, data=encrypted_message) prepared_request = session.prepare_request(request) prepared_request.headers['Content-Length'] = str(len(prepared_request.body)) prepared_request.headers['Content-Type'] = '{0};protocol="{1}";boundary="Encrypted Boundary"'\ .format(content_type, self.protocol_string.decode()) return prepared_request
[ "def", "prepare_encrypted_request", "(", "self", ",", "session", ",", "endpoint", ",", "message", ")", ":", "host", "=", "urlsplit", "(", "endpoint", ")", ".", "hostname", "if", "self", ".", "protocol", "==", "'credssp'", "and", "len", "(", "message", ")",...
Creates a prepared request to send to the server with an encrypted message and correct headers :param session: The handle of the session to prepare requests with :param endpoint: The endpoint/server to prepare requests to :param message: The unencrypted message to send to the server :return: A prepared request that has an encrypted message
[ "Creates", "a", "prepared", "request", "to", "send", "to", "the", "server", "with", "an", "encrypted", "message", "and", "correct", "headers" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/encryption.py#L58-L88
train
228,831
diyan/pywinrm
winrm/encryption.py
Encryption.parse_encrypted_response
def parse_encrypted_response(self, response): """ Takes in the encrypted response from the server and decrypts it :param response: The response that needs to be decrytped :return: The unencrypted message from the server """ content_type = response.headers['Content-Type'] if 'protocol="{0}"'.format(self.protocol_string.decode()) in content_type: host = urlsplit(response.request.url).hostname msg = self._decrypt_response(response, host) else: msg = response.text return msg
python
def parse_encrypted_response(self, response): """ Takes in the encrypted response from the server and decrypts it :param response: The response that needs to be decrytped :return: The unencrypted message from the server """ content_type = response.headers['Content-Type'] if 'protocol="{0}"'.format(self.protocol_string.decode()) in content_type: host = urlsplit(response.request.url).hostname msg = self._decrypt_response(response, host) else: msg = response.text return msg
[ "def", "parse_encrypted_response", "(", "self", ",", "response", ")", ":", "content_type", "=", "response", ".", "headers", "[", "'Content-Type'", "]", "if", "'protocol=\"{0}\"'", ".", "format", "(", "self", ".", "protocol_string", ".", "decode", "(", ")", ")"...
Takes in the encrypted response from the server and decrypts it :param response: The response that needs to be decrytped :return: The unencrypted message from the server
[ "Takes", "in", "the", "encrypted", "response", "from", "the", "server", "and", "decrypts", "it" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/encryption.py#L90-L104
train
228,832
diyan/pywinrm
winrm/protocol.py
Protocol.open_shell
def open_shell(self, i_stream='stdin', o_stream='stdout stderr', working_directory=None, env_vars=None, noprofile=False, codepage=437, lifetime=None, idle_timeout=None): """ Create a Shell on the destination host @param string i_stream: Which input stream to open. Leave this alone unless you know what you're doing (default: stdin) @param string o_stream: Which output stream to open. Leave this alone unless you know what you're doing (default: stdout stderr) @param string working_directory: the directory to create the shell in @param dict env_vars: environment variables to set for the shell. For instance: {'PATH': '%PATH%;c:/Program Files (x86)/Git/bin/', 'CYGWIN': 'nontsec codepage:utf8'} @returns The ShellId from the SOAP response. This is our open shell instance on the remote machine. @rtype string """ req = {'env:Envelope': self._get_soap_header( resource_uri='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd', # NOQA action='http://schemas.xmlsoap.org/ws/2004/09/transfer/Create')} header = req['env:Envelope']['env:Header'] header['w:OptionSet'] = { 'w:Option': [ { '@Name': 'WINRS_NOPROFILE', '#text': str(noprofile).upper() # TODO remove str call }, { '@Name': 'WINRS_CODEPAGE', '#text': str(codepage) # TODO remove str call } ] } shell = req['env:Envelope'].setdefault( 'env:Body', {}).setdefault('rsp:Shell', {}) shell['rsp:InputStreams'] = i_stream shell['rsp:OutputStreams'] = o_stream if working_directory: # TODO ensure that rsp:WorkingDirectory should be nested within rsp:Shell # NOQA shell['rsp:WorkingDirectory'] = working_directory # TODO check Lifetime param: http://msdn.microsoft.com/en-us/library/cc251546(v=PROT.13).aspx # NOQA #if lifetime: # shell['rsp:Lifetime'] = iso8601_duration.sec_to_dur(lifetime) # TODO make it so the input is given in milliseconds and converted to xs:duration # NOQA if idle_timeout: shell['rsp:IdleTimeOut'] = idle_timeout if env_vars: env = shell.setdefault('rsp:Environment', {}) for key, value in env_vars.items(): env['rsp:Variable'] = {'@Name': key, '#text': value} res = self.send_message(xmltodict.unparse(req)) #res = xmltodict.parse(res) #return res['s:Envelope']['s:Body']['x:ResourceCreated']['a:ReferenceParameters']['w:SelectorSet']['w:Selector']['#text'] root = ET.fromstring(res) return next( node for node in root.findall('.//*') if node.get('Name') == 'ShellId').text
python
def open_shell(self, i_stream='stdin', o_stream='stdout stderr', working_directory=None, env_vars=None, noprofile=False, codepage=437, lifetime=None, idle_timeout=None): """ Create a Shell on the destination host @param string i_stream: Which input stream to open. Leave this alone unless you know what you're doing (default: stdin) @param string o_stream: Which output stream to open. Leave this alone unless you know what you're doing (default: stdout stderr) @param string working_directory: the directory to create the shell in @param dict env_vars: environment variables to set for the shell. For instance: {'PATH': '%PATH%;c:/Program Files (x86)/Git/bin/', 'CYGWIN': 'nontsec codepage:utf8'} @returns The ShellId from the SOAP response. This is our open shell instance on the remote machine. @rtype string """ req = {'env:Envelope': self._get_soap_header( resource_uri='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd', # NOQA action='http://schemas.xmlsoap.org/ws/2004/09/transfer/Create')} header = req['env:Envelope']['env:Header'] header['w:OptionSet'] = { 'w:Option': [ { '@Name': 'WINRS_NOPROFILE', '#text': str(noprofile).upper() # TODO remove str call }, { '@Name': 'WINRS_CODEPAGE', '#text': str(codepage) # TODO remove str call } ] } shell = req['env:Envelope'].setdefault( 'env:Body', {}).setdefault('rsp:Shell', {}) shell['rsp:InputStreams'] = i_stream shell['rsp:OutputStreams'] = o_stream if working_directory: # TODO ensure that rsp:WorkingDirectory should be nested within rsp:Shell # NOQA shell['rsp:WorkingDirectory'] = working_directory # TODO check Lifetime param: http://msdn.microsoft.com/en-us/library/cc251546(v=PROT.13).aspx # NOQA #if lifetime: # shell['rsp:Lifetime'] = iso8601_duration.sec_to_dur(lifetime) # TODO make it so the input is given in milliseconds and converted to xs:duration # NOQA if idle_timeout: shell['rsp:IdleTimeOut'] = idle_timeout if env_vars: env = shell.setdefault('rsp:Environment', {}) for key, value in env_vars.items(): env['rsp:Variable'] = {'@Name': key, '#text': value} res = self.send_message(xmltodict.unparse(req)) #res = xmltodict.parse(res) #return res['s:Envelope']['s:Body']['x:ResourceCreated']['a:ReferenceParameters']['w:SelectorSet']['w:Selector']['#text'] root = ET.fromstring(res) return next( node for node in root.findall('.//*') if node.get('Name') == 'ShellId').text
[ "def", "open_shell", "(", "self", ",", "i_stream", "=", "'stdin'", ",", "o_stream", "=", "'stdout stderr'", ",", "working_directory", "=", "None", ",", "env_vars", "=", "None", ",", "noprofile", "=", "False", ",", "codepage", "=", "437", ",", "lifetime", "...
Create a Shell on the destination host @param string i_stream: Which input stream to open. Leave this alone unless you know what you're doing (default: stdin) @param string o_stream: Which output stream to open. Leave this alone unless you know what you're doing (default: stdout stderr) @param string working_directory: the directory to create the shell in @param dict env_vars: environment variables to set for the shell. For instance: {'PATH': '%PATH%;c:/Program Files (x86)/Git/bin/', 'CYGWIN': 'nontsec codepage:utf8'} @returns The ShellId from the SOAP response. This is our open shell instance on the remote machine. @rtype string
[ "Create", "a", "Shell", "on", "the", "destination", "host" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/protocol.py#L104-L164
train
228,833
diyan/pywinrm
winrm/protocol.py
Protocol.close_shell
def close_shell(self, shell_id): """ Close the shell @param string shell_id: The shell id on the remote machine. See #open_shell @returns This should have more error checking but it just returns true for now. @rtype bool """ message_id = uuid.uuid4() req = {'env:Envelope': self._get_soap_header( resource_uri='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd', # NOQA action='http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete', shell_id=shell_id, message_id=message_id)} # SOAP message requires empty env:Body req['env:Envelope'].setdefault('env:Body', {}) res = self.send_message(xmltodict.unparse(req)) root = ET.fromstring(res) relates_to = next( node for node in root.findall('.//*') if node.tag.endswith('RelatesTo')).text # TODO change assert into user-friendly exception assert uuid.UUID(relates_to.replace('uuid:', '')) == message_id
python
def close_shell(self, shell_id): """ Close the shell @param string shell_id: The shell id on the remote machine. See #open_shell @returns This should have more error checking but it just returns true for now. @rtype bool """ message_id = uuid.uuid4() req = {'env:Envelope': self._get_soap_header( resource_uri='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd', # NOQA action='http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete', shell_id=shell_id, message_id=message_id)} # SOAP message requires empty env:Body req['env:Envelope'].setdefault('env:Body', {}) res = self.send_message(xmltodict.unparse(req)) root = ET.fromstring(res) relates_to = next( node for node in root.findall('.//*') if node.tag.endswith('RelatesTo')).text # TODO change assert into user-friendly exception assert uuid.UUID(relates_to.replace('uuid:', '')) == message_id
[ "def", "close_shell", "(", "self", ",", "shell_id", ")", ":", "message_id", "=", "uuid", ".", "uuid4", "(", ")", "req", "=", "{", "'env:Envelope'", ":", "self", ".", "_get_soap_header", "(", "resource_uri", "=", "'http://schemas.microsoft.com/wbem/wsman/1/windows/...
Close the shell @param string shell_id: The shell id on the remote machine. See #open_shell @returns This should have more error checking but it just returns true for now. @rtype bool
[ "Close", "the", "shell" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/protocol.py#L274-L299
train
228,834
diyan/pywinrm
winrm/protocol.py
Protocol.run_command
def run_command( self, shell_id, command, arguments=(), console_mode_stdin=True, skip_cmd_shell=False): """ Run a command on a machine with an open shell @param string shell_id: The shell id on the remote machine. See #open_shell @param string command: The command to run on the remote machine @param iterable of string arguments: An array of arguments for this command @param bool console_mode_stdin: (default: True) @param bool skip_cmd_shell: (default: False) @return: The CommandId from the SOAP response. This is the ID we need to query in order to get output. @rtype string """ req = {'env:Envelope': self._get_soap_header( resource_uri='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd', # NOQA action='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/Command', # NOQA shell_id=shell_id)} header = req['env:Envelope']['env:Header'] header['w:OptionSet'] = { 'w:Option': [ { '@Name': 'WINRS_CONSOLEMODE_STDIN', '#text': str(console_mode_stdin).upper() }, { '@Name': 'WINRS_SKIP_CMD_SHELL', '#text': str(skip_cmd_shell).upper() } ] } cmd_line = req['env:Envelope'].setdefault( 'env:Body', {}).setdefault('rsp:CommandLine', {}) cmd_line['rsp:Command'] = {'#text': command} if arguments: unicode_args = [a if isinstance(a, text_type) else a.decode('utf-8') for a in arguments] cmd_line['rsp:Arguments'] = u' '.join(unicode_args) res = self.send_message(xmltodict.unparse(req)) root = ET.fromstring(res) command_id = next( node for node in root.findall('.//*') if node.tag.endswith('CommandId')).text return command_id
python
def run_command( self, shell_id, command, arguments=(), console_mode_stdin=True, skip_cmd_shell=False): """ Run a command on a machine with an open shell @param string shell_id: The shell id on the remote machine. See #open_shell @param string command: The command to run on the remote machine @param iterable of string arguments: An array of arguments for this command @param bool console_mode_stdin: (default: True) @param bool skip_cmd_shell: (default: False) @return: The CommandId from the SOAP response. This is the ID we need to query in order to get output. @rtype string """ req = {'env:Envelope': self._get_soap_header( resource_uri='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/cmd', # NOQA action='http://schemas.microsoft.com/wbem/wsman/1/windows/shell/Command', # NOQA shell_id=shell_id)} header = req['env:Envelope']['env:Header'] header['w:OptionSet'] = { 'w:Option': [ { '@Name': 'WINRS_CONSOLEMODE_STDIN', '#text': str(console_mode_stdin).upper() }, { '@Name': 'WINRS_SKIP_CMD_SHELL', '#text': str(skip_cmd_shell).upper() } ] } cmd_line = req['env:Envelope'].setdefault( 'env:Body', {}).setdefault('rsp:CommandLine', {}) cmd_line['rsp:Command'] = {'#text': command} if arguments: unicode_args = [a if isinstance(a, text_type) else a.decode('utf-8') for a in arguments] cmd_line['rsp:Arguments'] = u' '.join(unicode_args) res = self.send_message(xmltodict.unparse(req)) root = ET.fromstring(res) command_id = next( node for node in root.findall('.//*') if node.tag.endswith('CommandId')).text return command_id
[ "def", "run_command", "(", "self", ",", "shell_id", ",", "command", ",", "arguments", "=", "(", ")", ",", "console_mode_stdin", "=", "True", ",", "skip_cmd_shell", "=", "False", ")", ":", "req", "=", "{", "'env:Envelope'", ":", "self", ".", "_get_soap_head...
Run a command on a machine with an open shell @param string shell_id: The shell id on the remote machine. See #open_shell @param string command: The command to run on the remote machine @param iterable of string arguments: An array of arguments for this command @param bool console_mode_stdin: (default: True) @param bool skip_cmd_shell: (default: False) @return: The CommandId from the SOAP response. This is the ID we need to query in order to get output. @rtype string
[ "Run", "a", "command", "on", "a", "machine", "with", "an", "open", "shell" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/protocol.py#L301-L346
train
228,835
diyan/pywinrm
winrm/protocol.py
Protocol.get_command_output
def get_command_output(self, shell_id, command_id): """ Get the Output of the given shell and command @param string shell_id: The shell id on the remote machine. See #open_shell @param string command_id: The command id on the remote machine. See #run_command #@return [Hash] Returns a Hash with a key :exitcode and :data. Data is an Array of Hashes where the cooresponding key # is either :stdout or :stderr. The reason it is in an Array so so we can get the output in the order it ocurrs on # the console. """ stdout_buffer, stderr_buffer = [], [] command_done = False while not command_done: try: stdout, stderr, return_code, command_done = \ self._raw_get_command_output(shell_id, command_id) stdout_buffer.append(stdout) stderr_buffer.append(stderr) except WinRMOperationTimeoutError as e: # this is an expected error when waiting for a long-running process, just silently retry pass return b''.join(stdout_buffer), b''.join(stderr_buffer), return_code
python
def get_command_output(self, shell_id, command_id): """ Get the Output of the given shell and command @param string shell_id: The shell id on the remote machine. See #open_shell @param string command_id: The command id on the remote machine. See #run_command #@return [Hash] Returns a Hash with a key :exitcode and :data. Data is an Array of Hashes where the cooresponding key # is either :stdout or :stderr. The reason it is in an Array so so we can get the output in the order it ocurrs on # the console. """ stdout_buffer, stderr_buffer = [], [] command_done = False while not command_done: try: stdout, stderr, return_code, command_done = \ self._raw_get_command_output(shell_id, command_id) stdout_buffer.append(stdout) stderr_buffer.append(stderr) except WinRMOperationTimeoutError as e: # this is an expected error when waiting for a long-running process, just silently retry pass return b''.join(stdout_buffer), b''.join(stderr_buffer), return_code
[ "def", "get_command_output", "(", "self", ",", "shell_id", ",", "command_id", ")", ":", "stdout_buffer", ",", "stderr_buffer", "=", "[", "]", ",", "[", "]", "command_done", "=", "False", "while", "not", "command_done", ":", "try", ":", "stdout", ",", "stde...
Get the Output of the given shell and command @param string shell_id: The shell id on the remote machine. See #open_shell @param string command_id: The command id on the remote machine. See #run_command #@return [Hash] Returns a Hash with a key :exitcode and :data. Data is an Array of Hashes where the cooresponding key # is either :stdout or :stderr. The reason it is in an Array so so we can get the output in the order it ocurrs on # the console.
[ "Get", "the", "Output", "of", "the", "given", "shell", "and", "command" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/protocol.py#L380-L404
train
228,836
diyan/pywinrm
winrm/__init__.py
Session.run_ps
def run_ps(self, script): """base64 encodes a Powershell script and executes the powershell encoded script command """ # must use utf16 little endian on windows encoded_ps = b64encode(script.encode('utf_16_le')).decode('ascii') rs = self.run_cmd('powershell -encodedcommand {0}'.format(encoded_ps)) if len(rs.std_err): # if there was an error message, clean it it up and make it human # readable rs.std_err = self._clean_error_msg(rs.std_err) return rs
python
def run_ps(self, script): """base64 encodes a Powershell script and executes the powershell encoded script command """ # must use utf16 little endian on windows encoded_ps = b64encode(script.encode('utf_16_le')).decode('ascii') rs = self.run_cmd('powershell -encodedcommand {0}'.format(encoded_ps)) if len(rs.std_err): # if there was an error message, clean it it up and make it human # readable rs.std_err = self._clean_error_msg(rs.std_err) return rs
[ "def", "run_ps", "(", "self", ",", "script", ")", ":", "# must use utf16 little endian on windows", "encoded_ps", "=", "b64encode", "(", "script", ".", "encode", "(", "'utf_16_le'", ")", ")", ".", "decode", "(", "'ascii'", ")", "rs", "=", "self", ".", "run_c...
base64 encodes a Powershell script and executes the powershell encoded script command
[ "base64", "encodes", "a", "Powershell", "script", "and", "executes", "the", "powershell", "encoded", "script", "command" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/__init__.py#L44-L55
train
228,837
diyan/pywinrm
winrm/__init__.py
Session._clean_error_msg
def _clean_error_msg(self, msg): """converts a Powershell CLIXML message to a more human readable string """ # TODO prepare unit test, beautify code # if the msg does not start with this, return it as is if msg.startswith(b"#< CLIXML\r\n"): # for proper xml, we need to remove the CLIXML part # (the first line) msg_xml = msg[11:] try: # remove the namespaces from the xml for easier processing msg_xml = self._strip_namespace(msg_xml) root = ET.fromstring(msg_xml) # the S node is the error message, find all S nodes nodes = root.findall("./S") new_msg = "" for s in nodes: # append error msg string to result, also # the hex chars represent CRLF so we replace with newline new_msg += s.text.replace("_x000D__x000A_", "\n") except Exception as e: # if any of the above fails, the msg was not true xml # print a warning and return the orignal string # TODO do not print, raise user defined error instead print("Warning: there was a problem converting the Powershell" " error message: %s" % (e)) else: # if new_msg was populated, that's our error message # otherwise the original error message will be used if len(new_msg): # remove leading and trailing whitespace while we are here return new_msg.strip().encode('utf-8') # either failed to decode CLIXML or there was nothing to decode # just return the original message return msg
python
def _clean_error_msg(self, msg): """converts a Powershell CLIXML message to a more human readable string """ # TODO prepare unit test, beautify code # if the msg does not start with this, return it as is if msg.startswith(b"#< CLIXML\r\n"): # for proper xml, we need to remove the CLIXML part # (the first line) msg_xml = msg[11:] try: # remove the namespaces from the xml for easier processing msg_xml = self._strip_namespace(msg_xml) root = ET.fromstring(msg_xml) # the S node is the error message, find all S nodes nodes = root.findall("./S") new_msg = "" for s in nodes: # append error msg string to result, also # the hex chars represent CRLF so we replace with newline new_msg += s.text.replace("_x000D__x000A_", "\n") except Exception as e: # if any of the above fails, the msg was not true xml # print a warning and return the orignal string # TODO do not print, raise user defined error instead print("Warning: there was a problem converting the Powershell" " error message: %s" % (e)) else: # if new_msg was populated, that's our error message # otherwise the original error message will be used if len(new_msg): # remove leading and trailing whitespace while we are here return new_msg.strip().encode('utf-8') # either failed to decode CLIXML or there was nothing to decode # just return the original message return msg
[ "def", "_clean_error_msg", "(", "self", ",", "msg", ")", ":", "# TODO prepare unit test, beautify code", "# if the msg does not start with this, return it as is", "if", "msg", ".", "startswith", "(", "b\"#< CLIXML\\r\\n\"", ")", ":", "# for proper xml, we need to remove the CLIXM...
converts a Powershell CLIXML message to a more human readable string
[ "converts", "a", "Powershell", "CLIXML", "message", "to", "a", "more", "human", "readable", "string" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/__init__.py#L57-L92
train
228,838
diyan/pywinrm
winrm/__init__.py
Session._strip_namespace
def _strip_namespace(self, xml): """strips any namespaces from an xml string""" p = re.compile(b"xmlns=*[\"\"][^\"\"]*[\"\"]") allmatches = p.finditer(xml) for match in allmatches: xml = xml.replace(match.group(), b"") return xml
python
def _strip_namespace(self, xml): """strips any namespaces from an xml string""" p = re.compile(b"xmlns=*[\"\"][^\"\"]*[\"\"]") allmatches = p.finditer(xml) for match in allmatches: xml = xml.replace(match.group(), b"") return xml
[ "def", "_strip_namespace", "(", "self", ",", "xml", ")", ":", "p", "=", "re", ".", "compile", "(", "b\"xmlns=*[\\\"\\\"][^\\\"\\\"]*[\\\"\\\"]\"", ")", "allmatches", "=", "p", ".", "finditer", "(", "xml", ")", "for", "match", "in", "allmatches", ":", "xml", ...
strips any namespaces from an xml string
[ "strips", "any", "namespaces", "from", "an", "xml", "string" ]
ed4c2d991d9d0fe921dfc958c475c4c6a570519e
https://github.com/diyan/pywinrm/blob/ed4c2d991d9d0fe921dfc958c475c4c6a570519e/winrm/__init__.py#L94-L100
train
228,839
pyvisa/pyvisa
pyvisa/errors.py
return_handler
def return_handler(module_logger, first_is_session=True): """Decorator for VISA library classes. """ def _outer(visa_library_method): def _inner(self, session, *args, **kwargs): ret_value = visa_library_method(*args, **kwargs) module_logger.debug('%s%s -> %r', visa_library_method.__name__, _args_to_str(args, kwargs), ret_value) try: ret_value = constants.StatusCode(ret_value) except ValueError: pass if first_is_session: self._last_status = ret_value self._last_status_in_session[session] = ret_value if ret_value < 0: raise VisaIOError(ret_value) if ret_value in self.issue_warning_on: if session and ret_value not in self._ignore_warning_in_session[session]: module_logger.warn(VisaIOWarning(ret_value), stacklevel=2) return ret_value return _inner return _outer
python
def return_handler(module_logger, first_is_session=True): """Decorator for VISA library classes. """ def _outer(visa_library_method): def _inner(self, session, *args, **kwargs): ret_value = visa_library_method(*args, **kwargs) module_logger.debug('%s%s -> %r', visa_library_method.__name__, _args_to_str(args, kwargs), ret_value) try: ret_value = constants.StatusCode(ret_value) except ValueError: pass if first_is_session: self._last_status = ret_value self._last_status_in_session[session] = ret_value if ret_value < 0: raise VisaIOError(ret_value) if ret_value in self.issue_warning_on: if session and ret_value not in self._ignore_warning_in_session[session]: module_logger.warn(VisaIOWarning(ret_value), stacklevel=2) return ret_value return _inner return _outer
[ "def", "return_handler", "(", "module_logger", ",", "first_is_session", "=", "True", ")", ":", "def", "_outer", "(", "visa_library_method", ")", ":", "def", "_inner", "(", "self", ",", "session", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "ret_...
Decorator for VISA library classes.
[ "Decorator", "for", "VISA", "library", "classes", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/errors.py#L501-L535
train
228,840
pyvisa/pyvisa
pyvisa/highlevel.py
list_backends
def list_backends(): """Return installed backends. Backends are installed python packages named pyvisa-<something> where <something> is the name of the backend. :rtype: list """ return ['ni'] + [name for (loader, name, ispkg) in pkgutil.iter_modules() if name.startswith('pyvisa-') and not name.endswith('-script')]
python
def list_backends(): """Return installed backends. Backends are installed python packages named pyvisa-<something> where <something> is the name of the backend. :rtype: list """ return ['ni'] + [name for (loader, name, ispkg) in pkgutil.iter_modules() if name.startswith('pyvisa-') and not name.endswith('-script')]
[ "def", "list_backends", "(", ")", ":", "return", "[", "'ni'", "]", "+", "[", "name", "for", "(", "loader", ",", "name", ",", "ispkg", ")", "in", "pkgutil", ".", "iter_modules", "(", ")", "if", "name", ".", "startswith", "(", "'pyvisa-'", ")", "and", ...
Return installed backends. Backends are installed python packages named pyvisa-<something> where <something> is the name of the backend. :rtype: list
[ "Return", "installed", "backends", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L1412-L1421
train
228,841
pyvisa/pyvisa
pyvisa/highlevel.py
get_wrapper_class
def get_wrapper_class(backend_name): """Return the WRAPPER_CLASS for a given backend. :rtype: pyvisa.highlevel.VisaLibraryBase """ try: return _WRAPPERS[backend_name] except KeyError: if backend_name == 'ni': from .ctwrapper import NIVisaLibrary _WRAPPERS['ni'] = NIVisaLibrary return NIVisaLibrary try: pkg = __import__('pyvisa-' + backend_name) _WRAPPERS[backend_name] = cls = pkg.WRAPPER_CLASS return cls except ImportError: raise ValueError('Wrapper not found: No package named pyvisa-%s' % backend_name)
python
def get_wrapper_class(backend_name): """Return the WRAPPER_CLASS for a given backend. :rtype: pyvisa.highlevel.VisaLibraryBase """ try: return _WRAPPERS[backend_name] except KeyError: if backend_name == 'ni': from .ctwrapper import NIVisaLibrary _WRAPPERS['ni'] = NIVisaLibrary return NIVisaLibrary try: pkg = __import__('pyvisa-' + backend_name) _WRAPPERS[backend_name] = cls = pkg.WRAPPER_CLASS return cls except ImportError: raise ValueError('Wrapper not found: No package named pyvisa-%s' % backend_name)
[ "def", "get_wrapper_class", "(", "backend_name", ")", ":", "try", ":", "return", "_WRAPPERS", "[", "backend_name", "]", "except", "KeyError", ":", "if", "backend_name", "==", "'ni'", ":", "from", ".", "ctwrapper", "import", "NIVisaLibrary", "_WRAPPERS", "[", "...
Return the WRAPPER_CLASS for a given backend. :rtype: pyvisa.highlevel.VisaLibraryBase
[ "Return", "the", "WRAPPER_CLASS", "for", "a", "given", "backend", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L1429-L1447
train
228,842
pyvisa/pyvisa
pyvisa/highlevel.py
open_visa_library
def open_visa_library(specification): """Helper function to create a VISA library wrapper. In general, you should not use the function directly. The VISA library wrapper will be created automatically when you create a ResourceManager object. """ if not specification: logger.debug('No visa library specified, trying to find alternatives.') try: specification = os.environ['PYVISA_LIBRARY'] except KeyError: logger.debug('Environment variable PYVISA_LIBRARY is unset.') try: argument, wrapper = specification.split('@') except ValueError: argument = specification wrapper = None # Flag that we need a fallback, but avoid nested exceptions if wrapper is None: if argument: # some filename given wrapper = 'ni' else: wrapper = _get_default_wrapper() cls = get_wrapper_class(wrapper) try: return cls(argument) except Exception as e: logger.debug('Could not open VISA wrapper %s: %s\n%s', cls, str(argument), e) raise
python
def open_visa_library(specification): """Helper function to create a VISA library wrapper. In general, you should not use the function directly. The VISA library wrapper will be created automatically when you create a ResourceManager object. """ if not specification: logger.debug('No visa library specified, trying to find alternatives.') try: specification = os.environ['PYVISA_LIBRARY'] except KeyError: logger.debug('Environment variable PYVISA_LIBRARY is unset.') try: argument, wrapper = specification.split('@') except ValueError: argument = specification wrapper = None # Flag that we need a fallback, but avoid nested exceptions if wrapper is None: if argument: # some filename given wrapper = 'ni' else: wrapper = _get_default_wrapper() cls = get_wrapper_class(wrapper) try: return cls(argument) except Exception as e: logger.debug('Could not open VISA wrapper %s: %s\n%s', cls, str(argument), e) raise
[ "def", "open_visa_library", "(", "specification", ")", ":", "if", "not", "specification", ":", "logger", ".", "debug", "(", "'No visa library specified, trying to find alternatives.'", ")", "try", ":", "specification", "=", "os", ".", "environ", "[", "'PYVISA_LIBRARY'...
Helper function to create a VISA library wrapper. In general, you should not use the function directly. The VISA library wrapper will be created automatically when you create a ResourceManager object.
[ "Helper", "function", "to", "create", "a", "VISA", "library", "wrapper", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L1474-L1505
train
228,843
pyvisa/pyvisa
pyvisa/highlevel.py
VisaLibraryBase.get_last_status_in_session
def get_last_status_in_session(self, session): """Last status in session. Helper function to be called by resources properties. """ try: return self._last_status_in_session[session] except KeyError: raise errors.Error('The session %r does not seem to be valid as it does not have any last status' % session)
python
def get_last_status_in_session(self, session): """Last status in session. Helper function to be called by resources properties. """ try: return self._last_status_in_session[session] except KeyError: raise errors.Error('The session %r does not seem to be valid as it does not have any last status' % session)
[ "def", "get_last_status_in_session", "(", "self", ",", "session", ")", ":", "try", ":", "return", "self", ".", "_last_status_in_session", "[", "session", "]", "except", "KeyError", ":", "raise", "errors", ".", "Error", "(", "'The session %r does not seem to be valid...
Last status in session. Helper function to be called by resources properties.
[ "Last", "status", "in", "session", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L154-L162
train
228,844
pyvisa/pyvisa
pyvisa/highlevel.py
VisaLibraryBase.ignore_warning
def ignore_warning(self, session, *warnings_constants): """A session dependent context for ignoring warnings :param session: Unique logical identifier to a session. :param warnings_constants: constants identifying the warnings to ignore. """ self._ignore_warning_in_session[session].update(warnings_constants) yield self._ignore_warning_in_session[session].difference_update(warnings_constants)
python
def ignore_warning(self, session, *warnings_constants): """A session dependent context for ignoring warnings :param session: Unique logical identifier to a session. :param warnings_constants: constants identifying the warnings to ignore. """ self._ignore_warning_in_session[session].update(warnings_constants) yield self._ignore_warning_in_session[session].difference_update(warnings_constants)
[ "def", "ignore_warning", "(", "self", ",", "session", ",", "*", "warnings_constants", ")", ":", "self", ".", "_ignore_warning_in_session", "[", "session", "]", ".", "update", "(", "warnings_constants", ")", "yield", "self", ".", "_ignore_warning_in_session", "[", ...
A session dependent context for ignoring warnings :param session: Unique logical identifier to a session. :param warnings_constants: constants identifying the warnings to ignore.
[ "A", "session", "dependent", "context", "for", "ignoring", "warnings" ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L165-L173
train
228,845
pyvisa/pyvisa
pyvisa/highlevel.py
VisaLibraryBase.uninstall_all_visa_handlers
def uninstall_all_visa_handlers(self, session): """Uninstalls all previously installed handlers for a particular session. :param session: Unique logical identifier to a session. If None, operates on all sessions. """ if session is not None: self.__uninstall_all_handlers_helper(session) else: for session in list(self.handlers): self.__uninstall_all_handlers_helper(session)
python
def uninstall_all_visa_handlers(self, session): """Uninstalls all previously installed handlers for a particular session. :param session: Unique logical identifier to a session. If None, operates on all sessions. """ if session is not None: self.__uninstall_all_handlers_helper(session) else: for session in list(self.handlers): self.__uninstall_all_handlers_helper(session)
[ "def", "uninstall_all_visa_handlers", "(", "self", ",", "session", ")", ":", "if", "session", "is", "not", "None", ":", "self", ".", "__uninstall_all_handlers_helper", "(", "session", ")", "else", ":", "for", "session", "in", "list", "(", "self", ".", "handl...
Uninstalls all previously installed handlers for a particular session. :param session: Unique logical identifier to a session. If None, operates on all sessions.
[ "Uninstalls", "all", "previously", "installed", "handlers", "for", "a", "particular", "session", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L214-L224
train
228,846
pyvisa/pyvisa
pyvisa/highlevel.py
VisaLibraryBase.write_memory
def write_memory(self, session, space, offset, data, width, extended=False): """Write in an 8-bit, 16-bit, 32-bit, 64-bit value to the specified memory space and offset. Corresponds to viOut* functions of the VISA library. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param width: Number of bits to read. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if width == 8: return self.out_8(session, space, offset, data, extended) elif width == 16: return self.out_16(session, space, offset, data, extended) elif width == 32: return self.out_32(session, space, offset, data, extended) elif width == 64: return self.out_64(session, space, offset, data, extended) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32, or 64' % width)
python
def write_memory(self, session, space, offset, data, width, extended=False): """Write in an 8-bit, 16-bit, 32-bit, 64-bit value to the specified memory space and offset. Corresponds to viOut* functions of the VISA library. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param width: Number of bits to read. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if width == 8: return self.out_8(session, space, offset, data, extended) elif width == 16: return self.out_16(session, space, offset, data, extended) elif width == 32: return self.out_32(session, space, offset, data, extended) elif width == 64: return self.out_64(session, space, offset, data, extended) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32, or 64' % width)
[ "def", "write_memory", "(", "self", ",", "session", ",", "space", ",", "offset", ",", "data", ",", "width", ",", "extended", "=", "False", ")", ":", "if", "width", "==", "8", ":", "return", "self", ".", "out_8", "(", "session", ",", "space", ",", "...
Write in an 8-bit, 16-bit, 32-bit, 64-bit value to the specified memory space and offset. Corresponds to viOut* functions of the VISA library. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param width: Number of bits to read. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "in", "an", "8", "-", "bit", "16", "-", "bit", "32", "-", "bit", "64", "-", "bit", "value", "to", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L250-L273
train
228,847
pyvisa/pyvisa
pyvisa/highlevel.py
VisaLibraryBase.peek
def peek(self, session, address, width): """Read an 8, 16, 32, or 64-bit value from the specified address. Corresponds to viPeek* functions of the VISA library. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ if width == 8: return self.peek_8(session, address) elif width == 16: return self.peek_16(session, address) elif width == 32: return self.peek_32(session, address) elif width == 64: return self.peek_64(session, address) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32 or 64' % width)
python
def peek(self, session, address, width): """Read an 8, 16, 32, or 64-bit value from the specified address. Corresponds to viPeek* functions of the VISA library. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ if width == 8: return self.peek_8(session, address) elif width == 16: return self.peek_16(session, address) elif width == 32: return self.peek_32(session, address) elif width == 64: return self.peek_64(session, address) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32 or 64' % width)
[ "def", "peek", "(", "self", ",", "session", ",", "address", ",", "width", ")", ":", "if", "width", "==", "8", ":", "return", "self", ".", "peek_8", "(", "session", ",", "address", ")", "elif", "width", "==", "16", ":", "return", "self", ".", "peek_...
Read an 8, 16, 32, or 64-bit value from the specified address. Corresponds to viPeek* functions of the VISA library. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode`
[ "Read", "an", "8", "16", "32", "or", "64", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L328-L349
train
228,848
pyvisa/pyvisa
pyvisa/highlevel.py
VisaLibraryBase.poke
def poke(self, session, address, width, data): """Writes an 8, 16, 32, or 64-bit value from the specified address. Corresponds to viPoke* functions of the VISA library. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :param data: Data to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if width == 8: return self.poke_8(session, address, data) elif width == 16: return self.poke_16(session, address, data) elif width == 32: return self.poke_32(session, address, data) elif width == 64: return self.poke_64(session, address, data) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32, or 64' % width)
python
def poke(self, session, address, width, data): """Writes an 8, 16, 32, or 64-bit value from the specified address. Corresponds to viPoke* functions of the VISA library. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :param data: Data to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if width == 8: return self.poke_8(session, address, data) elif width == 16: return self.poke_16(session, address, data) elif width == 32: return self.poke_32(session, address, data) elif width == 64: return self.poke_64(session, address, data) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32, or 64' % width)
[ "def", "poke", "(", "self", ",", "session", ",", "address", ",", "width", ",", "data", ")", ":", "if", "width", "==", "8", ":", "return", "self", ".", "poke_8", "(", "session", ",", "address", ",", "data", ")", "elif", "width", "==", "16", ":", "...
Writes an 8, 16, 32, or 64-bit value from the specified address. Corresponds to viPoke* functions of the VISA library. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :param data: Data to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Writes", "an", "8", "16", "32", "or", "64", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L351-L373
train
228,849
pyvisa/pyvisa
pyvisa/highlevel.py
ResourceManager.close
def close(self): """Close the resource manager session. """ try: logger.debug('Closing ResourceManager (session: %s)', self.session) # Cleanly close all resources when closing the manager. for resource in self._created_resources: resource.close() self.visalib.close(self.session) self.session = None self.visalib.resource_manager = None except errors.InvalidSession: pass
python
def close(self): """Close the resource manager session. """ try: logger.debug('Closing ResourceManager (session: %s)', self.session) # Cleanly close all resources when closing the manager. for resource in self._created_resources: resource.close() self.visalib.close(self.session) self.session = None self.visalib.resource_manager = None except errors.InvalidSession: pass
[ "def", "close", "(", "self", ")", ":", "try", ":", "logger", ".", "debug", "(", "'Closing ResourceManager (session: %s)'", ",", "self", ".", "session", ")", "# Cleanly close all resources when closing the manager.", "for", "resource", "in", "self", ".", "_created_reso...
Close the resource manager session.
[ "Close", "the", "resource", "manager", "session", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L1586-L1598
train
228,850
pyvisa/pyvisa
pyvisa/highlevel.py
ResourceManager.list_resources_info
def list_resources_info(self, query='?*::INSTR'): """Returns a dictionary mapping resource names to resource extended information of all connected devices matching query. For details of the VISA Resource Regular Expression syntax used in query, refer to list_resources(). :param query: a VISA Resource Regular Expression used to match devices. :return: Mapping of resource name to ResourceInfo :rtype: dict[str, :class:`pyvisa.highlevel.ResourceInfo`] """ return dict((resource, self.resource_info(resource)) for resource in self.list_resources(query))
python
def list_resources_info(self, query='?*::INSTR'): """Returns a dictionary mapping resource names to resource extended information of all connected devices matching query. For details of the VISA Resource Regular Expression syntax used in query, refer to list_resources(). :param query: a VISA Resource Regular Expression used to match devices. :return: Mapping of resource name to ResourceInfo :rtype: dict[str, :class:`pyvisa.highlevel.ResourceInfo`] """ return dict((resource, self.resource_info(resource)) for resource in self.list_resources(query))
[ "def", "list_resources_info", "(", "self", ",", "query", "=", "'?*::INSTR'", ")", ":", "return", "dict", "(", "(", "resource", ",", "self", ".", "resource_info", "(", "resource", ")", ")", "for", "resource", "in", "self", ".", "list_resources", "(", "query...
Returns a dictionary mapping resource names to resource extended information of all connected devices matching query. For details of the VISA Resource Regular Expression syntax used in query, refer to list_resources(). :param query: a VISA Resource Regular Expression used to match devices. :return: Mapping of resource name to ResourceInfo :rtype: dict[str, :class:`pyvisa.highlevel.ResourceInfo`]
[ "Returns", "a", "dictionary", "mapping", "resource", "names", "to", "resource", "extended", "information", "of", "all", "connected", "devices", "matching", "query", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L1647-L1660
train
228,851
pyvisa/pyvisa
pyvisa/highlevel.py
ResourceManager.open_bare_resource
def open_bare_resource(self, resource_name, access_mode=constants.AccessModes.no_lock, open_timeout=constants.VI_TMO_IMMEDIATE): """Open the specified resource without wrapping into a class :param resource_name: name or alias of the resource to open. :param access_mode: access mode. :type access_mode: :class:`pyvisa.constants.AccessModes` :param open_timeout: time out to open. :return: Unique logical identifier reference to a session. """ return self.visalib.open(self.session, resource_name, access_mode, open_timeout)
python
def open_bare_resource(self, resource_name, access_mode=constants.AccessModes.no_lock, open_timeout=constants.VI_TMO_IMMEDIATE): """Open the specified resource without wrapping into a class :param resource_name: name or alias of the resource to open. :param access_mode: access mode. :type access_mode: :class:`pyvisa.constants.AccessModes` :param open_timeout: time out to open. :return: Unique logical identifier reference to a session. """ return self.visalib.open(self.session, resource_name, access_mode, open_timeout)
[ "def", "open_bare_resource", "(", "self", ",", "resource_name", ",", "access_mode", "=", "constants", ".", "AccessModes", ".", "no_lock", ",", "open_timeout", "=", "constants", ".", "VI_TMO_IMMEDIATE", ")", ":", "return", "self", ".", "visalib", ".", "open", "...
Open the specified resource without wrapping into a class :param resource_name: name or alias of the resource to open. :param access_mode: access mode. :type access_mode: :class:`pyvisa.constants.AccessModes` :param open_timeout: time out to open. :return: Unique logical identifier reference to a session.
[ "Open", "the", "specified", "resource", "without", "wrapping", "into", "a", "class" ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L1677-L1689
train
228,852
pyvisa/pyvisa
pyvisa/highlevel.py
ResourceManager.open_resource
def open_resource(self, resource_name, access_mode=constants.AccessModes.no_lock, open_timeout=constants.VI_TMO_IMMEDIATE, resource_pyclass=None, **kwargs): """Return an instrument for the resource name. :param resource_name: name or alias of the resource to open. :param access_mode: access mode. :type access_mode: :class:`pyvisa.constants.AccessModes` :param open_timeout: time out to open. :param resource_pyclass: resource python class to use to instantiate the Resource. Defaults to None: select based on the resource name. :param kwargs: keyword arguments to be used to change instrument attributes after construction. :rtype: :class:`pyvisa.resources.Resource` """ if resource_pyclass is None: info = self.resource_info(resource_name, extended=True) try: resource_pyclass = self._resource_classes[(info.interface_type, info.resource_class)] except KeyError: resource_pyclass = self._resource_classes[(constants.InterfaceType.unknown, '')] logger.warning('There is no class defined for %r. Using Resource', (info.interface_type, info.resource_class)) res = resource_pyclass(self, resource_name) for key in kwargs.keys(): try: getattr(res, key) present = True except AttributeError: present = False except errors.InvalidSession: present = True if not present: raise ValueError('%r is not a valid attribute for type %s' % (key, res.__class__.__name__)) res.open(access_mode, open_timeout) self._created_resources.add(res) for key, value in kwargs.items(): setattr(res, key, value) return res
python
def open_resource(self, resource_name, access_mode=constants.AccessModes.no_lock, open_timeout=constants.VI_TMO_IMMEDIATE, resource_pyclass=None, **kwargs): """Return an instrument for the resource name. :param resource_name: name or alias of the resource to open. :param access_mode: access mode. :type access_mode: :class:`pyvisa.constants.AccessModes` :param open_timeout: time out to open. :param resource_pyclass: resource python class to use to instantiate the Resource. Defaults to None: select based on the resource name. :param kwargs: keyword arguments to be used to change instrument attributes after construction. :rtype: :class:`pyvisa.resources.Resource` """ if resource_pyclass is None: info = self.resource_info(resource_name, extended=True) try: resource_pyclass = self._resource_classes[(info.interface_type, info.resource_class)] except KeyError: resource_pyclass = self._resource_classes[(constants.InterfaceType.unknown, '')] logger.warning('There is no class defined for %r. Using Resource', (info.interface_type, info.resource_class)) res = resource_pyclass(self, resource_name) for key in kwargs.keys(): try: getattr(res, key) present = True except AttributeError: present = False except errors.InvalidSession: present = True if not present: raise ValueError('%r is not a valid attribute for type %s' % (key, res.__class__.__name__)) res.open(access_mode, open_timeout) self._created_resources.add(res) for key, value in kwargs.items(): setattr(res, key, value) return res
[ "def", "open_resource", "(", "self", ",", "resource_name", ",", "access_mode", "=", "constants", ".", "AccessModes", ".", "no_lock", ",", "open_timeout", "=", "constants", ".", "VI_TMO_IMMEDIATE", ",", "resource_pyclass", "=", "None", ",", "*", "*", "kwargs", ...
Return an instrument for the resource name. :param resource_name: name or alias of the resource to open. :param access_mode: access mode. :type access_mode: :class:`pyvisa.constants.AccessModes` :param open_timeout: time out to open. :param resource_pyclass: resource python class to use to instantiate the Resource. Defaults to None: select based on the resource name. :param kwargs: keyword arguments to be used to change instrument attributes after construction. :rtype: :class:`pyvisa.resources.Resource`
[ "Return", "an", "instrument", "for", "the", "resource", "name", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/highlevel.py#L1691-L1739
train
228,853
pyvisa/pyvisa
pyvisa/rname.py
register_subclass
def register_subclass(cls): """Register a subclass for a given interface type and resource class. """ key = cls.interface_type, cls.resource_class if key in _SUBCLASSES: raise ValueError('Class already registered for %s and %s' % key) _SUBCLASSES[(cls.interface_type, cls.resource_class)] = cls _INTERFACE_TYPES.add(cls.interface_type) _RESOURCE_CLASSES[cls.interface_type].add(cls.resource_class) if cls.is_rc_optional: if cls.interface_type in _DEFAULT_RC: raise ValueError('Default already specified for %s' % cls.interface_type) _DEFAULT_RC[cls.interface_type] = cls.resource_class return cls
python
def register_subclass(cls): """Register a subclass for a given interface type and resource class. """ key = cls.interface_type, cls.resource_class if key in _SUBCLASSES: raise ValueError('Class already registered for %s and %s' % key) _SUBCLASSES[(cls.interface_type, cls.resource_class)] = cls _INTERFACE_TYPES.add(cls.interface_type) _RESOURCE_CLASSES[cls.interface_type].add(cls.resource_class) if cls.is_rc_optional: if cls.interface_type in _DEFAULT_RC: raise ValueError('Default already specified for %s' % cls.interface_type) _DEFAULT_RC[cls.interface_type] = cls.resource_class return cls
[ "def", "register_subclass", "(", "cls", ")", ":", "key", "=", "cls", ".", "interface_type", ",", "cls", ".", "resource_class", "if", "key", "in", "_SUBCLASSES", ":", "raise", "ValueError", "(", "'Class already registered for %s and %s'", "%", "key", ")", "_SUBCL...
Register a subclass for a given interface type and resource class.
[ "Register", "a", "subclass", "for", "a", "given", "interface", "type", "and", "resource", "class", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/rname.py#L86-L106
train
228,854
pyvisa/pyvisa
pyvisa/rname.py
InvalidResourceName.bad_syntax
def bad_syntax(cls, syntax, resource_name, ex=None): """Exception used when the resource name cannot be parsed. """ if ex: msg = "The syntax is '%s' (%s)." % (syntax, ex) else: msg = "The syntax is '%s'." % syntax msg = "Could not parse '%s'. %s" % (resource_name, msg) return cls(msg)
python
def bad_syntax(cls, syntax, resource_name, ex=None): """Exception used when the resource name cannot be parsed. """ if ex: msg = "The syntax is '%s' (%s)." % (syntax, ex) else: msg = "The syntax is '%s'." % syntax msg = "Could not parse '%s'. %s" % (resource_name, msg) return cls(msg)
[ "def", "bad_syntax", "(", "cls", ",", "syntax", ",", "resource_name", ",", "ex", "=", "None", ")", ":", "if", "ex", ":", "msg", "=", "\"The syntax is '%s' (%s).\"", "%", "(", "syntax", ",", "ex", ")", "else", ":", "msg", "=", "\"The syntax is '%s'.\"", "...
Exception used when the resource name cannot be parsed.
[ "Exception", "used", "when", "the", "resource", "name", "cannot", "be", "parsed", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/rname.py#L43-L54
train
228,855
pyvisa/pyvisa
pyvisa/rname.py
InvalidResourceName.rc_notfound
def rc_notfound(cls, interface_type, resource_name=None): """Exception used when no resource class is provided and no default is found. """ msg = "Resource class for %s not provided and default not found." % interface_type if resource_name: msg = "Could not parse '%s'. %s" % (resource_name, msg) return cls(msg)
python
def rc_notfound(cls, interface_type, resource_name=None): """Exception used when no resource class is provided and no default is found. """ msg = "Resource class for %s not provided and default not found." % interface_type if resource_name: msg = "Could not parse '%s'. %s" % (resource_name, msg) return cls(msg)
[ "def", "rc_notfound", "(", "cls", ",", "interface_type", ",", "resource_name", "=", "None", ")", ":", "msg", "=", "\"Resource class for %s not provided and default not found.\"", "%", "interface_type", "if", "resource_name", ":", "msg", "=", "\"Could not parse '%s'. %s\""...
Exception used when no resource class is provided and no default is found.
[ "Exception", "used", "when", "no", "resource", "class", "is", "provided", "and", "no", "default", "is", "found", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/rname.py#L71-L80
train
228,856
pyvisa/pyvisa
pyvisa/rname.py
ResourceName.from_string
def from_string(cls, resource_name): """Parse a resource name and return a ResourceName :type resource_name: str :rtype: ResourceName :raises InvalidResourceName: if the resource name is invalid. """ # TODO Remote VISA uname = resource_name.upper() for interface_type in _INTERFACE_TYPES: # Loop through all known interface types until we found one # that matches the beginning of the resource name if not uname.startswith(interface_type): continue if len(resource_name) == len(interface_type): parts = () else: parts = resource_name[len(interface_type):].split('::') # Try to match the last part of the resource name to # one of the known resource classes for the given interface type. # If not possible, use the default resource class # for the given interface type. if parts and parts[-1] in _RESOURCE_CLASSES[interface_type]: parts, resource_class = parts[:-1], parts[-1] else: try: resource_class = _DEFAULT_RC[interface_type] except KeyError: raise InvalidResourceName.rc_notfound(interface_type, resource_name) # Look for the subclass try: subclass = _SUBCLASSES[(interface_type, resource_class)] except KeyError: raise InvalidResourceName.subclass_notfound( (interface_type, resource_class), resource_name) # And create the object try: rn = subclass.from_parts(*parts) rn.user = resource_name return rn except ValueError as ex: raise InvalidResourceName.bad_syntax(subclass._visa_syntax, resource_name, ex) raise InvalidResourceName('Could not parse %s: unknown interface type' % resource_name)
python
def from_string(cls, resource_name): """Parse a resource name and return a ResourceName :type resource_name: str :rtype: ResourceName :raises InvalidResourceName: if the resource name is invalid. """ # TODO Remote VISA uname = resource_name.upper() for interface_type in _INTERFACE_TYPES: # Loop through all known interface types until we found one # that matches the beginning of the resource name if not uname.startswith(interface_type): continue if len(resource_name) == len(interface_type): parts = () else: parts = resource_name[len(interface_type):].split('::') # Try to match the last part of the resource name to # one of the known resource classes for the given interface type. # If not possible, use the default resource class # for the given interface type. if parts and parts[-1] in _RESOURCE_CLASSES[interface_type]: parts, resource_class = parts[:-1], parts[-1] else: try: resource_class = _DEFAULT_RC[interface_type] except KeyError: raise InvalidResourceName.rc_notfound(interface_type, resource_name) # Look for the subclass try: subclass = _SUBCLASSES[(interface_type, resource_class)] except KeyError: raise InvalidResourceName.subclass_notfound( (interface_type, resource_class), resource_name) # And create the object try: rn = subclass.from_parts(*parts) rn.user = resource_name return rn except ValueError as ex: raise InvalidResourceName.bad_syntax(subclass._visa_syntax, resource_name, ex) raise InvalidResourceName('Could not parse %s: unknown interface type' % resource_name)
[ "def", "from_string", "(", "cls", ",", "resource_name", ")", ":", "# TODO Remote VISA", "uname", "=", "resource_name", ".", "upper", "(", ")", "for", "interface_type", "in", "_INTERFACE_TYPES", ":", "# Loop through all known interface types until we found one", "# that ma...
Parse a resource name and return a ResourceName :type resource_name: str :rtype: ResourceName :raises InvalidResourceName: if the resource name is invalid.
[ "Parse", "a", "resource", "name", "and", "return", "a", "ResourceName" ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/rname.py#L139-L193
train
228,857
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
set_user_handle_type
def set_user_handle_type(library, user_handle): """Set the type of the user handle to install and uninstall handler signature. :param library: the visa library wrapped by ctypes. :param user_handle: use None for a void_p """ # Actually, it's not necessary to change ViHndlr *globally*. However, # I don't want to break symmetry too much with all the other VPP43 # routines. global ViHndlr if user_handle is None: user_handle_p = c_void_p else: user_handle_p = POINTER(type(user_handle)) ViHndlr = FUNCTYPE(ViStatus, ViSession, ViEventType, ViEvent, user_handle_p) library.viInstallHandler.argtypes = [ViSession, ViEventType, ViHndlr, user_handle_p] library.viUninstallHandler.argtypes = [ViSession, ViEventType, ViHndlr, user_handle_p]
python
def set_user_handle_type(library, user_handle): """Set the type of the user handle to install and uninstall handler signature. :param library: the visa library wrapped by ctypes. :param user_handle: use None for a void_p """ # Actually, it's not necessary to change ViHndlr *globally*. However, # I don't want to break symmetry too much with all the other VPP43 # routines. global ViHndlr if user_handle is None: user_handle_p = c_void_p else: user_handle_p = POINTER(type(user_handle)) ViHndlr = FUNCTYPE(ViStatus, ViSession, ViEventType, ViEvent, user_handle_p) library.viInstallHandler.argtypes = [ViSession, ViEventType, ViHndlr, user_handle_p] library.viUninstallHandler.argtypes = [ViSession, ViEventType, ViHndlr, user_handle_p]
[ "def", "set_user_handle_type", "(", "library", ",", "user_handle", ")", ":", "# Actually, it's not necessary to change ViHndlr *globally*. However,", "# I don't want to break symmetry too much with all the other VPP43", "# routines.", "global", "ViHndlr", "if", "user_handle", "is", ...
Set the type of the user handle to install and uninstall handler signature. :param library: the visa library wrapped by ctypes. :param user_handle: use None for a void_p
[ "Set", "the", "type", "of", "the", "user", "handle", "to", "install", "and", "uninstall", "handler", "signature", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L52-L71
train
228,858
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
set_signature
def set_signature(library, function_name, argtypes, restype, errcheck): """Set the signature of single function in a library. :param library: ctypes wrapped library. :type library: ctypes.WinDLL or ctypes.CDLL :param function_name: name of the function as appears in the header file. :type function_name: str :param argtypes: a tuple of ctypes types to specify the argument types that the function accepts. :param restype: A ctypes type to specify the result type of the foreign function. Use None for void, a function not returning anything. :param errcheck: a callabe :raises: AttributeError """ func = getattr(library, function_name) func.argtypes = argtypes if restype is not None: func.restype = restype if errcheck is not None: func.errcheck = errcheck
python
def set_signature(library, function_name, argtypes, restype, errcheck): """Set the signature of single function in a library. :param library: ctypes wrapped library. :type library: ctypes.WinDLL or ctypes.CDLL :param function_name: name of the function as appears in the header file. :type function_name: str :param argtypes: a tuple of ctypes types to specify the argument types that the function accepts. :param restype: A ctypes type to specify the result type of the foreign function. Use None for void, a function not returning anything. :param errcheck: a callabe :raises: AttributeError """ func = getattr(library, function_name) func.argtypes = argtypes if restype is not None: func.restype = restype if errcheck is not None: func.errcheck = errcheck
[ "def", "set_signature", "(", "library", ",", "function_name", ",", "argtypes", ",", "restype", ",", "errcheck", ")", ":", "func", "=", "getattr", "(", "library", ",", "function_name", ")", "func", ".", "argtypes", "=", "argtypes", "if", "restype", "is", "n...
Set the signature of single function in a library. :param library: ctypes wrapped library. :type library: ctypes.WinDLL or ctypes.CDLL :param function_name: name of the function as appears in the header file. :type function_name: str :param argtypes: a tuple of ctypes types to specify the argument types that the function accepts. :param restype: A ctypes type to specify the result type of the foreign function. Use None for void, a function not returning anything. :param errcheck: a callabe :raises: AttributeError
[ "Set", "the", "signature", "of", "single", "function", "in", "a", "library", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L226-L246
train
228,859
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
assert_interrupt_signal
def assert_interrupt_signal(library, session, mode, status_id): """Asserts the specified interrupt or signal. Corresponds to viAssertIntrSignal function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param mode: How to assert the interrupt. (Constants.ASSERT*) :param status_id: This is the status value to be presented during an interrupt acknowledge cycle. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viAssertIntrSignal(session, mode, status_id)
python
def assert_interrupt_signal(library, session, mode, status_id): """Asserts the specified interrupt or signal. Corresponds to viAssertIntrSignal function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param mode: How to assert the interrupt. (Constants.ASSERT*) :param status_id: This is the status value to be presented during an interrupt acknowledge cycle. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viAssertIntrSignal(session, mode, status_id)
[ "def", "assert_interrupt_signal", "(", "library", ",", "session", ",", "mode", ",", "status_id", ")", ":", "return", "library", ".", "viAssertIntrSignal", "(", "session", ",", "mode", ",", "status_id", ")" ]
Asserts the specified interrupt or signal. Corresponds to viAssertIntrSignal function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param mode: How to assert the interrupt. (Constants.ASSERT*) :param status_id: This is the status value to be presented during an interrupt acknowledge cycle. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Asserts", "the", "specified", "interrupt", "or", "signal", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L292-L304
train
228,860
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
discard_events
def discard_events(library, session, event_type, mechanism): """Discards event occurrences for specified event types and mechanisms in a session. Corresponds to viDiscardEvents function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param event_type: Logical event identifier. :param mechanism: Specifies event handling mechanisms to be dicarded. (Constants.VI_QUEUE, .VI_HNDLR, .VI_SUSPEND_HNDLR, .VI_ALL_MECH) :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viDiscardEvents(session, event_type, mechanism)
python
def discard_events(library, session, event_type, mechanism): """Discards event occurrences for specified event types and mechanisms in a session. Corresponds to viDiscardEvents function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param event_type: Logical event identifier. :param mechanism: Specifies event handling mechanisms to be dicarded. (Constants.VI_QUEUE, .VI_HNDLR, .VI_SUSPEND_HNDLR, .VI_ALL_MECH) :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viDiscardEvents(session, event_type, mechanism)
[ "def", "discard_events", "(", "library", ",", "session", ",", "event_type", ",", "mechanism", ")", ":", "return", "library", ".", "viDiscardEvents", "(", "session", ",", "event_type", ",", "mechanism", ")" ]
Discards event occurrences for specified event types and mechanisms in a session. Corresponds to viDiscardEvents function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param event_type: Logical event identifier. :param mechanism: Specifies event handling mechanisms to be dicarded. (Constants.VI_QUEUE, .VI_HNDLR, .VI_SUSPEND_HNDLR, .VI_ALL_MECH) :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Discards", "event", "occurrences", "for", "specified", "event", "types", "and", "mechanisms", "in", "a", "session", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L413-L426
train
228,861
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
enable_event
def enable_event(library, session, event_type, mechanism, context=None): """Enable event occurrences for specified event types and mechanisms in a session. Corresponds to viEnableEvent function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param event_type: Logical event identifier. :param mechanism: Specifies event handling mechanisms to be enabled. (Constants.VI_QUEUE, .VI_HNDLR, .VI_SUSPEND_HNDLR) :param context: :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if context is None: context = constants.VI_NULL elif context != constants.VI_NULL: warnings.warn('In enable_event, context will be set VI_NULL.') context = constants.VI_NULL # according to spec VPP-4.3, section 3.7.3.1 return library.viEnableEvent(session, event_type, mechanism, context)
python
def enable_event(library, session, event_type, mechanism, context=None): """Enable event occurrences for specified event types and mechanisms in a session. Corresponds to viEnableEvent function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param event_type: Logical event identifier. :param mechanism: Specifies event handling mechanisms to be enabled. (Constants.VI_QUEUE, .VI_HNDLR, .VI_SUSPEND_HNDLR) :param context: :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if context is None: context = constants.VI_NULL elif context != constants.VI_NULL: warnings.warn('In enable_event, context will be set VI_NULL.') context = constants.VI_NULL # according to spec VPP-4.3, section 3.7.3.1 return library.viEnableEvent(session, event_type, mechanism, context)
[ "def", "enable_event", "(", "library", ",", "session", ",", "event_type", ",", "mechanism", ",", "context", "=", "None", ")", ":", "if", "context", "is", "None", ":", "context", "=", "constants", ".", "VI_NULL", "elif", "context", "!=", "constants", ".", ...
Enable event occurrences for specified event types and mechanisms in a session. Corresponds to viEnableEvent function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param event_type: Logical event identifier. :param mechanism: Specifies event handling mechanisms to be enabled. (Constants.VI_QUEUE, .VI_HNDLR, .VI_SUSPEND_HNDLR) :param context: :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Enable", "event", "occurrences", "for", "specified", "event", "types", "and", "mechanisms", "in", "a", "session", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L429-L448
train
228,862
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
find_resources
def find_resources(library, session, query): """Queries a VISA system to locate the resources associated with a specified interface. Corresponds to viFindRsrc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session (unused, just to uniform signatures). :param query: A regular expression followed by an optional logical expression. Use '?*' for all. :return: find_list, return_counter, instrument_description, return value of the library call. :rtype: ViFindList, int, unicode (Py2) or str (Py3), :class:`pyvisa.constants.StatusCode` """ find_list = ViFindList() return_counter = ViUInt32() instrument_description = create_string_buffer(constants.VI_FIND_BUFLEN) # [ViSession, ViString, ViPFindList, ViPUInt32, ViAChar] # ViString converts from (str, unicode, bytes) to bytes ret = library.viFindRsrc(session, query, byref(find_list), byref(return_counter), instrument_description) return find_list, return_counter.value, buffer_to_text(instrument_description), ret
python
def find_resources(library, session, query): """Queries a VISA system to locate the resources associated with a specified interface. Corresponds to viFindRsrc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session (unused, just to uniform signatures). :param query: A regular expression followed by an optional logical expression. Use '?*' for all. :return: find_list, return_counter, instrument_description, return value of the library call. :rtype: ViFindList, int, unicode (Py2) or str (Py3), :class:`pyvisa.constants.StatusCode` """ find_list = ViFindList() return_counter = ViUInt32() instrument_description = create_string_buffer(constants.VI_FIND_BUFLEN) # [ViSession, ViString, ViPFindList, ViPUInt32, ViAChar] # ViString converts from (str, unicode, bytes) to bytes ret = library.viFindRsrc(session, query, byref(find_list), byref(return_counter), instrument_description) return find_list, return_counter.value, buffer_to_text(instrument_description), ret
[ "def", "find_resources", "(", "library", ",", "session", ",", "query", ")", ":", "find_list", "=", "ViFindList", "(", ")", "return_counter", "=", "ViUInt32", "(", ")", "instrument_description", "=", "create_string_buffer", "(", "constants", ".", "VI_FIND_BUFLEN", ...
Queries a VISA system to locate the resources associated with a specified interface. Corresponds to viFindRsrc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session (unused, just to uniform signatures). :param query: A regular expression followed by an optional logical expression. Use '?*' for all. :return: find_list, return_counter, instrument_description, return value of the library call. :rtype: ViFindList, int, unicode (Py2) or str (Py3), :class:`pyvisa.constants.StatusCode`
[ "Queries", "a", "VISA", "system", "to", "locate", "the", "resources", "associated", "with", "a", "specified", "interface", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L466-L486
train
228,863
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
gpib_command
def gpib_command(library, session, data): """Write GPIB command bytes on the bus. Corresponds to viGpibCommand function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param data: data tor write. :type data: bytes :return: Number of written bytes, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ return_count = ViUInt32() # [ViSession, ViBuf, ViUInt32, ViPUInt32] ret = library.viGpibCommand(session, data, len(data), byref(return_count)) return return_count.value, ret
python
def gpib_command(library, session, data): """Write GPIB command bytes on the bus. Corresponds to viGpibCommand function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param data: data tor write. :type data: bytes :return: Number of written bytes, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ return_count = ViUInt32() # [ViSession, ViBuf, ViUInt32, ViPUInt32] ret = library.viGpibCommand(session, data, len(data), byref(return_count)) return return_count.value, ret
[ "def", "gpib_command", "(", "library", ",", "session", ",", "data", ")", ":", "return_count", "=", "ViUInt32", "(", ")", "# [ViSession, ViBuf, ViUInt32, ViPUInt32]", "ret", "=", "library", ".", "viGpibCommand", "(", "session", ",", "data", ",", "len", "(", "da...
Write GPIB command bytes on the bus. Corresponds to viGpibCommand function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param data: data tor write. :type data: bytes :return: Number of written bytes, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode`
[ "Write", "GPIB", "command", "bytes", "on", "the", "bus", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L534-L550
train
228,864
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
in_8
def in_8(library, session, space, offset, extended=False): """Reads in an 8-bit value from the specified memory space and offset. Corresponds to viIn8* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_8 = ViUInt8() if extended: ret = library.viIn8Ex(session, space, offset, byref(value_8)) else: ret = library.viIn8(session, space, offset, byref(value_8)) return value_8.value, ret
python
def in_8(library, session, space, offset, extended=False): """Reads in an 8-bit value from the specified memory space and offset. Corresponds to viIn8* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_8 = ViUInt8() if extended: ret = library.viIn8Ex(session, space, offset, byref(value_8)) else: ret = library.viIn8(session, space, offset, byref(value_8)) return value_8.value, ret
[ "def", "in_8", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "extended", "=", "False", ")", ":", "value_8", "=", "ViUInt8", "(", ")", "if", "extended", ":", "ret", "=", "library", ".", "viIn8Ex", "(", "session", ",", "space", ",",...
Reads in an 8-bit value from the specified memory space and offset. Corresponds to viIn8* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode`
[ "Reads", "in", "an", "8", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L640-L658
train
228,865
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
in_16
def in_16(library, session, space, offset, extended=False): """Reads in an 16-bit value from the specified memory space and offset. Corresponds to viIn16* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_16 = ViUInt16() if extended: ret = library.viIn16Ex(session, space, offset, byref(value_16)) else: ret = library.viIn16(session, space, offset, byref(value_16)) return value_16.value, ret
python
def in_16(library, session, space, offset, extended=False): """Reads in an 16-bit value from the specified memory space and offset. Corresponds to viIn16* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_16 = ViUInt16() if extended: ret = library.viIn16Ex(session, space, offset, byref(value_16)) else: ret = library.viIn16(session, space, offset, byref(value_16)) return value_16.value, ret
[ "def", "in_16", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "extended", "=", "False", ")", ":", "value_16", "=", "ViUInt16", "(", ")", "if", "extended", ":", "ret", "=", "library", ".", "viIn16Ex", "(", "session", ",", "space", ...
Reads in an 16-bit value from the specified memory space and offset. Corresponds to viIn16* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode`
[ "Reads", "in", "an", "16", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L661-L679
train
228,866
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
in_32
def in_32(library, session, space, offset, extended=False): """Reads in an 32-bit value from the specified memory space and offset. Corresponds to viIn32* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_32 = ViUInt32() if extended: ret = library.viIn32Ex(session, space, offset, byref(value_32)) else: ret = library.viIn32(session, space, offset, byref(value_32)) return value_32.value, ret
python
def in_32(library, session, space, offset, extended=False): """Reads in an 32-bit value from the specified memory space and offset. Corresponds to viIn32* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_32 = ViUInt32() if extended: ret = library.viIn32Ex(session, space, offset, byref(value_32)) else: ret = library.viIn32(session, space, offset, byref(value_32)) return value_32.value, ret
[ "def", "in_32", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "extended", "=", "False", ")", ":", "value_32", "=", "ViUInt32", "(", ")", "if", "extended", ":", "ret", "=", "library", ".", "viIn32Ex", "(", "session", ",", "space", ...
Reads in an 32-bit value from the specified memory space and offset. Corresponds to viIn32* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode`
[ "Reads", "in", "an", "32", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L682-L700
train
228,867
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
in_64
def in_64(library, session, space, offset, extended=False): """Reads in an 64-bit value from the specified memory space and offset. Corresponds to viIn64* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_64 = ViUInt64() if extended: ret = library.viIn64Ex(session, space, offset, byref(value_64)) else: ret = library.viIn64(session, space, offset, byref(value_64)) return value_64.value, ret
python
def in_64(library, session, space, offset, extended=False): """Reads in an 64-bit value from the specified memory space and offset. Corresponds to viIn64* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ value_64 = ViUInt64() if extended: ret = library.viIn64Ex(session, space, offset, byref(value_64)) else: ret = library.viIn64(session, space, offset, byref(value_64)) return value_64.value, ret
[ "def", "in_64", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "extended", "=", "False", ")", ":", "value_64", "=", "ViUInt64", "(", ")", "if", "extended", ":", "ret", "=", "library", ".", "viIn64Ex", "(", "session", ",", "space", ...
Reads in an 64-bit value from the specified memory space and offset. Corresponds to viIn64* function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param extended: Use 64 bits offset independent of the platform. :return: Data read from memory, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode`
[ "Reads", "in", "an", "64", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L703-L721
train
228,868
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
map_trigger
def map_trigger(library, session, trigger_source, trigger_destination, mode): """Map the specified trigger source line to the specified destination line. Corresponds to viMapTrigger function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param trigger_source: Source line from which to map. (Constants.TRIG*) :param trigger_destination: Destination line to which to map. (Constants.TRIG*) :param mode: :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viMapTrigger(session, trigger_source, trigger_destination, mode)
python
def map_trigger(library, session, trigger_source, trigger_destination, mode): """Map the specified trigger source line to the specified destination line. Corresponds to viMapTrigger function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param trigger_source: Source line from which to map. (Constants.TRIG*) :param trigger_destination: Destination line to which to map. (Constants.TRIG*) :param mode: :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viMapTrigger(session, trigger_source, trigger_destination, mode)
[ "def", "map_trigger", "(", "library", ",", "session", ",", "trigger_source", ",", "trigger_destination", ",", "mode", ")", ":", "return", "library", ".", "viMapTrigger", "(", "session", ",", "trigger_source", ",", "trigger_destination", ",", "mode", ")" ]
Map the specified trigger source line to the specified destination line. Corresponds to viMapTrigger function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param trigger_source: Source line from which to map. (Constants.TRIG*) :param trigger_destination: Destination line to which to map. (Constants.TRIG*) :param mode: :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Map", "the", "specified", "trigger", "source", "line", "to", "the", "specified", "destination", "line", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L838-L851
train
228,869
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
memory_allocation
def memory_allocation(library, session, size, extended=False): """Allocates memory from a resource's memory region. Corresponds to viMemAlloc* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param size: Specifies the size of the allocation. :param extended: Use 64 bits offset independent of the platform. :return: offset of the allocated memory, return value of the library call. :rtype: offset, :class:`pyvisa.constants.StatusCode` """ offset = ViBusAddress() if extended: ret = library.viMemAllocEx(session, size, byref(offset)) else: ret = library.viMemAlloc(session, size, byref(offset)) return offset, ret
python
def memory_allocation(library, session, size, extended=False): """Allocates memory from a resource's memory region. Corresponds to viMemAlloc* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param size: Specifies the size of the allocation. :param extended: Use 64 bits offset independent of the platform. :return: offset of the allocated memory, return value of the library call. :rtype: offset, :class:`pyvisa.constants.StatusCode` """ offset = ViBusAddress() if extended: ret = library.viMemAllocEx(session, size, byref(offset)) else: ret = library.viMemAlloc(session, size, byref(offset)) return offset, ret
[ "def", "memory_allocation", "(", "library", ",", "session", ",", "size", ",", "extended", "=", "False", ")", ":", "offset", "=", "ViBusAddress", "(", ")", "if", "extended", ":", "ret", "=", "library", ".", "viMemAllocEx", "(", "session", ",", "size", ","...
Allocates memory from a resource's memory region. Corresponds to viMemAlloc* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param size: Specifies the size of the allocation. :param extended: Use 64 bits offset independent of the platform. :return: offset of the allocated memory, return value of the library call. :rtype: offset, :class:`pyvisa.constants.StatusCode`
[ "Allocates", "memory", "from", "a", "resource", "s", "memory", "region", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L854-L871
train
228,870
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_asynchronously
def move_asynchronously(library, session, source_space, source_offset, source_width, destination_space, destination_offset, destination_width, length): """Moves a block of data asynchronously. Corresponds to viMoveAsync function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param source_space: Specifies the address space of the source. :param source_offset: Offset of the starting address or register from which to read. :param source_width: Specifies the data width of the source. :param destination_space: Specifies the address space of the destination. :param destination_offset: Offset of the starting address or register to which to write. :param destination_width: Specifies the data width of the destination. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :return: Job identifier of this asynchronous move operation, return value of the library call. :rtype: jobid, :class:`pyvisa.constants.StatusCode` """ job_id = ViJobId() ret = library.viMoveAsync(session, source_space, source_offset, source_width, destination_space, destination_offset, destination_width, length, byref(job_id)) return job_id, ret
python
def move_asynchronously(library, session, source_space, source_offset, source_width, destination_space, destination_offset, destination_width, length): """Moves a block of data asynchronously. Corresponds to viMoveAsync function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param source_space: Specifies the address space of the source. :param source_offset: Offset of the starting address or register from which to read. :param source_width: Specifies the data width of the source. :param destination_space: Specifies the address space of the destination. :param destination_offset: Offset of the starting address or register to which to write. :param destination_width: Specifies the data width of the destination. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :return: Job identifier of this asynchronous move operation, return value of the library call. :rtype: jobid, :class:`pyvisa.constants.StatusCode` """ job_id = ViJobId() ret = library.viMoveAsync(session, source_space, source_offset, source_width, destination_space, destination_offset, destination_width, length, byref(job_id)) return job_id, ret
[ "def", "move_asynchronously", "(", "library", ",", "session", ",", "source_space", ",", "source_offset", ",", "source_width", ",", "destination_space", ",", "destination_offset", ",", "destination_width", ",", "length", ")", ":", "job_id", "=", "ViJobId", "(", ")"...
Moves a block of data asynchronously. Corresponds to viMoveAsync function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param source_space: Specifies the address space of the source. :param source_offset: Offset of the starting address or register from which to read. :param source_width: Specifies the data width of the source. :param destination_space: Specifies the address space of the destination. :param destination_offset: Offset of the starting address or register to which to write. :param destination_width: Specifies the data width of the destination. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :return: Job identifier of this asynchronous move operation, return value of the library call. :rtype: jobid, :class:`pyvisa.constants.StatusCode`
[ "Moves", "a", "block", "of", "data", "asynchronously", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L916-L940
train
228,871
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_in_8
def move_in_8(library, session, space, offset, length, extended=False): """Moves an 8-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn8* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_8 = (ViUInt8 * length)() if extended: ret = library.viMoveIn8Ex(session, space, offset, length, buffer_8) else: ret = library.viMoveIn8(session, space, offset, length, buffer_8) return list(buffer_8), ret
python
def move_in_8(library, session, space, offset, length, extended=False): """Moves an 8-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn8* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_8 = (ViUInt8 * length)() if extended: ret = library.viMoveIn8Ex(session, space, offset, length, buffer_8) else: ret = library.viMoveIn8(session, space, offset, length, buffer_8) return list(buffer_8), ret
[ "def", "move_in_8", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "length", ",", "extended", "=", "False", ")", ":", "buffer_8", "=", "(", "ViUInt8", "*", "length", ")", "(", ")", "if", "extended", ":", "ret", "=", "library", ".",...
Moves an 8-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn8* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode`
[ "Moves", "an", "8", "-", "bit", "block", "of", "data", "from", "the", "specified", "address", "space", "and", "offset", "to", "local", "memory", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L971-L991
train
228,872
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_in_16
def move_in_16(library, session, space, offset, length, extended=False): """Moves an 16-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_16 = (ViUInt16 * length)() if extended: ret = library.viMoveIn16Ex(session, space, offset, length, buffer_16) else: ret = library.viMoveIn16(session, space, offset, length, buffer_16) return list(buffer_16), ret
python
def move_in_16(library, session, space, offset, length, extended=False): """Moves an 16-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_16 = (ViUInt16 * length)() if extended: ret = library.viMoveIn16Ex(session, space, offset, length, buffer_16) else: ret = library.viMoveIn16(session, space, offset, length, buffer_16) return list(buffer_16), ret
[ "def", "move_in_16", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "length", ",", "extended", "=", "False", ")", ":", "buffer_16", "=", "(", "ViUInt16", "*", "length", ")", "(", ")", "if", "extended", ":", "ret", "=", "library", "...
Moves an 16-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode`
[ "Moves", "an", "16", "-", "bit", "block", "of", "data", "from", "the", "specified", "address", "space", "and", "offset", "to", "local", "memory", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L994-L1015
train
228,873
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_in_32
def move_in_32(library, session, space, offset, length, extended=False): """Moves an 32-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_32 = (ViUInt32 * length)() if extended: ret = library.viMoveIn32Ex(session, space, offset, length, buffer_32) else: ret = library.viMoveIn32(session, space, offset, length, buffer_32) return list(buffer_32), ret
python
def move_in_32(library, session, space, offset, length, extended=False): """Moves an 32-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_32 = (ViUInt32 * length)() if extended: ret = library.viMoveIn32Ex(session, space, offset, length, buffer_32) else: ret = library.viMoveIn32(session, space, offset, length, buffer_32) return list(buffer_32), ret
[ "def", "move_in_32", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "length", ",", "extended", "=", "False", ")", ":", "buffer_32", "=", "(", "ViUInt32", "*", "length", ")", "(", ")", "if", "extended", ":", "ret", "=", "library", "...
Moves an 32-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode`
[ "Moves", "an", "32", "-", "bit", "block", "of", "data", "from", "the", "specified", "address", "space", "and", "offset", "to", "local", "memory", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1018-L1039
train
228,874
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_in_64
def move_in_64(library, session, space, offset, length, extended=False): """Moves an 64-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_64 = (ViUInt64 * length)() if extended: ret = library.viMoveIn64Ex(session, space, offset, length, buffer_64) else: ret = library.viMoveIn64(session, space, offset, length, buffer_64) return list(buffer_64), ret
python
def move_in_64(library, session, space, offset, length, extended=False): """Moves an 64-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode` """ buffer_64 = (ViUInt64 * length)() if extended: ret = library.viMoveIn64Ex(session, space, offset, length, buffer_64) else: ret = library.viMoveIn64(session, space, offset, length, buffer_64) return list(buffer_64), ret
[ "def", "move_in_64", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "length", ",", "extended", "=", "False", ")", ":", "buffer_64", "=", "(", "ViUInt64", "*", "length", ")", "(", ")", "if", "extended", ":", "ret", "=", "library", "...
Moves an 64-bit block of data from the specified address space and offset to local memory. Corresponds to viMoveIn64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param extended: Use 64 bits offset independent of the platform. :return: Data read from the bus, return value of the library call. :rtype: list, :class:`pyvisa.constants.StatusCode`
[ "Moves", "an", "64", "-", "bit", "block", "of", "data", "from", "the", "specified", "address", "space", "and", "offset", "to", "local", "memory", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1042-L1063
train
228,875
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_out_16
def move_out_16(library, session, space, offset, length, data, extended=False): """Moves an 16-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ converted_buffer = (ViUInt16 * length)(*tuple(data)) if extended: return library.viMoveOut16Ex(session, space, offset, length, converted_buffer) else: return library.viMoveOut16(session, space, offset, length, converted_buffer)
python
def move_out_16(library, session, space, offset, length, data, extended=False): """Moves an 16-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ converted_buffer = (ViUInt16 * length)(*tuple(data)) if extended: return library.viMoveOut16Ex(session, space, offset, length, converted_buffer) else: return library.viMoveOut16(session, space, offset, length, converted_buffer)
[ "def", "move_out_16", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "length", ",", "data", ",", "extended", "=", "False", ")", ":", "converted_buffer", "=", "(", "ViUInt16", "*", "length", ")", "(", "*", "tuple", "(", "data", ")", ...
Moves an 16-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Moves", "an", "16", "-", "bit", "block", "of", "data", "from", "local", "memory", "to", "the", "specified", "address", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1120-L1140
train
228,876
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_out_32
def move_out_32(library, session, space, offset, length, data, extended=False): """Moves an 32-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ converted_buffer = (ViUInt32 * length)(*tuple(data)) if extended: return library.viMoveOut32Ex(session, space, offset, length, converted_buffer) else: return library.viMoveOut32(session, space, offset, length, converted_buffer)
python
def move_out_32(library, session, space, offset, length, data, extended=False): """Moves an 32-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ converted_buffer = (ViUInt32 * length)(*tuple(data)) if extended: return library.viMoveOut32Ex(session, space, offset, length, converted_buffer) else: return library.viMoveOut32(session, space, offset, length, converted_buffer)
[ "def", "move_out_32", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "length", ",", "data", ",", "extended", "=", "False", ")", ":", "converted_buffer", "=", "(", "ViUInt32", "*", "length", ")", "(", "*", "tuple", "(", "data", ")", ...
Moves an 32-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Moves", "an", "32", "-", "bit", "block", "of", "data", "from", "local", "memory", "to", "the", "specified", "address", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1143-L1163
train
228,877
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
move_out_64
def move_out_64(library, session, space, offset, length, data, extended=False): """Moves an 64-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ converted_buffer = (ViUInt64 * length)(*tuple(data)) if extended: return library.viMoveOut64Ex(session, space, offset, length, converted_buffer) else: return library.viMoveOut64(session, space, offset, length, converted_buffer)
python
def move_out_64(library, session, space, offset, length, data, extended=False): """Moves an 64-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ converted_buffer = (ViUInt64 * length)(*tuple(data)) if extended: return library.viMoveOut64Ex(session, space, offset, length, converted_buffer) else: return library.viMoveOut64(session, space, offset, length, converted_buffer)
[ "def", "move_out_64", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "length", ",", "data", ",", "extended", "=", "False", ")", ":", "converted_buffer", "=", "(", "ViUInt64", "*", "length", ")", "(", "*", "tuple", "(", "data", ")", ...
Moves an 64-bit block of data from local memory to the specified address space and offset. Corresponds to viMoveOut64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param length: Number of elements to transfer, where the data width of the elements to transfer is identical to the source data width. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Moves", "an", "64", "-", "bit", "block", "of", "data", "from", "local", "memory", "to", "the", "specified", "address", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1166-L1186
train
228,878
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
open_default_resource_manager
def open_default_resource_manager(library): """This function returns a session to the Default Resource Manager resource. Corresponds to viOpenDefaultRM function of the VISA library. :param library: the visa library wrapped by ctypes. :return: Unique logical identifier to a Default Resource Manager session, return value of the library call. :rtype: session, :class:`pyvisa.constants.StatusCode` """ session = ViSession() ret = library.viOpenDefaultRM(byref(session)) return session.value, ret
python
def open_default_resource_manager(library): """This function returns a session to the Default Resource Manager resource. Corresponds to viOpenDefaultRM function of the VISA library. :param library: the visa library wrapped by ctypes. :return: Unique logical identifier to a Default Resource Manager session, return value of the library call. :rtype: session, :class:`pyvisa.constants.StatusCode` """ session = ViSession() ret = library.viOpenDefaultRM(byref(session)) return session.value, ret
[ "def", "open_default_resource_manager", "(", "library", ")", ":", "session", "=", "ViSession", "(", ")", "ret", "=", "library", ".", "viOpenDefaultRM", "(", "byref", "(", "session", ")", ")", "return", "session", ".", "value", ",", "ret" ]
This function returns a session to the Default Resource Manager resource. Corresponds to viOpenDefaultRM function of the VISA library. :param library: the visa library wrapped by ctypes. :return: Unique logical identifier to a Default Resource Manager session, return value of the library call. :rtype: session, :class:`pyvisa.constants.StatusCode`
[ "This", "function", "returns", "a", "session", "to", "the", "Default", "Resource", "Manager", "resource", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1217-L1228
train
228,879
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
out_8
def out_8(library, session, space, offset, data, extended=False): """Write in an 8-bit value from the specified memory space and offset. Corresponds to viOut8* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut8Ex(session, space, offset, data) else: return library.viOut8(session, space, offset, data)
python
def out_8(library, session, space, offset, data, extended=False): """Write in an 8-bit value from the specified memory space and offset. Corresponds to viOut8* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut8Ex(session, space, offset, data) else: return library.viOut8(session, space, offset, data)
[ "def", "out_8", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "data", ",", "extended", "=", "False", ")", ":", "if", "extended", ":", "return", "library", ".", "viOut8Ex", "(", "session", ",", "space", ",", "offset", ",", "data", ...
Write in an 8-bit value from the specified memory space and offset. Corresponds to viOut8* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "in", "an", "8", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1256-L1273
train
228,880
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
out_16
def out_16(library, session, space, offset, data, extended=False): """Write in an 16-bit value from the specified memory space and offset. Corresponds to viOut16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut16Ex(session, space, offset, data, extended=False) else: return library.viOut16(session, space, offset, data, extended=False)
python
def out_16(library, session, space, offset, data, extended=False): """Write in an 16-bit value from the specified memory space and offset. Corresponds to viOut16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut16Ex(session, space, offset, data, extended=False) else: return library.viOut16(session, space, offset, data, extended=False)
[ "def", "out_16", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "data", ",", "extended", "=", "False", ")", ":", "if", "extended", ":", "return", "library", ".", "viOut16Ex", "(", "session", ",", "space", ",", "offset", ",", "data", ...
Write in an 16-bit value from the specified memory space and offset. Corresponds to viOut16* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "in", "an", "16", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1276-L1293
train
228,881
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
out_32
def out_32(library, session, space, offset, data, extended=False): """Write in an 32-bit value from the specified memory space and offset. Corresponds to viOut32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut32Ex(session, space, offset, data) else: return library.viOut32(session, space, offset, data)
python
def out_32(library, session, space, offset, data, extended=False): """Write in an 32-bit value from the specified memory space and offset. Corresponds to viOut32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut32Ex(session, space, offset, data) else: return library.viOut32(session, space, offset, data)
[ "def", "out_32", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "data", ",", "extended", "=", "False", ")", ":", "if", "extended", ":", "return", "library", ".", "viOut32Ex", "(", "session", ",", "space", ",", "offset", ",", "data", ...
Write in an 32-bit value from the specified memory space and offset. Corresponds to viOut32* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "in", "an", "32", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1296-L1313
train
228,882
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
out_64
def out_64(library, session, space, offset, data, extended=False): """Write in an 64-bit value from the specified memory space and offset. Corresponds to viOut64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut64Ex(session, space, offset, data) else: return library.viOut64(session, space, offset, data)
python
def out_64(library, session, space, offset, data, extended=False): """Write in an 64-bit value from the specified memory space and offset. Corresponds to viOut64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if extended: return library.viOut64Ex(session, space, offset, data) else: return library.viOut64(session, space, offset, data)
[ "def", "out_64", "(", "library", ",", "session", ",", "space", ",", "offset", ",", "data", ",", "extended", "=", "False", ")", ":", "if", "extended", ":", "return", "library", ".", "viOut64Ex", "(", "session", ",", "space", ",", "offset", ",", "data", ...
Write in an 64-bit value from the specified memory space and offset. Corresponds to viOut64* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param space: Specifies the address space. (Constants.*SPACE*) :param offset: Offset (in bytes) of the address or register from which to read. :param data: Data to write to bus. :param extended: Use 64 bits offset independent of the platform. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "in", "an", "64", "-", "bit", "value", "from", "the", "specified", "memory", "space", "and", "offset", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1316-L1333
train
228,883
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
parse_resource
def parse_resource(library, session, resource_name): """Parse a resource string to get the interface information. Corresponds to viParseRsrc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Resource Manager session (should always be the Default Resource Manager for VISA returned from open_default_resource_manager()). :param resource_name: Unique symbolic name of a resource. :return: Resource information with interface type and board number, return value of the library call. :rtype: :class:`pyvisa.highlevel.ResourceInfo`, :class:`pyvisa.constants.StatusCode` """ interface_type = ViUInt16() interface_board_number = ViUInt16() # [ViSession, ViRsrc, ViPUInt16, ViPUInt16] # ViRsrc converts from (str, unicode, bytes) to bytes ret = library.viParseRsrc(session, resource_name, byref(interface_type), byref(interface_board_number)) return ResourceInfo(constants.InterfaceType(interface_type.value), interface_board_number.value, None, None, None), ret
python
def parse_resource(library, session, resource_name): """Parse a resource string to get the interface information. Corresponds to viParseRsrc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Resource Manager session (should always be the Default Resource Manager for VISA returned from open_default_resource_manager()). :param resource_name: Unique symbolic name of a resource. :return: Resource information with interface type and board number, return value of the library call. :rtype: :class:`pyvisa.highlevel.ResourceInfo`, :class:`pyvisa.constants.StatusCode` """ interface_type = ViUInt16() interface_board_number = ViUInt16() # [ViSession, ViRsrc, ViPUInt16, ViPUInt16] # ViRsrc converts from (str, unicode, bytes) to bytes ret = library.viParseRsrc(session, resource_name, byref(interface_type), byref(interface_board_number)) return ResourceInfo(constants.InterfaceType(interface_type.value), interface_board_number.value, None, None, None), ret
[ "def", "parse_resource", "(", "library", ",", "session", ",", "resource_name", ")", ":", "interface_type", "=", "ViUInt16", "(", ")", "interface_board_number", "=", "ViUInt16", "(", ")", "# [ViSession, ViRsrc, ViPUInt16, ViPUInt16]", "# ViRsrc converts from (str, unicode, b...
Parse a resource string to get the interface information. Corresponds to viParseRsrc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Resource Manager session (should always be the Default Resource Manager for VISA returned from open_default_resource_manager()). :param resource_name: Unique symbolic name of a resource. :return: Resource information with interface type and board number, return value of the library call. :rtype: :class:`pyvisa.highlevel.ResourceInfo`, :class:`pyvisa.constants.StatusCode`
[ "Parse", "a", "resource", "string", "to", "get", "the", "interface", "information", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1336-L1357
train
228,884
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
peek
def peek(library, session, address, width): """Read an 8, 16 or 32-bit value from the specified address. Corresponds to viPeek* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ if width == 8: return peek_8(library, session, address) elif width == 16: return peek_16(library, session, address) elif width == 32: return peek_32(library, session, address) elif width == 64: return peek_64(library, session, address) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32 or 64' % width)
python
def peek(library, session, address, width): """Read an 8, 16 or 32-bit value from the specified address. Corresponds to viPeek* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ if width == 8: return peek_8(library, session, address) elif width == 16: return peek_16(library, session, address) elif width == 32: return peek_32(library, session, address) elif width == 64: return peek_64(library, session, address) raise ValueError('%s is not a valid size. Valid values are 8, 16, 32 or 64' % width)
[ "def", "peek", "(", "library", ",", "session", ",", "address", ",", "width", ")", ":", "if", "width", "==", "8", ":", "return", "peek_8", "(", "library", ",", "session", ",", "address", ")", "elif", "width", "==", "16", ":", "return", "peek_16", "(",...
Read an 8, 16 or 32-bit value from the specified address. Corresponds to viPeek* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode`
[ "Read", "an", "8", "16", "or", "32", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1397-L1419
train
228,885
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
peek_8
def peek_8(library, session, address): """Read an 8-bit value from the specified address. Corresponds to viPeek8 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_8 = ViUInt8() ret = library.viPeek8(session, address, byref(value_8)) return value_8.value, ret
python
def peek_8(library, session, address): """Read an 8-bit value from the specified address. Corresponds to viPeek8 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_8 = ViUInt8() ret = library.viPeek8(session, address, byref(value_8)) return value_8.value, ret
[ "def", "peek_8", "(", "library", ",", "session", ",", "address", ")", ":", "value_8", "=", "ViUInt8", "(", ")", "ret", "=", "library", ".", "viPeek8", "(", "session", ",", "address", ",", "byref", "(", "value_8", ")", ")", "return", "value_8", ".", "...
Read an 8-bit value from the specified address. Corresponds to viPeek8 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode`
[ "Read", "an", "8", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1422-L1435
train
228,886
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
peek_16
def peek_16(library, session, address): """Read an 16-bit value from the specified address. Corresponds to viPeek16 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_16 = ViUInt16() ret = library.viPeek16(session, address, byref(value_16)) return value_16.value, ret
python
def peek_16(library, session, address): """Read an 16-bit value from the specified address. Corresponds to viPeek16 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_16 = ViUInt16() ret = library.viPeek16(session, address, byref(value_16)) return value_16.value, ret
[ "def", "peek_16", "(", "library", ",", "session", ",", "address", ")", ":", "value_16", "=", "ViUInt16", "(", ")", "ret", "=", "library", ".", "viPeek16", "(", "session", ",", "address", ",", "byref", "(", "value_16", ")", ")", "return", "value_16", "....
Read an 16-bit value from the specified address. Corresponds to viPeek16 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode`
[ "Read", "an", "16", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1438-L1451
train
228,887
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
peek_32
def peek_32(library, session, address): """Read an 32-bit value from the specified address. Corresponds to viPeek32 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_32 = ViUInt32() ret = library.viPeek32(session, address, byref(value_32)) return value_32.value, ret
python
def peek_32(library, session, address): """Read an 32-bit value from the specified address. Corresponds to viPeek32 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_32 = ViUInt32() ret = library.viPeek32(session, address, byref(value_32)) return value_32.value, ret
[ "def", "peek_32", "(", "library", ",", "session", ",", "address", ")", ":", "value_32", "=", "ViUInt32", "(", ")", "ret", "=", "library", ".", "viPeek32", "(", "session", ",", "address", ",", "byref", "(", "value_32", ")", ")", "return", "value_32", "....
Read an 32-bit value from the specified address. Corresponds to viPeek32 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode`
[ "Read", "an", "32", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1454-L1467
train
228,888
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
peek_64
def peek_64(library, session, address): """Read an 64-bit value from the specified address. Corresponds to viPeek64 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_64 = ViUInt64() ret = library.viPeek64(session, address, byref(value_64)) return value_64.value, ret
python
def peek_64(library, session, address): """Read an 64-bit value from the specified address. Corresponds to viPeek64 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode` """ value_64 = ViUInt64() ret = library.viPeek64(session, address, byref(value_64)) return value_64.value, ret
[ "def", "peek_64", "(", "library", ",", "session", ",", "address", ")", ":", "value_64", "=", "ViUInt64", "(", ")", "ret", "=", "library", ".", "viPeek64", "(", "session", ",", "address", ",", "byref", "(", "value_64", ")", ")", "return", "value_64", "....
Read an 64-bit value from the specified address. Corresponds to viPeek64 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :return: Data read from bus, return value of the library call. :rtype: bytes, :class:`pyvisa.constants.StatusCode`
[ "Read", "an", "64", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1470-L1483
train
228,889
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
poke
def poke(library, session, address, width, data): """Writes an 8, 16 or 32-bit value from the specified address. Corresponds to viPoke* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :param data: Data to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if width == 8: return poke_8(library, session, address, data) elif width == 16: return poke_16(library, session, address, data) elif width == 32: return poke_32(library, session, address, data) raise ValueError('%s is not a valid size. Valid values are 8, 16 or 32' % width)
python
def poke(library, session, address, width, data): """Writes an 8, 16 or 32-bit value from the specified address. Corresponds to viPoke* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :param data: Data to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ if width == 8: return poke_8(library, session, address, data) elif width == 16: return poke_16(library, session, address, data) elif width == 32: return poke_32(library, session, address, data) raise ValueError('%s is not a valid size. Valid values are 8, 16 or 32' % width)
[ "def", "poke", "(", "library", ",", "session", ",", "address", ",", "width", ",", "data", ")", ":", "if", "width", "==", "8", ":", "return", "poke_8", "(", "library", ",", "session", ",", "address", ",", "data", ")", "elif", "width", "==", "16", ":...
Writes an 8, 16 or 32-bit value from the specified address. Corresponds to viPoke* functions of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param width: Number of bits to read. :param data: Data to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Writes", "an", "8", "16", "or", "32", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1486-L1507
train
228,890
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
poke_8
def poke_8(library, session, address, data): """Write an 8-bit value from the specified address. Corresponds to viPoke8 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: Data read from bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke8(session, address, data)
python
def poke_8(library, session, address, data): """Write an 8-bit value from the specified address. Corresponds to viPoke8 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: Data read from bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke8(session, address, data)
[ "def", "poke_8", "(", "library", ",", "session", ",", "address", ",", "data", ")", ":", "return", "library", ".", "viPoke8", "(", "session", ",", "address", ",", "data", ")" ]
Write an 8-bit value from the specified address. Corresponds to viPoke8 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: Data read from bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "an", "8", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1510-L1523
train
228,891
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
poke_16
def poke_16(library, session, address, data): """Write an 16-bit value from the specified address. Corresponds to viPoke16 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke16(session, address, data)
python
def poke_16(library, session, address, data): """Write an 16-bit value from the specified address. Corresponds to viPoke16 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke16(session, address, data)
[ "def", "poke_16", "(", "library", ",", "session", ",", "address", ",", "data", ")", ":", "return", "library", ".", "viPoke16", "(", "session", ",", "address", ",", "data", ")" ]
Write an 16-bit value from the specified address. Corresponds to viPoke16 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "an", "16", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1526-L1538
train
228,892
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
poke_32
def poke_32(library, session, address, data): """Write an 32-bit value from the specified address. Corresponds to viPoke32 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke32(session, address, data)
python
def poke_32(library, session, address, data): """Write an 32-bit value from the specified address. Corresponds to viPoke32 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke32(session, address, data)
[ "def", "poke_32", "(", "library", ",", "session", ",", "address", ",", "data", ")", ":", "return", "library", ".", "viPoke32", "(", "session", ",", "address", ",", "data", ")" ]
Write an 32-bit value from the specified address. Corresponds to viPoke32 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "an", "32", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1541-L1553
train
228,893
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
poke_64
def poke_64(library, session, address, data): """Write an 64-bit value from the specified address. Corresponds to viPoke64 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke64(session, address, data)
python
def poke_64(library, session, address, data): """Write an 64-bit value from the specified address. Corresponds to viPoke64 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viPoke64(session, address, data)
[ "def", "poke_64", "(", "library", ",", "session", ",", "address", ",", "data", ")", ":", "return", "library", ".", "viPoke64", "(", "session", ",", "address", ",", "data", ")" ]
Write an 64-bit value from the specified address. Corresponds to viPoke64 function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param address: Source address to read the value. :param data: value to be written to the bus. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Write", "an", "64", "-", "bit", "value", "from", "the", "specified", "address", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1556-L1568
train
228,894
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
read_asynchronously
def read_asynchronously(library, session, count): """Reads data from device or interface asynchronously. Corresponds to viReadAsync function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param count: Number of bytes to be read. :return: result, jobid, return value of the library call. :rtype: ctypes buffer, jobid, :class:`pyvisa.constants.StatusCode` """ buffer = create_string_buffer(count) job_id = ViJobId() ret = library.viReadAsync(session, buffer, count, byref(job_id)) return buffer, job_id, ret
python
def read_asynchronously(library, session, count): """Reads data from device or interface asynchronously. Corresponds to viReadAsync function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param count: Number of bytes to be read. :return: result, jobid, return value of the library call. :rtype: ctypes buffer, jobid, :class:`pyvisa.constants.StatusCode` """ buffer = create_string_buffer(count) job_id = ViJobId() ret = library.viReadAsync(session, buffer, count, byref(job_id)) return buffer, job_id, ret
[ "def", "read_asynchronously", "(", "library", ",", "session", ",", "count", ")", ":", "buffer", "=", "create_string_buffer", "(", "count", ")", "job_id", "=", "ViJobId", "(", ")", "ret", "=", "library", ".", "viReadAsync", "(", "session", ",", "buffer", ",...
Reads data from device or interface asynchronously. Corresponds to viReadAsync function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param count: Number of bytes to be read. :return: result, jobid, return value of the library call. :rtype: ctypes buffer, jobid, :class:`pyvisa.constants.StatusCode`
[ "Reads", "data", "from", "device", "or", "interface", "asynchronously", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1588-L1602
train
228,895
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
read_stb
def read_stb(library, session): """Reads a status byte of the service request. Corresponds to viReadSTB function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :return: Service request status byte, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ status = ViUInt16() ret = library.viReadSTB(session, byref(status)) return status.value, ret
python
def read_stb(library, session): """Reads a status byte of the service request. Corresponds to viReadSTB function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :return: Service request status byte, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ status = ViUInt16() ret = library.viReadSTB(session, byref(status)) return status.value, ret
[ "def", "read_stb", "(", "library", ",", "session", ")", ":", "status", "=", "ViUInt16", "(", ")", "ret", "=", "library", ".", "viReadSTB", "(", "session", ",", "byref", "(", "status", ")", ")", "return", "status", ".", "value", ",", "ret" ]
Reads a status byte of the service request. Corresponds to viReadSTB function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :return: Service request status byte, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode`
[ "Reads", "a", "status", "byte", "of", "the", "service", "request", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1605-L1617
train
228,896
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
read_to_file
def read_to_file(library, session, filename, count): """Read data synchronously, and store the transferred data in a file. Corresponds to viReadToFile function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param filename: Name of file to which data will be written. :param count: Number of bytes to be read. :return: Number of bytes actually transferred, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ return_count = ViUInt32() ret = library.viReadToFile(session, filename, count, return_count) return return_count, ret
python
def read_to_file(library, session, filename, count): """Read data synchronously, and store the transferred data in a file. Corresponds to viReadToFile function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param filename: Name of file to which data will be written. :param count: Number of bytes to be read. :return: Number of bytes actually transferred, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode` """ return_count = ViUInt32() ret = library.viReadToFile(session, filename, count, return_count) return return_count, ret
[ "def", "read_to_file", "(", "library", ",", "session", ",", "filename", ",", "count", ")", ":", "return_count", "=", "ViUInt32", "(", ")", "ret", "=", "library", ".", "viReadToFile", "(", "session", ",", "filename", ",", "count", ",", "return_count", ")", ...
Read data synchronously, and store the transferred data in a file. Corresponds to viReadToFile function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param filename: Name of file to which data will be written. :param count: Number of bytes to be read. :return: Number of bytes actually transferred, return value of the library call. :rtype: int, :class:`pyvisa.constants.StatusCode`
[ "Read", "data", "synchronously", "and", "store", "the", "transferred", "data", "in", "a", "file", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1620-L1634
train
228,897
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
status_description
def status_description(library, session, status): """Returns a user-readable description of the status code passed to the operation. Corresponds to viStatusDesc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param status: Status code to interpret. :return: - The user-readable string interpretation of the status code passed to the operation, - return value of the library call. :rtype: - unicode (Py2) or str (Py3) - :class:`pyvisa.constants.StatusCode` """ description = create_string_buffer(256) ret = library.viStatusDesc(session, status, description) return buffer_to_text(description), ret
python
def status_description(library, session, status): """Returns a user-readable description of the status code passed to the operation. Corresponds to viStatusDesc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param status: Status code to interpret. :return: - The user-readable string interpretation of the status code passed to the operation, - return value of the library call. :rtype: - unicode (Py2) or str (Py3) - :class:`pyvisa.constants.StatusCode` """ description = create_string_buffer(256) ret = library.viStatusDesc(session, status, description) return buffer_to_text(description), ret
[ "def", "status_description", "(", "library", ",", "session", ",", "status", ")", ":", "description", "=", "create_string_buffer", "(", "256", ")", "ret", "=", "library", ".", "viStatusDesc", "(", "session", ",", "status", ",", "description", ")", "return", "...
Returns a user-readable description of the status code passed to the operation. Corresponds to viStatusDesc function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param status: Status code to interpret. :return: - The user-readable string interpretation of the status code passed to the operation, - return value of the library call. :rtype: - unicode (Py2) or str (Py3) - :class:`pyvisa.constants.StatusCode`
[ "Returns", "a", "user", "-", "readable", "description", "of", "the", "status", "code", "passed", "to", "the", "operation", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1667-L1682
train
228,898
pyvisa/pyvisa
pyvisa/ctwrapper/functions.py
terminate
def terminate(library, session, degree, job_id): """Requests a VISA session to terminate normal execution of an operation. Corresponds to viTerminate function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param degree: Constants.NULL :param job_id: Specifies an operation identifier. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viTerminate(session, degree, job_id)
python
def terminate(library, session, degree, job_id): """Requests a VISA session to terminate normal execution of an operation. Corresponds to viTerminate function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param degree: Constants.NULL :param job_id: Specifies an operation identifier. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode` """ return library.viTerminate(session, degree, job_id)
[ "def", "terminate", "(", "library", ",", "session", ",", "degree", ",", "job_id", ")", ":", "return", "library", ".", "viTerminate", "(", "session", ",", "degree", ",", "job_id", ")" ]
Requests a VISA session to terminate normal execution of an operation. Corresponds to viTerminate function of the VISA library. :param library: the visa library wrapped by ctypes. :param session: Unique logical identifier to a session. :param degree: Constants.NULL :param job_id: Specifies an operation identifier. :return: return value of the library call. :rtype: :class:`pyvisa.constants.StatusCode`
[ "Requests", "a", "VISA", "session", "to", "terminate", "normal", "execution", "of", "an", "operation", "." ]
b8b2d4371e1f00782856aa9176ff1ced6bcb3798
https://github.com/pyvisa/pyvisa/blob/b8b2d4371e1f00782856aa9176ff1ced6bcb3798/pyvisa/ctwrapper/functions.py#L1685-L1697
train
228,899