How to use this week template
- open the week folder in the IntelliJ IDEA utimate IDE
- click on the
week(project root) of the opened project - click on Menu->File->Project Structure
- Unter section
Project Settings-> Project -> Project SDK -> choose Python(above 3.5) - (Optional) If the Python SDK is not specified, use section “Platform Settings” -> SDKs to specify the local Python SDK and added it to your Project SDK then.
Packages needed for python3
- PyMongo
- Pandas
Name Conventions for Python3
- package/module name: Modules should have short, all-lowercase names.
- Class name: Class names should normally use the CapWords convention.
Rerence: PEP 8 – Style Guide for Python Code
Using static methods in Python3
- A very good reference of using static, class methods in Python3
PyMongo Reference
Interactive Code Running in IntelliJ
- Menu -> Tools -> Python Console…
- Select the section of code that shall be run in the Python Console and press
shift + alt + E - Show the variables in the Python Console while press the sixth button from the toolbar positioned on the left side of the Python Console Note: debugging will achieve the same effect