pyscriptbase 1.0.2__tar.gz → 1.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyscriptbase
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: python script base library
5
5
  Home-page:
6
6
  Author: ASMan
@@ -358,6 +358,34 @@ class CloudRequest:
358
358
  params=params,
359
359
  )
360
360
 
361
+ def delete(
362
+ self,
363
+ url: str,
364
+ body: str = None,
365
+ headers: dict = None,
366
+ isJson=True,
367
+ isXml=False,
368
+ isCookie=False,
369
+ allow_redirects=True,
370
+ timeout: int = 5,
371
+ maxTry=3,
372
+ params: dict = {},
373
+ ):
374
+ return self.__req__(
375
+ method="DELETE",
376
+ url=url,
377
+ body=body,
378
+ headers=headers,
379
+ isJson=isJson,
380
+ isXml=isXml,
381
+ isCookie=isCookie,
382
+ allow_redirects=allow_redirects,
383
+ timeout=timeout,
384
+ maxTry=maxTry,
385
+ params=params,
386
+ )
387
+
388
+
361
389
  def __req__(
362
390
  self,
363
391
  method: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyscriptbase
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: python script base library
5
5
  Home-page:
6
6
  Author: ASMan
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="pyscriptbase", # 包名
5
- version="1.0.2", # 版本号
5
+ version="1.0.3", # 版本号
6
6
  packages=find_packages(), # 自动查找包
7
7
  author="ASMan",
8
8
  author_email="",
File without changes
File without changes
File without changes