Metadata-Version: 2.1
Name: ADattribution
Version: 0.0.2
Summary: make it easy to use AD
Home-page: https://gitee.com/ZeroSeeker/ADattribution
Author: ZeroSeeker
Author-email: zeroseeker@foxmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# ADattribution

#### 介绍
广告归因

1.  依赖管理
- 生成依赖
```shell script
pip3 freeze > requirements.txt
```
- 安装依赖
```shell script
pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple
```
- 虚拟环境管理
```text
创建虚拟环境：python3 -m venv venv
激活虚拟环境：source venv/bin/activate

退出虚拟环境：deactivate
```
