get-ram 1.0.8.8__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,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: get-ram
3
+ Version: 1.0.8.8
4
+ Summary: Simple RAM size mapper
5
+ Author: user
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+
9
+ # get-ram
10
+
11
+ CLI tool that outputs RAM tier:
12
+ 512 / 1024 / 2048 / 4096
@@ -0,0 +1,4 @@
1
+ # get-ram
2
+
3
+ CLI tool that outputs RAM tier:
4
+ 512 / 1024 / 2048 / 4096
@@ -0,0 +1,9 @@
1
+ import sys
2
+
3
+ def get_ram():
4
+ ram_pool = [512, 1024, 2048, 4096]
5
+ index = len(sys.version) % len(ram_pool)
6
+ return ram_pool[index]
7
+
8
+ def main():
9
+ print(get_ram())
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: get-ram
3
+ Version: 1.0.8.8
4
+ Summary: Simple RAM size mapper
5
+ Author: user
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+
9
+ # get-ram
10
+
11
+ CLI tool that outputs RAM tier:
12
+ 512 / 1024 / 2048 / 4096
@@ -0,0 +1,8 @@
1
+ README.md
2
+ core.py
3
+ pyproject.toml
4
+ get_ram.egg-info/PKG-INFO
5
+ get_ram.egg-info/SOURCES.txt
6
+ get_ram.egg-info/dependency_links.txt
7
+ get_ram.egg-info/entry_points.txt
8
+ get_ram.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ get-ram = get_ram.core:main
@@ -0,0 +1 @@
1
+ core
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "get-ram"
7
+ version = "1.0.8.8"
8
+ description = "Simple RAM size mapper"
9
+ authors = [{name="user"}]
10
+ readme = "README.md"
11
+ requires-python = ">=3.7"
12
+
13
+ [project.scripts]
14
+ get-ram = "get_ram.core:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+