Mudanças entre as edições de "Python"

De BrapciWiki
Ir para navegação Ir para pesquisar
 
(13 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
 
= Python =
 
= Python =
 +
= Criando um ambiente =
 +
mkdir web-crawler
 +
cd web-crawler
 +
python -m venv env
 
== Bibliotecas ==
 
== Bibliotecas ==
* [[Python:Manipulando Arquivos]]
+
* [[Python:Definindo definições do sistema]]
 +
* [[pPython:Manipulando Strings]]
 +
* [[pPython:Manipulando NLP]]
 +
* [[Python:CSV]]
 +
* [[Python:Manipulando Arquivos]] e XML
 
* [[Python:Extraindo informações URL]]
 
* [[Python:Extraindo informações URL]]
 +
* [[Python:Request]] (Web Scraping)
 +
* [[Python:ZIP File]]
 +
* [[Python:ElasticSearch]]
 
* [[Python:PySimpGUI]]
 
* [[Python:PySimpGUI]]
 +
* [[Python:BeautifulSoup]]
 +
* [[Python:Voz]]
 +
* [[Python:Docx]]
 +
 +
==Servidor API==
 +
* [[Python:Gunicorn]]
  
 
== Install PIP===
 
== Install PIP===

Edição atual tal como às 18h57min de 18 de fevereiro de 2025

Python

Criando um ambiente

mkdir web-crawler
cd web-crawler
python -m venv env

Bibliotecas

Servidor API

Install PIP=

Baixando o arquivo

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Instalando o Python/PIP

python get-pip.py --no-warn-script-location

Configurar no ambiente do windows Para testar a versão

pip3 -V