PyKeyeasy 1.0.1__tar.gz → 1.0.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyKeyeasy
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Ultra-simple keyboard detection with automatic variables
5
5
  Home-page: https://github.com/emicics/PyKeys
6
6
  Author: Emiliano
@@ -4,7 +4,7 @@ Developed by: Emiliano
4
4
  Version: 1.0.0
5
5
  """
6
6
 
7
- from .core import PyKey
7
+ from .core import PyKey # El punto (.) significa "busca en esta misma carpeta"
8
8
 
9
9
  __docs__ = """
10
10
  PyKeys is a library designed to simplify keyboard detection using a background monitor.
@@ -0,0 +1,8 @@
1
+ from core import PyKey
2
+ import os
3
+
4
+ while True:
5
+ print(f"tecla: {PyKey.key}")
6
+ print(f"Hotkey: {PyKey.hotkey}")
7
+ print(f"Efes: {PyKey.F}")
8
+ os.system('cls')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyKeyeasy
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Ultra-simple keyboard detection with automatic variables
5
5
  Home-page: https://github.com/emicics/PyKeys
6
6
  Author: Emiliano
@@ -1,8 +1,9 @@
1
1
  LICENSE
2
2
  README.md
3
3
  setup.py
4
- PyKey/__init__.py
5
- PyKey/core.py
4
+ PyKeyeasy/__init__.py
5
+ PyKeyeasy/core.py
6
+ PyKeyeasy/prubea.py
6
7
  PyKeyeasy.egg-info/PKG-INFO
7
8
  PyKeyeasy.egg-info/SOURCES.txt
8
9
  PyKeyeasy.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ PyKeyeasy
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="PyKeyeasy", # You can use a unique name here
5
- version="1.0.1",
5
+ version="1.0.2",
6
6
  author="Emiliano",
7
7
  description="Ultra-simple keyboard detection with automatic variables",
8
8
  long_description=open("README.md").read(),
@@ -1 +0,0 @@
1
- PyKey
File without changes
File without changes
File without changes