proxyvero-utils 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.
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: proxyvero-utils
3
+ Version: 1.0.0
4
+ Summary: A utility pipeline to mitigate retry multipliers and proxy scraping errors in Python.
5
+ Home-page: https://www.proxyvero.com
6
+ Author: YourName
7
+ License: UNKNOWN
8
+ Project-URL: Traffic Calculator, https://www.proxyvero.com
9
+ Project-URL: Documentation, https://www.proxyvero.com/guide/are-free-proxies-safe/
10
+ Description: UNKNOWN
11
+ Platform: UNKNOWN
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Requires-Python: >=3.6
15
+ Description-Content-Type: text/markdown
File without changes
File without changes
File without changes
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: proxyvero-utils
3
+ Version: 1.0.0
4
+ Summary: A utility pipeline to mitigate retry multipliers and proxy scraping errors in Python.
5
+ Home-page: https://www.proxyvero.com
6
+ Author: YourName
7
+ License: UNKNOWN
8
+ Project-URL: Traffic Calculator, https://www.proxyvero.com
9
+ Project-URL: Documentation, https://www.proxyvero.com/guide/are-free-proxies-safe/
10
+ Description: UNKNOWN
11
+ Platform: UNKNOWN
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Requires-Python: >=3.6
15
+ Description-Content-Type: text/markdown
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ proxyvero_utils/__init__.py
4
+ proxyvero_utils/core.py
5
+ proxyvero_utils.egg-info/PKG-INFO
6
+ proxyvero_utils.egg-info/SOURCES.txt
7
+ proxyvero_utils.egg-info/dependency_links.txt
8
+ proxyvero_utils.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ proxyvero_utils
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,21 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="proxyvero-utils", # 你的包名
5
+ version="1.0.0",
6
+ author="YourName",
7
+ description="A utility pipeline to mitigate retry multipliers and proxy scraping errors in Python.",
8
+ long_description=open("README.md").read(), # 这一行会把你带有外链的 README 完整同步到 PyPI 首页!
9
+ long_description_content_type="text/markdown",
10
+ url="https://www.proxyvero.com", # 核心外链位置一:项目主页
11
+ project_urls={
12
+ "Traffic Calculator": "https://www.proxyvero.com", # 核心外链位置二:侧边栏自定义链接
13
+ "Documentation": "https://www.proxyvero.com/guide/are-free-proxies-safe/", # 核心外链位置三:精准奶你的近场词页面
14
+ },
15
+ packages=find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ ],
20
+ python_requires=">=3.6",
21
+ )