为什么Psycopg2在Pipfile中引用

时间:2019-03-20 23:41:12

标签: python psycopg2 pipfile

我的Pipfile看起来像

X, y = make_classification(n_samples=1000, n_features=4,
                           n_informative=2, n_redundant=0,
                           random_state=0, shuffle=False)
clf = RandomForestClassifier(n_estimators=100, max_depth=2,
                             random_state=0)
clf.fit(X, y)

它工作得很好,但是我对围绕“ psycopg2”的双引号有疑问,这些引号在gunicorn上不存在Django。

他们为什么在这里?

感谢您的回答。

2 个答案:

答案 0 :(得分:2)

其中包含数字的任何包装均置于双引号中。

答案 1 :(得分:2)

如果此文件是通过以下方式生成的:

pipenv

任何带数字的键都被引用。如果要保持一致,可以删除引号没有什么功能上的区别。