diff --git a/.gitignore b/.gitignore index ff4821b..8be42e9 100644 --- a/.gitignore +++ b/.gitignore @@ -130,4 +130,5 @@ dmypy.json .pyre/ .idea +Pipfile.lock diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..1e12bbb --- /dev/null +++ b/Pipfile @@ -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" diff --git a/README.md b/README.md index c03d033..3ace395 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,9 @@ export xlegudata_env="production" ``` +### 创建python环境 + +```shell +pipenv Pipfile +``` +