(Serial port or com port? - Serial ports are often refered as COM ports. It is the same to be short. You can read abut it in the Wiki article )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install in to ~/.local/share/kservices5/vscodehere.desktop | |
[Desktop Entry] | |
Type=Service | |
X-KDE-ServiceTypes=KonqPopupMenu/Plugin | |
MimeType=inode/directory; | |
Actions=openVSCodeHere; | |
X-KDE-AuthorizeAction=shell_access | |
[Desktop Action openVSCodeHere] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from suds.client import Client | |
client = Client('http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl') | |
# Returns a dict-like object with the fields 'countryCode', 'vatNumber', | |
# 'requestDate', 'valid' (boolean), 'name', and 'address'. | |
result = client.service.checkVat('IE', '6390845P') |