因为我对Python编程比较陌生,所以我不确定如何在代码中正确使用Datumbox。我需要它来执行一些情绪分析,但是,我无法像通常那样通过conda / pip install DatumBox来实现它!
github上提供以下内容。 DatumBox似乎提供了许多不同的编程语言,但到目前为止还没有Python的大社区:
https://github.com/Lily418/Datumbox-Python-Wrapper
如何使用链接中的材质将DatumBox用作Python中的模块?我已经有了一个API KEY,现在我想在我的代码导入DatumBox等中实现它......
非常感谢提前!
答案 0 :(得分:0)
您必须使用此包装器:https://github.com/irish315/Datumbox-Python-Wrapper
const $Vals = {};
function A() {
return new Promise((resolve, reject) => {
resolve([1, 2, 3])
})
}
function B() {
return new Promise((resolve, reject) => {
resolve([4, 5, 6])
})
}
A().then((dt) => {
$Vals.A = dt;
return B();
}).then((dt) => {
$Vals.B = dt;
console.log('%j', $Vals);
})