Skip to content

Commit c194040

Browse files
committed
fix and versions
1 parent e79d58e commit c194040

11 files changed

+11
-64
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ _Transforme seus projetos em solucoes inteligentes com nossa API. Com recursos c
66

77
## Como instalar
88

9-
```pip install apigratis```
9+
```pip install apigratis-sdk-python```
1010
## Canais de suporte (Comunidade)
1111
[![WhatsApp Group](https://img.shields.io/badge/WhatsApp-Group-25D366?logo=whatsapp)](https://chat.whatsapp.com/KsxrUGIPWvUBYAjI1ogaGs)
1212
[![Telegram Group](https://img.shields.io/badge/Telegram-Group-32AFED?logo=telegram)](https://t.me/apigratisoficial)
@@ -16,7 +16,7 @@ https://apigratis.com.br
1616

1717
## Mais informacoes
1818

19-
https://pypi.org/project/apigratis
19+
https://pypi.org/project/apigratis-sdk-python
2020

2121
## Servicos de API disponiveis
2222

apigratis_sdk_python.egg-info/PKG-INFO

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: apigratis-sdk-python
3-
Version: 1.0.1
3+
Version: 1.0.2
44
Summary: Transforme seus projetos em soluções inteligentes com nossa API. Com recursos como API do WhatsApp, geolocalização, rastreamento de encomendas, verificação de CPF/CNPJ e mais, você pode criar soluções eficientes e funcionais
55
Home-page: https://github.com/APIBrasil/apigratis-sdk-python
66
Author: APIBRASIL
@@ -14,7 +14,7 @@ Description: # SDK Python - APIGratis by API BRASIL
1414

1515
## Como instalar
1616

17-
```pip install apigratis```
17+
```pip install apigratis-sdk-python```
1818
## Canais de suporte (Comunidade)
1919
[![WhatsApp Group](https://img.shields.io/badge/WhatsApp-Group-25D366?logo=whatsapp)](https://chat.whatsapp.com/KsxrUGIPWvUBYAjI1ogaGs)
2020
[![Telegram Group](https://img.shields.io/badge/Telegram-Group-32AFED?logo=telegram)](https://t.me/apigratisoficial)
@@ -24,7 +24,7 @@ Description: # SDK Python - APIGratis by API BRASIL
2424

2525
## Mais informacoes
2626

27-
https://pypi.org/project/apigratis
27+
https://pypi.org/project/apigratis-sdk-python
2828

2929
## Servicos de API disponiveis
3030

build/lib/apigratis/Service.py

-53
This file was deleted.

build/lib/apigratis/__init__.py

Whitespace-only changes.
-3.64 KB
Binary file not shown.
3.61 KB
Binary file not shown.
-4.84 KB
Binary file not shown.
4.02 KB
Binary file not shown.

examples/example.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from apigratis.Service import Service
66
import json
77

8-
def main():
8+
def sendText():
99

1010
json_data = {
1111
"action": "sendText",
@@ -22,9 +22,9 @@ def main():
2222
}
2323
}
2424

25-
teste = Service.whatsapp(json.dumps(json_data))
25+
sendText = Service.whatsapp(json.dumps(json_data))
2626

27-
print(teste)
27+
print(sendText)
2828

2929
if __name__ == "__main__":
30-
main()
30+
sendText()

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "apigratis-sdk-python"
77
description = "A ideia desse SDK é otimizar o tempo de código dos usuários auxiliando na integração com a plataforma"
8-
version = "1.0.1"
8+
version = "1.0.2"
99
authors = [
1010
{ name="APIBRASIL", email="[email protected]" },
1111
]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
readme = fh.read()
55

66
setup(name='apigratis-sdk-python',
7-
version='1.0.1',
7+
version='1.0.2',
88
url='https://github.com/APIBrasil/apigratis-sdk-python',
99
license='MIT License',
1010
author='APIBRASIL',

0 commit comments

Comments
 (0)