casemiro-simapi 0.1.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.
- casemiro_simapi-0.1.2/PKG-INFO +25 -0
- casemiro_simapi-0.1.2/README.md +17 -0
- casemiro_simapi-0.1.2/casemiro_simapi.egg-info/PKG-INFO +25 -0
- casemiro_simapi-0.1.2/casemiro_simapi.egg-info/SOURCES.txt +6 -0
- casemiro_simapi-0.1.2/casemiro_simapi.egg-info/dependency_links.txt +1 -0
- casemiro_simapi-0.1.2/casemiro_simapi.egg-info/top_level.txt +1 -0
- casemiro_simapi-0.1.2/pyproject.toml +13 -0
- casemiro_simapi-0.1.2/setup.cfg +4 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: casemiro-simapi
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Simple API key generator
|
|
5
|
+
Author: Luiz
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# SimAPIGenerator
|
|
10
|
+
|
|
11
|
+
Biblioteca para gerar API keys seguras.
|
|
12
|
+
|
|
13
|
+
## Uso
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from simapigenerator import sag
|
|
17
|
+
|
|
18
|
+
print(sag.APICreate("APP"))
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
# 🔨 5. Instalar ferramentas
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
pip install build twine
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: casemiro-simapi
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Simple API key generator
|
|
5
|
+
Author: Luiz
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# SimAPIGenerator
|
|
10
|
+
|
|
11
|
+
Biblioteca para gerar API keys seguras.
|
|
12
|
+
|
|
13
|
+
## Uso
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from simapigenerator import sag
|
|
17
|
+
|
|
18
|
+
print(sag.APICreate("APP"))
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
# 🔨 5. Instalar ferramentas
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
pip install build twine
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sample_data
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "casemiro-simapi"
|
|
3
|
+
version = "0.1.2"
|
|
4
|
+
description = "Simple API key generator"
|
|
5
|
+
authors = [{name="Luiz"}]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
requires-python = ">=3.8"
|
|
8
|
+
|
|
9
|
+
dependencies = []
|
|
10
|
+
|
|
11
|
+
[build-system]
|
|
12
|
+
requires = ["setuptools", "wheel"]
|
|
13
|
+
build-backend = "setuptools.build_meta"
|