├── .gitignore ├── AllWhatsPy ├── __init__.py ├── audio_awp.py ├── business_awp.py ├── contatos_awp.py ├── criptografia_awp.py ├── decorators_awp.py ├── errors_awp.py ├── main.py ├── mensagem_awp.py └── utilidades_awp.py ├── LICENSE ├── README.md ├── SECURITY.md ├── exemplo ├── exemplo.py ├── exemplo2.py ├── exemplo3.py └── exemplo4.py ├── exemplo_usual.py ├── setup.py └── utilidades ├── AWPgifprocreate.gif ├── README.md ├── awpimgg.png ├── old versionAWP ├── README.md └── oldVersion.py ├── thumbnails └── 1.png └── videoicon.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/.gitignore -------------------------------------------------------------------------------- /AllWhatsPy/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import AllWhatsPy, PseudoAWP -------------------------------------------------------------------------------- /AllWhatsPy/audio_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/audio_awp.py -------------------------------------------------------------------------------- /AllWhatsPy/business_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/business_awp.py -------------------------------------------------------------------------------- /AllWhatsPy/contatos_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/contatos_awp.py -------------------------------------------------------------------------------- /AllWhatsPy/criptografia_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/criptografia_awp.py -------------------------------------------------------------------------------- /AllWhatsPy/decorators_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/decorators_awp.py -------------------------------------------------------------------------------- /AllWhatsPy/errors_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/errors_awp.py -------------------------------------------------------------------------------- /AllWhatsPy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/main.py -------------------------------------------------------------------------------- /AllWhatsPy/mensagem_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/mensagem_awp.py -------------------------------------------------------------------------------- /AllWhatsPy/utilidades_awp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/AllWhatsPy/utilidades_awp.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /exemplo/exemplo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/exemplo/exemplo.py -------------------------------------------------------------------------------- /exemplo/exemplo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/exemplo/exemplo2.py -------------------------------------------------------------------------------- /exemplo/exemplo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/exemplo/exemplo3.py -------------------------------------------------------------------------------- /exemplo/exemplo4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/exemplo/exemplo4.py -------------------------------------------------------------------------------- /exemplo_usual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/exemplo_usual.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/setup.py -------------------------------------------------------------------------------- /utilidades/AWPgifprocreate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/utilidades/AWPgifprocreate.gif -------------------------------------------------------------------------------- /utilidades/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/utilidades/README.md -------------------------------------------------------------------------------- /utilidades/awpimgg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/utilidades/awpimgg.png -------------------------------------------------------------------------------- /utilidades/old versionAWP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/utilidades/old versionAWP/README.md -------------------------------------------------------------------------------- /utilidades/old versionAWP/oldVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/utilidades/old versionAWP/oldVersion.py -------------------------------------------------------------------------------- /utilidades/thumbnails/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/utilidades/thumbnails/1.png -------------------------------------------------------------------------------- /utilidades/videoicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevLucasLourenco/AllWhatsPy/HEAD/utilidades/videoicon.gif --------------------------------------------------------------------------------