fileretor 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.
fileretor-0.1/PKG-INFO ADDED
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: fileretor
3
+ Version: 0.1
@@ -0,0 +1,15 @@
1
+ this package "filereter" contains a function which is -
2
+ run():-
3
+ Defenition :-this function can take a variable in which a code is input and get the output and store it in a variable.
4
+ Paranthesis :- at first the code(or the variable)and after comma the extention in string.
5
+ IMPORTANT NOTE:-The code in a lanaguage can be only run when it is present in the computer
6
+ how to install the code-
7
+ " pip install filereter" in your terminal then write -
8
+ "import filereter" or "from filereter import run"
9
+ how to use -
10
+ input:-
11
+ a ="a = print('filereter')"
12
+ l = run(a,"py")
13
+ print (l)
14
+ output:-
15
+ filereter
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: fileretor
3
+ Version: 0.1
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ fileretor.egg-info/PKG-INFO
4
+ fileretor.egg-info/SOURCES.txt
5
+ fileretor.egg-info/dependency_links.txt
6
+ fileretor.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
fileretor-0.1/setup.py ADDED
@@ -0,0 +1,2 @@
1
+ from setuptools import setup,find_packages
2
+ setup(name='fileretor',version='0.1',packages=find_packages(),install_requires=[])