rpa-amazon-buyer 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. rpa_amazon_buyer-1.0.0/LICENSE +21 -0
  2. rpa_amazon_buyer-1.0.0/MANIFEST.in +2 -0
  3. rpa_amazon_buyer-1.0.0/PKG-INFO +28 -0
  4. rpa_amazon_buyer-1.0.0/README.md +13 -0
  5. rpa_amazon_buyer-1.0.0/pyproject.toml +3 -0
  6. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/__init__.py +3 -0
  7. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__init__.py +1 -0
  8. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/BillApi.cpython-38.pyc +0 -0
  9. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/LogisticsApi.cpython-38.pyc +0 -0
  10. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/OptimizerApi.cpython-38.pyc +0 -0
  11. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/OrderApi.cpython-38.pyc +0 -0
  12. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/ProductApi.cpython-38.pyc +0 -0
  13. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/ShopApi.cpython-38.pyc +0 -0
  14. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/UnionApi.cpython-38.pyc +0 -0
  15. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/api/__pycache__/__init__.cpython-38.pyc +0 -0
  16. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/command/__init__.py +3 -0
  17. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/command/bill/__init__.py +3 -0
  18. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/command/bill/service/__init__.py +3 -0
  19. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/command/product/service/ProductService.py +20 -0
  20. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/request/__init__.py +3 -0
  21. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/requirements.txt +4 -0
  22. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/service/__init__.py +1 -0
  23. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/service/__pycache__/TiktokService.cpython-38.pyc +0 -0
  24. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer/service/__pycache__/__init__.cpython-38.pyc +0 -0
  25. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer.egg-info/PKG-INFO +28 -0
  26. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer.egg-info/SOURCES.txt +29 -0
  27. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer.egg-info/dependency_links.txt +1 -0
  28. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer.egg-info/requires.txt +1 -0
  29. rpa_amazon_buyer-1.0.0/rpa_amazon_buyer.egg-info/top_level.txt +1 -0
  30. rpa_amazon_buyer-1.0.0/setup.cfg +4 -0
  31. rpa_amazon_buyer-1.0.0/setup.py +23 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Your Name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ provided to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,2 @@
1
+ # 整个项目
2
+ recursive-include rpa_amazon_buyer *.*
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.1
2
+ Name: rpa_amazon_buyer
3
+ Version: 1.0.0
4
+ Summary: RPA automated execution program for TikTok
5
+ Home-page: https://www.jeoshi.com
6
+ Author: Zhongshuizhou
7
+ Author-email: zhongshuizhou@qq.com
8
+ Classifier: Programming Language :: Python :: 3.8
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: selenium==4.27.1
15
+
16
+ # RPA-AMAZON
17
+
18
+ ## 本地开发
19
+
20
+ ```
21
+ pip install -e .
22
+ ```
23
+
24
+ ## 生产安装
25
+
26
+ ```
27
+ pip install rpa-amazon-buyer
28
+ ```
@@ -0,0 +1,13 @@
1
+ # RPA-AMAZON
2
+
3
+ ## 本地开发
4
+
5
+ ```
6
+ pip install -e .
7
+ ```
8
+
9
+ ## 生产安装
10
+
11
+ ```
12
+ pip install rpa-amazon-buyer
13
+ ```
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,3 @@
1
+ # __init__.py
2
+
3
+ # 空文件,表示这是一个包
@@ -0,0 +1 @@
1
+ # __init__.py
@@ -0,0 +1,3 @@
1
+ # __init__.py
2
+
3
+ # 空文件,表示这是一个包
@@ -0,0 +1,3 @@
1
+ # __init__.py
2
+
3
+ # 空文件,表示这是一个包
@@ -0,0 +1,3 @@
1
+ # __init__.py
2
+
3
+ # 空文件,表示这是一个包
@@ -0,0 +1,20 @@
1
+ import json
2
+ import uuid
3
+
4
+ from rpa_common import Common
5
+
6
+ common = Common()
7
+
8
+
9
+ class ProductService():
10
+ def __init__(self):
11
+ super().__init__()
12
+
13
+ def getProductInfo(self, driver, shop_data, options):
14
+ '''
15
+ @Desc : 获取产品信息
16
+ @Author : 钟水洲
17
+ @Time : 2024/05/31 15:42:22
18
+ '''
19
+ # 获取产品信息
20
+ # billApi.getProductInfo(driver, options)
@@ -0,0 +1,3 @@
1
+ # __init__.py
2
+
3
+ # 空文件,表示这是一个包
@@ -0,0 +1,4 @@
1
+ common==0.1.2
2
+ rpa_common==1.0.4
3
+ rpa_tiktok==1.0.0
4
+ selenium==4.34.2
@@ -0,0 +1 @@
1
+ # __init__.py
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.1
2
+ Name: rpa_amazon_buyer
3
+ Version: 1.0.0
4
+ Summary: RPA automated execution program for TikTok
5
+ Home-page: https://www.jeoshi.com
6
+ Author: Zhongshuizhou
7
+ Author-email: zhongshuizhou@qq.com
8
+ Classifier: Programming Language :: Python :: 3.8
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: selenium==4.27.1
15
+
16
+ # RPA-AMAZON
17
+
18
+ ## 本地开发
19
+
20
+ ```
21
+ pip install -e .
22
+ ```
23
+
24
+ ## 生产安装
25
+
26
+ ```
27
+ pip install rpa-amazon-buyer
28
+ ```
@@ -0,0 +1,29 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ setup.py
6
+ rpa_amazon_buyer/__init__.py
7
+ rpa_amazon_buyer/requirements.txt
8
+ rpa_amazon_buyer.egg-info/PKG-INFO
9
+ rpa_amazon_buyer.egg-info/SOURCES.txt
10
+ rpa_amazon_buyer.egg-info/dependency_links.txt
11
+ rpa_amazon_buyer.egg-info/requires.txt
12
+ rpa_amazon_buyer.egg-info/top_level.txt
13
+ rpa_amazon_buyer/api/__init__.py
14
+ rpa_amazon_buyer/api/__pycache__/BillApi.cpython-38.pyc
15
+ rpa_amazon_buyer/api/__pycache__/LogisticsApi.cpython-38.pyc
16
+ rpa_amazon_buyer/api/__pycache__/OptimizerApi.cpython-38.pyc
17
+ rpa_amazon_buyer/api/__pycache__/OrderApi.cpython-38.pyc
18
+ rpa_amazon_buyer/api/__pycache__/ProductApi.cpython-38.pyc
19
+ rpa_amazon_buyer/api/__pycache__/ShopApi.cpython-38.pyc
20
+ rpa_amazon_buyer/api/__pycache__/UnionApi.cpython-38.pyc
21
+ rpa_amazon_buyer/api/__pycache__/__init__.cpython-38.pyc
22
+ rpa_amazon_buyer/command/__init__.py
23
+ rpa_amazon_buyer/command/bill/__init__.py
24
+ rpa_amazon_buyer/command/bill/service/__init__.py
25
+ rpa_amazon_buyer/command/product/service/ProductService.py
26
+ rpa_amazon_buyer/request/__init__.py
27
+ rpa_amazon_buyer/service/__init__.py
28
+ rpa_amazon_buyer/service/__pycache__/TiktokService.cpython-38.pyc
29
+ rpa_amazon_buyer/service/__pycache__/__init__.cpython-38.pyc
@@ -0,0 +1 @@
1
+ selenium==4.27.1
@@ -0,0 +1 @@
1
+ rpa_amazon_buyer
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,23 @@
1
+ # -*- coding: utf-8 -*-
2
+ from setuptools import setup, find_packages
3
+
4
+ setup(
5
+ name='rpa_amazon_buyer', # 包的名字
6
+ version='1.0.0', # 包的版本
7
+ packages=find_packages(), # 自动寻找包中的模块
8
+ install_requires=[ # 依赖的其他包
9
+ 'selenium==4.27.1'
10
+ ],
11
+ author='Zhongshuizhou',
12
+ author_email='zhongshuizhou@qq.com',
13
+ description='RPA automated execution program for TikTok',
14
+ long_description=open('README.md', encoding='utf-8').read(),
15
+ long_description_content_type='text/markdown',
16
+ url='https://www.jeoshi.com',
17
+ classifiers=[
18
+ 'Programming Language :: Python :: 3.8',
19
+ 'License :: OSI Approved :: MIT License',
20
+ 'Operating System :: OS Independent',
21
+ ],
22
+ python_requires='>=3.8', # 支持的Python版本
23
+ )