Python Frameworks

How to Connect a Django App to MongoDB with PyMongo — step-by-step Databases tutorial on Progressive Robot

How to Connect a Django App to MongoDB with PyMongo

PyMongo is the official driver for connecting Django apps to a MongoDB database. In this tutorial, you will create a Managed MongoDB database cluster and use PyMongo to connect it with your Django application. You’ll then use PyMongo to store data in your MongoDB instance and retrieve the data.

Read more
Как «обмануть» нейронную сеть в Python 3 — step-by-step AI And Machine Learning tutorial on Progressive Robot

Как «обмануть» нейронную сеть в Python 3

Автор выбрал Dev Color​​​ для получения пожертвования в рамках программы Write for DOnations. Можно ли обмануть нейронную сеть для классификации животных? Попытка обмануть классификатор животных может не иметь…

Read more
How To Use an SQLite Database in a Flask Application — step-by-step Databases tutorial on Progressive Robot

How To Use an SQLite Database in a Flask Application

In web applications, you usually need a database, which is an organized collection of data. SQLite is a simple and fast open source SQL engine that can be used with Python to store and manipulate application data. SQLite works well with Python because the Python standard library provides the sqlite3 module, which you can use to interact with any SQLite database. In this tutorial, you’ll build a small web application that demonstrates how to use SQLite with Flask.

Read more
CHAT