byteify 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.
byteify-1/PKG-INFO ADDED
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: byteify
3
+ Version: 1
4
+ Summary: Turns files into bytes, useful for specific uses
5
+ Author: bagoflays
6
+ Description-Content-Type: text/markdown
7
+
8
+ # Byteify
9
+ turns files into bytes
10
+ Example code
11
+ ```python
12
+ import byteify
13
+ print(byteify("filename"))
14
+ ```
15
+ To install,
16
+ ```bash
17
+ pip install byteify
18
+ ```
byteify-1/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Byteify
2
+ turns files into bytes
3
+ Example code
4
+ ```python
5
+ import byteify
6
+ print(byteify("filename"))
7
+ ```
8
+ To install,
9
+ ```bash
10
+ pip install byteify
11
+ ```
@@ -0,0 +1,2 @@
1
+ def byteify_file(filename):
2
+ return open(filename, "rb")
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: byteify
3
+ Version: 1
4
+ Summary: Turns files into bytes, useful for specific uses
5
+ Author: bagoflays
6
+ Description-Content-Type: text/markdown
7
+
8
+ # Byteify
9
+ turns files into bytes
10
+ Example code
11
+ ```python
12
+ import byteify
13
+ print(byteify("filename"))
14
+ ```
15
+ To install,
16
+ ```bash
17
+ pip install byteify
18
+ ```
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ byteify/__init__.py
4
+ byteify.egg-info/PKG-INFO
5
+ byteify.egg-info/SOURCES.txt
6
+ byteify.egg-info/dependency_links.txt
7
+ byteify.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ byteify
byteify-1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
byteify-1/setup.py ADDED
@@ -0,0 +1,9 @@
1
+ from setuptools import setup, find_packages
2
+ setup(name="byteify",
3
+ version=1,
4
+ packages=find_packages(),
5
+ author="bagoflays",
6
+ description="Turns files into bytes, useful for specific uses",
7
+ long_description=open("README.md", "r", encoding="utf-8").read(),
8
+ long_description_content_type="text/markdown"
9
+ )