reqease 0.1__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.
reqease-0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 SWimplifyDev
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
+ furnished 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
+ include README.md
2
+ include LICENSE
reqease-0.1/PKG-INFO ADDED
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.1
2
+ Name: reqease
3
+ Version: 0.1
4
+ Summary: A short description of the package
5
+ Home-page: https://github.com/DanielRodriguez-SS/reqease.git
6
+ Author: Daniel Rodriguez
7
+ Author-email: danielrodriguezmarin@me.com
8
+ License: MIT
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+
16
+ # reqease
17
+ An easy, clean and light form of request
reqease-0.1/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # reqease
2
+ An easy, clean and light form of request
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=42", "wheel"]
3
+ build-backend = "setuptools.build_meta"
File without changes
@@ -0,0 +1,21 @@
1
+ import urllib.request
2
+ import ssl
3
+ import json
4
+ import certifi
5
+
6
+ def get_request(url:str):
7
+ context = ssl.create_default_context(cafile=certifi.where())
8
+ with urllib.request.urlopen(url=url, context=context) as response:
9
+ content = response.read()
10
+ return content.decode('utf-8')
11
+
12
+
13
+
14
+
15
+
16
+
17
+ # json_data = json.loads(data)
18
+ # print(data)
19
+
20
+ # with open('html3.txt', 'w') as file:
21
+ # file.write(data)
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.1
2
+ Name: reqease
3
+ Version: 0.1
4
+ Summary: A short description of the package
5
+ Home-page: https://github.com/DanielRodriguez-SS/reqease.git
6
+ Author: Daniel Rodriguez
7
+ Author-email: danielrodriguezmarin@me.com
8
+ License: MIT
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.6
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+
16
+ # reqease
17
+ An easy, clean and light form of request
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ setup.py
6
+ reqease/__init__.py
7
+ reqease/module1.py
8
+ reqease.egg-info/PKG-INFO
9
+ reqease.egg-info/SOURCES.txt
10
+ reqease.egg-info/dependency_links.txt
11
+ reqease.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ reqease
reqease-0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
reqease-0.1/setup.py ADDED
@@ -0,0 +1,21 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='reqease',
5
+ version='0.1',
6
+ description='A short description of the package',
7
+ long_description=open('README.md').read(),
8
+ long_description_content_type='text/markdown',
9
+ url='https://github.com/DanielRodriguez-SS/reqease.git',
10
+ author='Daniel Rodriguez',
11
+ author_email='danielrodriguezmarin@me.com',
12
+ license='MIT',
13
+ packages=find_packages(), # Automatically finds subpackages
14
+ install_requires=[], # List of dependencies
15
+ classifiers=[ # Classifiers for PyPI
16
+ 'Programming Language :: Python :: 3',
17
+ 'License :: OSI Approved :: MIT License',
18
+ 'Operating System :: OS Independent',
19
+ ],
20
+ python_requires='>=3.6', # Minimum Python version
21
+ )