ImportError: cannot import name Minio - minio

I am using minio 5.0.1 with this command:
pip install minio
But I still get this error
Traceback (most recent call last):
File "minio.py", line 2, in <module>
from minio import Minio
File "/root/minio.py", line 2, in <module>
from minio import Minio
ImportError: cannot import name Minio

i guess it's to late for this answer but anyways:
since you call your python file minio.py he tries to import this file instead of the minio package and failes to find an object inside called Minio.
Rename your py file to miniotest.py and it should work.

Related

Django Rest Framework AttributeError: module 'coreapi' has no attribute 'Client'

I am trying to run tests for api that worked before. Test.py looks like following:
from django.contrib.auth.models import User
from rest_framework import status
from rest_framework.test import APITestCase
class ApiUserTest(APITestCase):
"""
python manage.py test .\apps\api\api_user
API urls:
api_user/login/
api_user/logout/
api_user/register/
api_user/change_password/
"""
def setUp(self):
...
def test_user_register(self):
...
But I'm getting the following error
PS F:\ComputerShop> python manage.py test .\apps\api\api_user
System check identified no issues (0 silenced).
E
======================================================================
ERROR: api.api_user.tests (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: api.api_user.tests
Traceback (most recent call last):
File "C:\Users\Emil\AppData\Local\Programs\Python\Python38\lib\unittest\loader.py", line 436, in _find_test_path
module = self._get_module_from_name(name)
File "C:\Users\Emil\AppData\Local\Programs\Python\Python38\lib\unittest\loader.py", line 377, in _get_module_from_name
__import__(name)
File "F:\ComputerShop\apps\api\api_user\tests.py", line 3, in <module>
from rest_framework.test import APITestCase
File "F:\ComputerShop\env\lib\site-packages\rest_framework\test.py", line 123, in <module>
class CoreAPIClient(coreapi.Client):
AttributeError: module 'coreapi' has no attribute 'Client'
I also tried to run tests on a known working project, but they did not start there either.
I've tried to reinstalling the rest framework but it doesn't help. I use virtual environment in the project
To solve this problem you should install next packages:
pip install coreapi pyyaml

ModuleNotFoundError: No module named 'elasticsearch'

I am new to Python. MAC user, I have Python 3.7 and I have installed Elasticsearch via pip3 install elasticsearch. I do not have any other file named Elasticsearch and I tried to fix the PYTHONPATH as suggested on other posts. I also tried to uninstall and re-install Elasticsearch again. Same error. When I run...
import logging
import elasticsearch
def gotoelk():
_es = None
_es = Elasticsearch([{'host':'Internal IP of my Elasticsearch', 'port': 9200}])
if _es.ping():
print('Connected')
else:
print('NOT connected')
return _es
if __name__ == '__main__':
logging.basicConfig(level=logging.ERROR)
gotoelk()
I get the following:
Traceback (most recent call last):
File "/Users/username/Desktop/MBAPI/ELK_connect_test.py", line 3, in <module>
import elasticsearch
ModuleNotFoundError: No module named 'elasticsearch'
Any ideas or suggestions?

Connecting to Hue via external host

I've recently installed hue and am having problems connecting to the interface via an external host, i can connect locally fine. My hue.ini file is configured as http_host=0.0.0.0 http_port=8888. I've seen some posts about how to fix this by setting "Bind Hue Server to Wildcard Address" in Cloudera Manager. I do not have Cloudera Manager, what is the corresponding way to do this in a standalone hue installation?
error.log shows the following
[24/Nov/2015 03:02:12 -0800] models ERROR error syncing oozie
Traceback (most recent call last):
File "/usr/local/hue/desktop/core/src/desktop/models.py", line 269, in sync
from oozie.models import Workflow, Coordinator, Bundle
ImportError: No module named oozie.models
[24/Nov/2015 03:02:12 -0800] models ERROR error syncing beeswax
Traceback (most recent call last):
File "/usr/local/hue/desktop/core/src/desktop/models.py", line 296, in sync
from beeswax.models import SavedQuery
ImportError: No module named beeswax.models
[24/Nov/2015 03:02:12 -0800] models ERROR error syncing pig
Traceback (most recent call last):
File "/usr/local/hue/desktop/core/src/desktop/models.py", line 308, in sync
from pig.models import PigScript
ImportError: No module named pig.models
[24/Nov/2015 03:02:12 -0800] models ERROR error syncing search
Traceback (most recent call last):
File "/usr/local/hue/desktop/core/src/desktop/models.py", line 318, in sync
from search.models import Collection
ImportError: No module named search.models

Autobahn symmetric RPC

I am trying to use symmetric RPC in Autobahn.
from autobahn.wamp.protocol import exportPRC, WampClientFactory, WampClientProtocol
But, I got this error:
from autobahn.wamp.protocol import exportRPC, WampClientFactory, WampClientProtocol
Traceback (most recent call last):
File "", line 1, in
ImportError: cannot import name exportRPCl
I followed http://autobahn.ws/python/installation.html, but could not get it to work.
It seems from v0.9. Sample of symmetric rpc can not be found. WAMP1 also can not be found. I installed v0.10. That's why is has this problem.

Ubuntu 10.04 - Python multiprocessing - 'module' object has no attribute 'local' error

The following code is from the python 2.6 manual.
from multiprocessing import Process
import os
def info(title):
print(title)
print('module name:', 'me')
print('parent process:', os.getppid())
print('process id:', os.getpid())
def f(name):
info('function f')
print('hello', name)
if __name__ == '__main__':
info('main line')
p = Process(target=f, args=('bob',))
p.start()
p.join()
This creates the following stack traces:
Traceback (most recent call last):
File "threading.py", line 1, in <module>
from multiprocessing import Process
File "/usr/lib/python2.6/multiprocessing/__init__.py", line 64, in <module>
from multiprocessing.util import SUBDEBUG, SUBWARNING
File "/usr/lib/python2.6/multiprocessing/util.py", line 287, in <module>
class ForkAwareLocal(threading.local):
AttributeError: 'module' object has no attribute 'local'
Exception AttributeError: '_shutdown' in <module 'threading' from '/home/v0idnull/tmp/pythreads/threading.pyc'> ignored
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
File "/usr/lib/python2.6/atexit.py", line 24, in _run_exitfuncs
func(*targs, **kargs)
File "/usr/lib/python2.6/multiprocessing/util.py", line 258, in _exit_function
info('process shutting down')
TypeError: 'NoneType' object is not callable
Error in sys.exitfunc:
Traceback (most recent call last):
File "/usr/lib/python2.6/atexit.py", line 24, in _run_exitfuncs
func(*targs, **kargs)
File "/usr/lib/python2.6/multiprocessing/util.py", line 258, in _exit_function
info('process shutting down')
TypeError: 'NoneType' object is not callable
I'm completely clueless as to WHY this is happening, and google has given me very little to work with.
that code runs fine on my machine:
Ubuntu 10.10, Python 2.6.6 64-bit.
but your error is actually because you have a file named 'threading.py' that you are running this code from (see the stack-trace details). this is causing a namespace mismatch, since the multiprocessing module needs the 'real' threading module. try renaming your file to something other than 'threading.py' and running it again.
also... the example you posted is not from the Python 2.6 docs... it is from the Python 3.x docs. make sure you are reading the docs for the version that matches what you are running.

Resources