Install oauth for python3
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
I'm looking for easy way to install python3-oauth
with pip.
I've found this
https://help.launchpad.net/API/launchpadlib
but it refers to python2.
I've found there are some packages for python3
https://packages.debian.org/sid/python3-launchpadlib
but i need to build module that will install dependencies only from setup.py
.
Is there any way to install lauchpadlib with oauth for python3 using pip?
Using python3pip3 install lauchpadlib && python3 -c 'import oauth.oauth'
occurs in error in lib oauth
cannot import urlparse
python development oauth
add a comment |Â
up vote
0
down vote
favorite
I'm looking for easy way to install python3-oauth
with pip.
I've found this
https://help.launchpad.net/API/launchpadlib
but it refers to python2.
I've found there are some packages for python3
https://packages.debian.org/sid/python3-launchpadlib
but i need to build module that will install dependencies only from setup.py
.
Is there any way to install lauchpadlib with oauth for python3 using pip?
Using python3pip3 install lauchpadlib && python3 -c 'import oauth.oauth'
occurs in error in lib oauth
cannot import urlparse
python development oauth
python
andpython3
are different. Have you considered tryingpython3 -c ...
instead ofpython
? Becausepython
refers to Python 2 and not Python 3.
â Thomas Wardâ¦
Apr 30 at 16:44
Yes! Theres mistake in description. Should bepython3 -c ....
â ImportError
Apr 30 at 16:57
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm looking for easy way to install python3-oauth
with pip.
I've found this
https://help.launchpad.net/API/launchpadlib
but it refers to python2.
I've found there are some packages for python3
https://packages.debian.org/sid/python3-launchpadlib
but i need to build module that will install dependencies only from setup.py
.
Is there any way to install lauchpadlib with oauth for python3 using pip?
Using python3pip3 install lauchpadlib && python3 -c 'import oauth.oauth'
occurs in error in lib oauth
cannot import urlparse
python development oauth
I'm looking for easy way to install python3-oauth
with pip.
I've found this
https://help.launchpad.net/API/launchpadlib
but it refers to python2.
I've found there are some packages for python3
https://packages.debian.org/sid/python3-launchpadlib
but i need to build module that will install dependencies only from setup.py
.
Is there any way to install lauchpadlib with oauth for python3 using pip?
Using python3pip3 install lauchpadlib && python3 -c 'import oauth.oauth'
occurs in error in lib oauth
cannot import urlparse
python development oauth
edited Apr 30 at 16:57
asked Apr 30 at 16:43
ImportError
11
11
python
andpython3
are different. Have you considered tryingpython3 -c ...
instead ofpython
? Becausepython
refers to Python 2 and not Python 3.
â Thomas Wardâ¦
Apr 30 at 16:44
Yes! Theres mistake in description. Should bepython3 -c ....
â ImportError
Apr 30 at 16:57
add a comment |Â
python
andpython3
are different. Have you considered tryingpython3 -c ...
instead ofpython
? Becausepython
refers to Python 2 and not Python 3.
â Thomas Wardâ¦
Apr 30 at 16:44
Yes! Theres mistake in description. Should bepython3 -c ....
â ImportError
Apr 30 at 16:57
python
and python3
are different. Have you considered trying python3 -c ...
instead of python
? Because python
refers to Python 2 and not Python 3.â Thomas Wardâ¦
Apr 30 at 16:44
python
and python3
are different. Have you considered trying python3 -c ...
instead of python
? Because python
refers to Python 2 and not Python 3.â Thomas Wardâ¦
Apr 30 at 16:44
Yes! Theres mistake in description. Should be
python3 -c ....
â ImportError
Apr 30 at 16:57
Yes! Theres mistake in description. Should be
python3 -c ....
â ImportError
Apr 30 at 16:57
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
The oauth
python module is outdated, deprecated, and unmaintained. You should use python3-oauthlib
instead.
I dont needpython-oauth
. I needlaunchpadlib
, but that has a dependencypython-oauth
. At pippython-oauth
is available only for python2. Lauchpadlib is compatible with python3 and I need python3 oauth
â ImportError
May 7 at 9:47
Because python-oauth is unmaintained, the only reason there are python3-oauth packages in Debian/Ubuntu, is because there's a patch to add the necessary import changes for it to sort of work there. You can't apply patches when installing via pip/easy_install though. Really it would be best to file a bug against launchpadlib upstream, about how it's using a deprecated oauth lib. Migrating it to oauthlib should be pretty easy though.
â dobey
May 7 at 13:20
There is a confirmed bug bugs.launchpad.net/lazr.restfulclient/+bug/1672458
â ImportError
May 8 at 14:02
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
The oauth
python module is outdated, deprecated, and unmaintained. You should use python3-oauthlib
instead.
I dont needpython-oauth
. I needlaunchpadlib
, but that has a dependencypython-oauth
. At pippython-oauth
is available only for python2. Lauchpadlib is compatible with python3 and I need python3 oauth
â ImportError
May 7 at 9:47
Because python-oauth is unmaintained, the only reason there are python3-oauth packages in Debian/Ubuntu, is because there's a patch to add the necessary import changes for it to sort of work there. You can't apply patches when installing via pip/easy_install though. Really it would be best to file a bug against launchpadlib upstream, about how it's using a deprecated oauth lib. Migrating it to oauthlib should be pretty easy though.
â dobey
May 7 at 13:20
There is a confirmed bug bugs.launchpad.net/lazr.restfulclient/+bug/1672458
â ImportError
May 8 at 14:02
add a comment |Â
up vote
1
down vote
The oauth
python module is outdated, deprecated, and unmaintained. You should use python3-oauthlib
instead.
I dont needpython-oauth
. I needlaunchpadlib
, but that has a dependencypython-oauth
. At pippython-oauth
is available only for python2. Lauchpadlib is compatible with python3 and I need python3 oauth
â ImportError
May 7 at 9:47
Because python-oauth is unmaintained, the only reason there are python3-oauth packages in Debian/Ubuntu, is because there's a patch to add the necessary import changes for it to sort of work there. You can't apply patches when installing via pip/easy_install though. Really it would be best to file a bug against launchpadlib upstream, about how it's using a deprecated oauth lib. Migrating it to oauthlib should be pretty easy though.
â dobey
May 7 at 13:20
There is a confirmed bug bugs.launchpad.net/lazr.restfulclient/+bug/1672458
â ImportError
May 8 at 14:02
add a comment |Â
up vote
1
down vote
up vote
1
down vote
The oauth
python module is outdated, deprecated, and unmaintained. You should use python3-oauthlib
instead.
The oauth
python module is outdated, deprecated, and unmaintained. You should use python3-oauthlib
instead.
answered Apr 30 at 17:24
dobey
31.9k33484
31.9k33484
I dont needpython-oauth
. I needlaunchpadlib
, but that has a dependencypython-oauth
. At pippython-oauth
is available only for python2. Lauchpadlib is compatible with python3 and I need python3 oauth
â ImportError
May 7 at 9:47
Because python-oauth is unmaintained, the only reason there are python3-oauth packages in Debian/Ubuntu, is because there's a patch to add the necessary import changes for it to sort of work there. You can't apply patches when installing via pip/easy_install though. Really it would be best to file a bug against launchpadlib upstream, about how it's using a deprecated oauth lib. Migrating it to oauthlib should be pretty easy though.
â dobey
May 7 at 13:20
There is a confirmed bug bugs.launchpad.net/lazr.restfulclient/+bug/1672458
â ImportError
May 8 at 14:02
add a comment |Â
I dont needpython-oauth
. I needlaunchpadlib
, but that has a dependencypython-oauth
. At pippython-oauth
is available only for python2. Lauchpadlib is compatible with python3 and I need python3 oauth
â ImportError
May 7 at 9:47
Because python-oauth is unmaintained, the only reason there are python3-oauth packages in Debian/Ubuntu, is because there's a patch to add the necessary import changes for it to sort of work there. You can't apply patches when installing via pip/easy_install though. Really it would be best to file a bug against launchpadlib upstream, about how it's using a deprecated oauth lib. Migrating it to oauthlib should be pretty easy though.
â dobey
May 7 at 13:20
There is a confirmed bug bugs.launchpad.net/lazr.restfulclient/+bug/1672458
â ImportError
May 8 at 14:02
I dont need
python-oauth
. I need launchpadlib
, but that has a dependency python-oauth
. At pip python-oauth
is available only for python2. Lauchpadlib is compatible with python3 and I need python3 oauthâ ImportError
May 7 at 9:47
I dont need
python-oauth
. I need launchpadlib
, but that has a dependency python-oauth
. At pip python-oauth
is available only for python2. Lauchpadlib is compatible with python3 and I need python3 oauthâ ImportError
May 7 at 9:47
Because python-oauth is unmaintained, the only reason there are python3-oauth packages in Debian/Ubuntu, is because there's a patch to add the necessary import changes for it to sort of work there. You can't apply patches when installing via pip/easy_install though. Really it would be best to file a bug against launchpadlib upstream, about how it's using a deprecated oauth lib. Migrating it to oauthlib should be pretty easy though.
â dobey
May 7 at 13:20
Because python-oauth is unmaintained, the only reason there are python3-oauth packages in Debian/Ubuntu, is because there's a patch to add the necessary import changes for it to sort of work there. You can't apply patches when installing via pip/easy_install though. Really it would be best to file a bug against launchpadlib upstream, about how it's using a deprecated oauth lib. Migrating it to oauthlib should be pretty easy though.
â dobey
May 7 at 13:20
There is a confirmed bug bugs.launchpad.net/lazr.restfulclient/+bug/1672458
â ImportError
May 8 at 14:02
There is a confirmed bug bugs.launchpad.net/lazr.restfulclient/+bug/1672458
â ImportError
May 8 at 14:02
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1030216%2finstall-oauth-for-python3%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
python
andpython3
are different. Have you considered tryingpython3 -c ...
instead ofpython
? Becausepython
refers to Python 2 and not Python 3.â Thomas Wardâ¦
Apr 30 at 16:44
Yes! Theres mistake in description. Should be
python3 -c ....
â ImportError
Apr 30 at 16:57