This commit is contained in:
wuhao 2020-11-13 16:15:00 +08:00
parent ccc0859f12
commit d2e821c861
3 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View File

@ -130,4 +130,5 @@ dmypy.json
.pyre/ .pyre/
.idea .idea
Pipfile.lock

15
Pipfile Normal file
View File

@ -0,0 +1,15 @@
[[source]]
url = "https://pypi.douban.com/simple"
verify_ssl = true
name = "pypi"
[packages]
kafka-python = "*"
arrow = "*"
pymongo = "*"
loguru = "*"
[dev-packages]
[requires]
python_version = "3.8"

View File

@ -11,3 +11,9 @@ export xlegudata_env="production"
``` ```
### 创建python环境
```shell
pipenv Pipfile
```