PEP 8:如何为名为 a2b 的库命名首字母缩写词?

PEP 8: How to name an acronym for a library named a2b?

我已经创建了一个名为 url2dictionary.py 的源文件(受到 word2vec 的影响),我想将其导入其他脚本,例如:

import url2dictionary as ud

现在,ud 感觉不像 pd 对 pandas 或 tf 对 tensorflow 的感觉那么正确。所以我想知道导入这些命名库的最佳方法是什么。或者我应该从一开始就完全不同地命名我的图书馆吗?

PEP8 没有规定这种情况的具体情况--Pandas 并且 tensorflow 使在导入其主模块时创建 shorthand 别名成为一种非官方的常见做法(例如 import pandas as pd/import tensorflow as tf)

你做的很好,我会坚持import url2dictionary as ud