iripau 1.1.0__py3-none-any.whl → 1.1.1__py3-none-any.whl

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.
iripau/requests.py CHANGED
@@ -1,5 +1,5 @@
1
1
  """
2
- Utilities for the requests module
2
+ A wrapper of the requests module
3
3
  """
4
4
 
5
5
  import requests
@@ -79,3 +79,31 @@ class Session(requests.Session):
79
79
  echo
80
80
  )
81
81
  return response
82
+
83
+
84
+ def delete(*args, **kwargs):
85
+ return Session().delete(*args, **kwargs)
86
+
87
+
88
+ def get(*args, **kwargs):
89
+ return Session().get(*args, **kwargs)
90
+
91
+
92
+ def head(*args, **kwargs):
93
+ return Session().head(*args, **kwargs)
94
+
95
+
96
+ def options(*args, **kwargs):
97
+ return Session().options(*args, **kwargs)
98
+
99
+
100
+ def patch(*args, **kwargs):
101
+ return Session().patch(*args, **kwargs)
102
+
103
+
104
+ def post(*args, **kwargs):
105
+ return Session().post(*args, **kwargs)
106
+
107
+
108
+ def put(*args, **kwargs):
109
+ return Session().put(*args, **kwargs)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iripau
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Python utilities focused on command execution
5
5
  Author: Ricardo Quezada
6
6
  Maintainer: Ricardo Quezada
@@ -3,12 +3,12 @@ iripau/executable.py,sha256=W00UNJfMWwZ7cZkEvppwVWy8GaGfbr36eRx0BwaI6mA,3109
3
3
  iripau/functools.py,sha256=Jyi0LdOx36Ih6s9TF4aFS3Xk-RW78YE2znB1PBWTAIo,2901
4
4
  iripau/logging.py,sha256=dA-69y5MN8a_c95e_DOlULO0tc7t267okFi9iqJzrmg,2542
5
5
  iripau/random.py,sha256=zC5GxmBdfVa6nAUZcv5gCLwBpZU3sA1TB71Cn311lHo,1023
6
- iripau/requests.py,sha256=BJIlz2UzB7wNEHx0IZ-BF1UNfmRxXBhRaW86HBO0jII,2597
6
+ iripau/requests.py,sha256=MIf1I7jhHk3-8R36VpRSng8aoefdsSTHHW11HApmoDw,3108
7
7
  iripau/shutil.py,sha256=HwU4sUrStzAZjqbIMK7xm-NfjxMXHZx4lWAjwfBf4rw,2558
8
8
  iripau/subprocess.py,sha256=mQDLrBgTOEJ_Ueb1nqIbRkrzMlnYWjfXS8kJsspMcsE,17684
9
9
  iripau/threading.py,sha256=q-a6OuDrz3hg_5u2Q0eMG3hzu_IgGNBfEw-cI_pyaDo,8955
10
- iripau-1.1.0.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
11
- iripau-1.1.0.dist-info/METADATA,sha256=U60idKE5l07kZz3VlMhNPWoHXZsco1DdkpKGGCgGqC0,810
12
- iripau-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
- iripau-1.1.0.dist-info/top_level.txt,sha256=y2HMFLCoP2EP7kbRIqkyCVIf_YRZfA0cYYLNK28U9cY,7
14
- iripau-1.1.0.dist-info/RECORD,,
10
+ iripau-1.1.1.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
11
+ iripau-1.1.1.dist-info/METADATA,sha256=7IUERIMs_JNTZKxzuNBLgjqOB_68Pp_gIwoH7Zn4rMI,810
12
+ iripau-1.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ iripau-1.1.1.dist-info/top_level.txt,sha256=y2HMFLCoP2EP7kbRIqkyCVIf_YRZfA0cYYLNK28U9cY,7
14
+ iripau-1.1.1.dist-info/RECORD,,
File without changes