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
- Host: GitHub
- URL: https://github.com/antoniomrtz/mongodb-python-dev-path
- Owner: AntonioMrtz
- Created: 2024-12-23T17:18:08.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-18T12:10:31.000Z (4 months ago)
- Last Synced: 2025-01-18T13:23:46.772Z (4 months ago)
- Topics: mongoatlas, mongodb, python
- Language: Python
- Homepage: https://antoniomrtz.github.io/mongodb-python-dev-path/
- Size: 815 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MongoDB Python Developer Path

## 👀 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
```