在 Python 中打开 Alteryx .yxdb 文件?
Open Alteryx .yxdb file in Python?
有没有办法将 .yxdb(Alteryx 数据库文件)导入 Pandas/Python,而不使用 Alteryx 作为中介?
简短的回答是否定的,目前还没有。
更长的答案:支持 .yxdb 的原始 C++ 是 available on github, as it was open sourced in order to adhere to R licensing when Alteryx hooked into R. See this link,Ned Harding 在他的博客中解释了这一切。所以基本上,任何人都可以通过利用开源 C++ 构建 Python 支持……但目前还没有人这样做。
不是 python 特定的,YXDB to SQLite DB command line 基于 Alteryx 开源的 C++ 库。
限制:
- 不是 Python 模块:使用 subprocess 调用命令,然后 pandas/sqlite3 从 SQLite 数据库文件中读取。
- 仅将 YXDB 读入 SQLite:写入 YXDB 未实现(尽管 alteryx 库允许)
免责声明:我是叉子的作者。
有没有办法将 .yxdb(Alteryx 数据库文件)导入 Pandas/Python,而不使用 Alteryx 作为中介?
简短的回答是否定的,目前还没有。
更长的答案:支持 .yxdb 的原始 C++ 是 available on github, as it was open sourced in order to adhere to R licensing when Alteryx hooked into R. See this link,Ned Harding 在他的博客中解释了这一切。所以基本上,任何人都可以通过利用开源 C++ 构建 Python 支持……但目前还没有人这样做。
不是 python 特定的,YXDB to SQLite DB command line 基于 Alteryx 开源的 C++ 库。
限制:
- 不是 Python 模块:使用 subprocess 调用命令,然后 pandas/sqlite3 从 SQLite 数据库文件中读取。
- 仅将 YXDB 读入 SQLite:写入 YXDB 未实现(尽管 alteryx 库允许)
免责声明:我是叉子的作者。