Skip to content

Commit 58d21bb

Browse files
authored
Update README.md
1 parent 239028b commit 58d21bb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

offline_logging/README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,25 @@ The project consists of a Python 3 script that interacts with a MongoDB database
1414
To use this project, you will need the following:
1515
* A Meraki organization with API access enabled and a Dashboard API key: https://documentation.meraki.com/General_Administration/Other_Topics/Cisco_Meraki_Dashboard_API
1616
* Python 3: https://www.python.org/downloads/
17-
* The Python 3 Requests module: https://requests.readthedocs.io
17+
* The Requests module for Python 3: https://requests.readthedocs.io
18+
* The PyYAML module for Python 3: https://pyyaml.org/
19+
* The PyMongo module for Python 3: https://pymongo.readthedocs.io
1820
* MongoDB. You can get the Community Server edition for free here: https://www.mongodb.com/try/download/community
1921
* A tool to view your database. You can install MongoDB Compass along with the MongoDB Community Server
2022

2123
# Installation and startup
2224
* Install Python 3. If installing on Windows, it is recommended to select the "Add to PATH" option during installation
23-
* Install the Python 3 Requests module. The easiest way to do this is to run:
25+
* Install the required third party Python 3 modules. The easiest way to do this is to run:
2426
```
2527
Windows:
2628
pip install requests
29+
pip install pyyaml
30+
pip install pymongo
2731
2832
Linux/Mac:
2933
pip3 install requests
34+
pip3 install pyyaml
35+
pip3 install pymongo
3036
```
3137
* Install MongoDB and MongoDB Compass
3238
* Copy **offline_logging.py** and **config.yaml** into a folder on your server

0 commit comments

Comments
 (0)