filereaderpy 0.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.
- filereaderpy-0.0.1/PKG-INFO +10 -0
- filereaderpy-0.0.1/README.md +2 -0
- filereaderpy-0.0.1/filereaderpy/__init__.py +1 -0
- filereaderpy-0.0.1/filereaderpy/main.py +16 -0
- filereaderpy-0.0.1/filereaderpy.egg-info/PKG-INFO +10 -0
- filereaderpy-0.0.1/filereaderpy.egg-info/SOURCES.txt +8 -0
- filereaderpy-0.0.1/filereaderpy.egg-info/dependency_links.txt +1 -0
- filereaderpy-0.0.1/filereaderpy.egg-info/top_level.txt +1 -0
- filereaderpy-0.0.1/pyproject.toml +13 -0
- filereaderpy-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import write, read
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
print("You can get help by visiting filereaderpy.great-site.net")
|
|
2
|
+
|
|
3
|
+
global path
|
|
4
|
+
path = ""
|
|
5
|
+
|
|
6
|
+
global text
|
|
7
|
+
text = ""
|
|
8
|
+
|
|
9
|
+
def read():
|
|
10
|
+
print("Reading")
|
|
11
|
+
with open(path, "r") as fr:
|
|
12
|
+
fr.read(path)
|
|
13
|
+
|
|
14
|
+
def write():
|
|
15
|
+
with open(path, "w") as fw:
|
|
16
|
+
fw.write(text)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
filereaderpy
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "filereaderpy"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "File Reader/Writer"
|
|
5
|
+
authors = [
|
|
6
|
+
{ name="hanifikorkmaz", email="hanifikorkmaz184@gmail.com" }
|
|
7
|
+
]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.13"
|
|
10
|
+
|
|
11
|
+
[build-system]
|
|
12
|
+
requires = ["setuptools", "wheel"]
|
|
13
|
+
build-backend = "setuptools.build_meta"
|