sim-api-generator-casemiro 0.1.0__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,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: sim-api-generator-casemiro
3
+ Version: 0.1.0
4
+ Summary: Gerador de API Keys simuladas
5
+ Author: Luiz Gustavo
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
File without changes
@@ -0,0 +1 @@
1
+ from .generator import sag
@@ -0,0 +1,11 @@
1
+ import secrets
2
+ import string
3
+
4
+ class SimAPIGenerator:
5
+ def APICreate(self, prefixo):
6
+ caracteres = string.ascii_letters + string.digits
7
+ sufixo = ''.join(secrets.choice(caracteres) for _ in range(24))
8
+ return f"{prefixo}_{sufixo}"
9
+
10
+ # Instância padrão para uso direto
11
+ sag = SimAPIGenerator()
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="sim-api-generator-casemiro",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ description="Gerador de API Keys simuladas",
8
+ author="Luiz Gustavo",
9
+ python_requires=">=3.6",
10
+ )
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: sim-api-generator-casemiro
3
+ Version: 0.1.0
4
+ Summary: Gerador de API Keys simuladas
5
+ Author: Luiz Gustavo
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ sag/__init__.py
4
+ sag/generator.py
5
+ sim_api_generator_casemiro.egg-info/PKG-INFO
6
+ sim_api_generator_casemiro.egg-info/SOURCES.txt
7
+ sim_api_generator_casemiro.egg-info/dependency_links.txt
8
+ sim_api_generator_casemiro.egg-info/top_level.txt