Como Instalar, Executar, e Conectar no Jupyter Notebook em um Servidor Remoto
O autor selecionou a Fundação do Software Apache para receber uma doação de $100 como parte do programa Write for DOnations. [O Jupyter…
O autor selecionou a Fundação do Software Apache para receber uma doação de $100 como parte do programa Write for DOnations. [O Jupyter…
Anaconda est un gestionnaire de paquets open-source, un gestionnaire d’environnement et une distribution des langages de programmation Python et R. Il est couramment utilisé pour la science des données, l’apprentissage machine, le traitement des données à grande échelle, le…
Introduction Django is a full-featured Python web framework for developing dynamic websites and applications. Using Django, you can quickly create Python web applications and rely on the framework to do a good deal of the heavy lifting. In this guide, you will get Django up and running on an Ubuntu 22.04 server. After installation, you […]
Learn how to efficiently improve your Flask application performance to improve scalability and responsiveness, ensuring it runs efficiently even under heavy load.
Django is a powerful web framework that can help you get your Python application or website off the ground quickly. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web…
Neste guia, você construirá um aplicativo Python usando o microframework Flask no Ubuntu 20.04. A maior parte deste artigo será sobre como configurar o servidor do aplicativo Gunicorn, como iniciar o aplicativo e configurar o…
In this guide, you will set up an ASGI (Asynchronous Server Gateway Interface) Django app on Ubuntu 20.04. You’ll set up a PostgreSQL database, configure a Gunicorn application server paired with Uvicorn (an ASGI implementation), and then set up Nginx as a reverse proxy to Gunicorn, giving you access to its security and performance features to serve your apps.
O autor escolheu o Internet Archive para receber uma doação como parte do programa Write for DOnations. O desenvolvimento de aplicações web pode se tornar complexo e demorado ao criar e…
In this guide, we will be setting up a simple WSGI application served by uWSGI. We will use the Nginx web server as a reverse proxy to the application server to provide more robust connection handling. We will be installing and configuring these components on a CentOS 7…
WTForms is a Python library that provides flexible web form rendering. You can use it to render text fields, text areas, password fields, radio buttons, and others. WTForms also uses a CSRF token to provide protection from CSRF attacks. In this tutorial, you’ll build a small web application that demonstrates how to render and validate web forms using Flask-WTF.