https://github.com/connectai-e/connectai
开发工具
https://github.com/connectai-e/connectai
Last synced: about 1 year ago
JSON representation
开发工具
- Host: GitHub
- URL: https://github.com/connectai-e/connectai
- Owner: ConnectAI-E
- License: mit
- Created: 2023-12-06T04:00:02.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-23T12:34:11.000Z (almost 2 years ago)
- Last Synced: 2025-04-30T20:19:07.912Z (about 1 year ago)
- Language: Python
- Size: 134 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 多python包管理项目
多python包管理项目
## 目录结构
```
src
├── ca-lark-sdk
│ ├── connectai
│ │ └── lark
│ │ └── sdk
│ │ └── __init__.py
│ ├── LICENSE
│ ├── README.md
│ └── setup.py
└── connectai
├── connectai
│ └── __init__.py
├── LICENSE
├── README.md
└── setup.py
7 directories, 8 files
```
# build
```
python setup.py egg_info --egg-base /tmp sdist --dist-dir=`pwd`/dist
dist
├── ca-lark-sdk-0.0.1.tar.gz
└── connectai-0.0.10.tar.gz
```
# 本地安装
```
pip install dist/*
site-packages/connectai
├── __init__.py
├── lark
│ └── sdk
│ ├── __init__.py
│ └── __pycache__
│ └── __init__.cpython-310.pyc
└── __pycache__
└── __init__.cpython-310.pyc
5 directories, 4 files
>>> import connectai
>>> import connectai.lark.sdk
>>> connectai.__version__
'0.0.10'
>>> connectai.lark.sdk.__version__
'0.0.1'
```