An open API service indexing awesome lists of open source software.

https://github.com/antoniomrtz/mongodb-python-dev-path

Notes on MongoDB Python developer path course
https://github.com/antoniomrtz/mongodb-python-dev-path

mongoatlas mongodb python

Last synced: 3 months ago
JSON representation

Notes on MongoDB Python developer path course

Awesome Lists containing this project

README

        

# MongoDB Python Developer Path

![logo](/docs/assets/logo.png)

## 👀 Description

This repository contains my notes of the [MongoDB Python Developer Path](https://learn.mongodb.com/learn/learning-path/mongodb-python-developer-path). This course aims to prepare students to obtain the [MongoDB Associate Developer Exam](https://learn.mongodb.com/pages/mongodb-associate-developer-exam).

This learning path contains a series of courses to teach MongoDB skills. In this path, you’ll learn the basics of building modern applications with Python, using MongoDB as your database.

## 📚 Docs

* [MKDocs with my certificate notes](https://antoniomrtz.github.io/mongodb-python-dev-path/)
* [Official MongoDB docs](https://www.mongodb.com/docs/manual/)

## 🛠️ Set up

```console
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

## 🛠️📚 Set up docs

```console
python -m venv venv
source venv/bin/activate
pip install -r requirements-docs.txt
mkdocs serve
```