Metadata-Version: 2.1
Name: robot_common
Version: 0.0.1
Summary: A Python library for robot_common
Author-email: robot_common <07jiangbin@gmail.com>
License: MIT
Project-URL: Homepage, https://git.xmov.ai/jiangbin/robot_common
Project-URL: Repository, https://git.xmov.ai/jiangbin/robot_common
Project-URL: Issues, https://git.xmov.ai/jiangbin/robot_common
Keywords: python,robot_common
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: aiohttp
Requires-Dist: loguru
Provides-Extra: dev
Requires-Dist: twine; extra == "dev"
Requires-Dist: pip-tools; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=22.0; extra == "dev"
Requires-Dist: flake8>=4.0; extra == "dev"
Requires-Dist: mypy>=0.900; extra == "dev"


# robot_common

一个用于robot_common的工具，可以读取robot_common的日志文件，并按照时间顺序执行robot_common请求。

## Features


## 安装

```bash
# 本地
pip install robot_common -i https://pypi.org/simple/
# 阿里云
pip install robot_common -i https://pypi.org/simple/
```

## 用法

```bash
python -m robot_common <log_file>
```


### 开发配置

```bash
# 克隆仓库
git clone git@github.com:atanx/robot_common.git
cd robot_common

# 安装开发依赖
pip install -e ".[dev]"

# 手动修改修改__init__.py中的__version__， 然后打包
make build

# 上传到xmov-pypi, 需要安装twine， 配置~/.pypirc
make upload
```

    
