dk-sample 0.0.2__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.
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: dk-sample
3
+ Version: 0.0.2
4
+ Summary: My first package
5
+ Author: Dhruvin Kadivar
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: requests
9
+
10
+ # Sample Project
11
+
12
+ This is my first python package.
@@ -0,0 +1,6 @@
1
+ sample/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ sample/main.py,sha256=-ONn5oH8o8onJ9gl1zZcy9UKUFoktlo1wvUPqfuDzsU,284
3
+ dk_sample-0.0.2.dist-info/METADATA,sha256=GP5VQ4WezLiPJUHuN7FUOW2MP8E1aweGptELoOYOCrg,254
4
+ dk_sample-0.0.2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
5
+ dk_sample-0.0.2.dist-info/top_level.txt,sha256=qvn_SI4HZ9peodVhGOb2WhbFYzsM78H6CJvTqxgQYT0,7
6
+ dk_sample-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ sample
sample/__init__.py ADDED
File without changes
sample/main.py ADDED
@@ -0,0 +1,8 @@
1
+ import requests
2
+ def hello():
3
+ print("Hello from sample package")
4
+ print("Package from Dhruvin Kadivar")
5
+
6
+ r = requests.get('https://www.reddit.com/r/Jokes/comments/1rs62xf/a_stoned_hippie_tourist_flies_in_to_australia_for/')
7
+ print(r.status_code)
8
+ print(r.text)