使用uplink-Python创建一个新的storj存储桶。

huangapple go评论142阅读模式
英文:

Create a new storj bucket with uplink-Python

问题

我正在尝试使用uplink-python创建一个新的storj存储桶,有人知道这个错误吗?

谢谢

  1. class Storage:
  2. def __init__(self, api_key: str, satellite: str, passphrase: str, email: str):
  3. """
  4. account Storj
  5. """
  6. self.api_key = api_key
  7. self.satellite = satellite
  8. self.email = email
  9. self.passphrase = passphrase
  10. self.uplink = Uplink()
  11. self.config = Config()
  12. self.access = self.uplink.config_request_access_with_passphrase(self.config,
  13. self.satellite,
  14. self.api_key,
  15. self.passphrase)
  16. self.project = self.access.open_project() <-- 打开项目
  17. def create_bucket(self, mybucket: str):
  18. """
  19. 创建一个存储桶,如果已存在则忽略错误
  20. """
  21. print(mybucket)
  22. self.project.ensure_bucket(mybucket)
  23. def get_bucket(self, mybucket: str):
  24. """
  25. 验证存储桶
  26. """
  27. print(mybucket)
  28. return self.project.stat_bucket(mybucket)
  29. def close(self):
  30. self.project.close()
  31. storage = Storage(api_key="zzz", satellite=".storj.io:7777", passphrase="passtest", mail="bucket@bucket.com")
  32. 验证旧的存储桶
  33. storage.get_bucket("demo01") # 运行正常
  34. 创建一个新的存储桶
  35. storage.create_bucket("Hello") # 内部错误
  36. 输出
  37. > File "../test/uplink/lib/python3.9/site-packages/uplink_python/project.py", line 121, in ensure_bucket
  38. raise _storj_exception(bucket_result.error.contents.code,
  39. uplink_python.errors.InternalError: 'internal error'
  40. 121
  41. def ensure_bucket(self, bucket_name: str):
  42. """
  43. 确保存储桶存在或创建一个新的存储桶。
  44. 当存储桶已存在时,返回一个有效的存储桶而不报错
  45. 参数
  46. ----------
  47. bucket_name : str
  48. 返回
  49. -------
  50. Bucket
  51. """
  52. #
  53. # 声明相应的golang函数的参数和返回值类型
  54. self.uplink.m_libuplink.uplink_ensure_bucket.argtypes = [ctypes.POINTER(_ProjectStruct),
  55. ctypes.c_char_p]
  56. self.uplink.m_libuplink.uplink_ensure_bucket.restype = _BucketResult
  57. #
  58. # 准备函数的输入
  59. bucket_name_ptr = ctypes.c_char_p(bucket_name.encode('utf-8'))
  60. # 通过调用导出的golang函数打开存储桶(如果不存在)
  61. bucket_result = self.uplink.m_libuplink.uplink_ensure_bucket(self.project, bucket_name_ptr)
  62. #
  63. # 如果发生错误
  64. if bool(bucket_result.error):
  65. raise _storj_exception(bucket_result.error.contents.code,
  66. bucket_result.error.contents.message.decode("utf-8"))
  67. return self.uplink.bucket_from_result(bucket_result.bucket)
  68. "内部错误"的消息来自于"raise _storj_exception.."这一行
  69. 补充
  70. 使用Web界面创建新的存储桶时没有错误
  71. 参考
  72. https://storj-thirdparty.github.io/uplink-python/#/library?id=ensure_bucketbucket_name
  73. https://github.com/storj/uplink/blob/8da069b86063ee9671cc85cc44eaa6b8baf84b58/bucket.go#L97
英文:

I'm trying to create a new storj bucket with uplink-python
Does anyone know this error ?

Thank you

  1. class Storage:
  2. def __init__(self, api_key: str, satellite: str, passphrase: str, email: str):
  3. &quot;&quot;&quot;
  4. account Storj
  5. &quot;&quot;&quot;
  6. self.api_key = api_key
  7. self.satellite = satellite
  8. self.email = email
  9. self.passphrase = passphrase
  10. self.uplink = Uplink()
  11. self.config = Config()
  12. self.access = self.uplink.config_request_access_with_passphrase(self.config,
  13. self.satellite,
  14. self.api_key,
  15. self.passphrase)
  16. self.project = self.access.open_project() &lt;-- open the project
  17. def create_bucket(self, mybucket: str):
  18. &quot;&quot;&quot;
  19. Create un bucket and ingnores the error if it already exist
  20. &quot;&quot;&quot;
  21. print(mybucket)
  22. self.project.ensure_bucket(mybucket)
  23. def get_bucket(self, mybucket: str):
  24. &quot;&quot;&quot;
  25. verify bucket
  26. &quot;&quot;&quot;
  27. print(mybucket)
  28. return self.project.stat_bucket(mybucket)
  29. def close(self):
  30. self.project.close()
  31. storage = Storage(api_key=&quot;zzz&quot;, satellite=&quot;.storj.io:7777&quot;, passphrase=&quot;passtest&quot;, mail=&quot;bucket@bucket.com&quot;)

Verify the old bucket

  1. storage.get_bucket(&quot;demo01&quot;) # it&#39;s works

Create a new bucket

  1. storage.create_bucket(&quot;Hello&quot;) # internal error

output:

> File "../test/uplink/lib/python3.9/site-packages/uplink_python/project.py", line 121, in ensure_bucket
raise _storj_exception(bucket_result.error.contents.code,
uplink_python.errors.InternalError: 'internal error'

line 121

  1. def ensure_bucket(self, bucket_name: str):
  2. &quot;&quot;&quot;
  3. function ensures that a bucket exists or creates a new one.
  4. When bucket already exists it returns a valid Bucket and no error
  5. Parameters
  6. ----------
  7. bucket_name : str
  8. Returns
  9. -------
  10. Bucket
  11. &quot;&quot;&quot;
  12. #
  13. # declare types of arguments and response of the corresponding golang function
  14. self.uplink.m_libuplink.uplink_ensure_bucket.argtypes = [ctypes.POINTER(_ProjectStruct),
  15. ctypes.c_char_p]
  16. self.uplink.m_libuplink.uplink_ensure_bucket.restype = _BucketResult
  17. #
  18. # prepare the input for the function
  19. bucket_name_ptr = ctypes.c_char_p(bucket_name.encode(&#39;utf-8&#39;))
  20. # open bucket if doesn&#39;t exist by calling the exported golang function
  21. bucket_result = self.uplink.m_libuplink.uplink_ensure_bucket(self.project, bucket_name_ptr)
  22. #
  23. # if error occurred
  24. if bool(bucket_result.error):
  25. raise _storj_exception(bucket_result.error.contents.code,
  26. bucket_result.error.contents.message.decode(&quot;utf-8&quot;))
  27. return self.uplink.bucket_from_result(bucket_result.bucket)

The "internal error" message comes from that "raise _storj_exception.."

add:
There are no error creating a new bucket with web interface

ref :
https://storj-thirdparty.github.io/uplink-python/#/library?id=ensure_bucketbucket_name

https://github.com/storj/uplink/blob/8da069b86063ee9671cc85cc44eaa6b8baf84b58/bucket.go#L97

答案1

得分: 0

已解决:
存储桶名称中的大写字母导致了内部错误...

  1. storage.create_bucket("Hello")

替换为

  1. storage.create_bucket("hello")

使用uplink-Python创建一个新的storj存储桶。

编辑:
这就是原因:
https://forum.storj.io/t/bucket-name-uppercase/20554/2?u=mike1

英文:

Solved:
an upper case letter in the bucket name causes the internal error...

replace

  1. storage.create_bucket(&quot;Hello&quot;)

with

  1. storage.create_bucket(&quot;hello&quot;)

使用uplink-Python创建一个新的storj存储桶。

EDIT:
that's why:
https://forum.storj.io/t/bucket-name-uppercase/20554/2?u=mike1

huangapple
  • 本文由 发表于 2022年12月2日 07:37:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/74649328.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定