dk-sample 0.0.2__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,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,3 @@
1
+ # Sample Project
2
+
3
+ This is my first python package.
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dk-sample"
7
+ version = "0.0.2"
8
+ description = "My first package"
9
+ authors = [
10
+ {name = "Dhruvin Kadivar"}
11
+ ]
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ dependencies = [
15
+ "requests",
16
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/dk_sample.egg-info/PKG-INFO
4
+ src/dk_sample.egg-info/SOURCES.txt
5
+ src/dk_sample.egg-info/dependency_links.txt
6
+ src/dk_sample.egg-info/requires.txt
7
+ src/dk_sample.egg-info/top_level.txt
8
+ src/sample/__init__.py
9
+ src/sample/main.py
@@ -0,0 +1 @@
1
+ requests
@@ -0,0 +1 @@
1
+ sample
File without changes
@@ -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)