ziya-module 0.1.0__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,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: ziya-module
3
+ Version: 0.1.0
4
+ Summary: Simple python module for ZiyaAghazada
5
+ Author: ZiyaAghazada
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,9 @@
1
+ from setuptools import setup, find_packages
2
+ setup(
3
+ name='ziya-module',
4
+ version='0.1.0',
5
+ packages=find_packages(),
6
+ install_requires=[],
7
+ author='ZiyaAghazada',
8
+ description='Simple python module for ZiyaAghazada',
9
+ )
@@ -0,0 +1,11 @@
1
+ def execute_time(func):
2
+ import time
3
+
4
+ def wrapper(*args, **kwargs):
5
+ start_time = time.time()
6
+ result = func(*args, **kwargs)
7
+ end_time = time.time()
8
+ print(f"Execution time: {end_time - start_time} seconds")
9
+ return result
10
+
11
+ return wrapper
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: ziya-module
3
+ Version: 0.1.0
4
+ Summary: Simple python module for ZiyaAghazada
5
+ Author: ZiyaAghazada
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ ziya-module/__init__.py
3
+ ziya_module.egg-info/PKG-INFO
4
+ ziya_module.egg-info/SOURCES.txt
5
+ ziya_module.egg-info/dependency_links.txt
6
+ ziya_module.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ ziya-module