pyfastfile 0.0.0__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.
pyfastfile/__init__.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from importlib.metadata import version
|
|
2
|
+
|
|
3
|
+
try:
|
|
4
|
+
__version__ = version("pyfastfile")
|
|
5
|
+
except Exception:
|
|
6
|
+
__version__ = "0.0.0"
|
|
7
|
+
|
|
8
|
+
def signature(show=False):
|
|
9
|
+
data = (
|
|
10
|
+
f"pyfastfile v{__version__}\n"
|
|
11
|
+
"Experimental Toolkit\n"
|
|
12
|
+
"Author: Batuhan Şenol"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
if show:
|
|
16
|
+
print(data)
|
|
17
|
+
|
|
18
|
+
return data
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"signature"
|
|
22
|
+
]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyfastfile
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: A lightweight and fast Python API for simplifying file operations
|
|
5
|
+
Author: Batuhan Senol
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Keywords: file,io,filesystem,utility,fastfile
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Topic :: System :: Filesystems
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
A small repository aimed at speeding up file operations.
|
|
18
|
+
|
|
19
|
+
Under development…
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
pyfastfile/__init__.py,sha256=ahWOVQOOjUCqXJg613pwORTeXsUYkGDZ7f2BOU_fMi0,362
|
|
2
|
+
pyfastfile-0.0.0.dist-info/METADATA,sha256=AiCchK6-UL3ErK_2yDgRd9XUwDuW4MoDhHHb8NvQi2g,650
|
|
3
|
+
pyfastfile-0.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
4
|
+
pyfastfile-0.0.0.dist-info/top_level.txt,sha256=P_m9F8KShijrzQemuytt03Pf0xf6IAJBa2TqfPdx6w0,11
|
|
5
|
+
pyfastfile-0.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyfastfile
|