.
A:
The code you posted is already almost right. It just needs a little bit of work:
mercedes comand aps 2017/2018 v18 ntg1 europe sat nav dvd disc v12.
^
As you can see, you need to use single quotes'rather than double quotes "
Or you could use raw strings:
mercedes comand aps 2017/2018 v18 ntg1 europe sat nav dvd disc v12 \n ^
And, you have a typo in your import line:
from urllib.parse import quote_plus
should be
from urllib.parse import quote_plus
That should fix your import.
#region Copyright (C) 2005-2011 Team MediaPortal
// Copyright (C) 2005-2011 Team MediaPortal
//
//
// MediaPortal is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// MediaPortal is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License ac619d1d87
Related links:
Comments