Python relative imports in AWS Lambda fail with attempted relative import with no known parent package
In AWS Lambda if I attempt an explicit relative import like this
.
├── lambda_file.py
└── example.py
| #!/bin/bash | |
| defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool yes | |
| echo "Successfully patched!" | |
| echo "Now restart MySQL Workbench to see the Workbench in light theme." | |
| #Restart MySQL Workbench after executing this. | 
| // Logiops (Linux driver) configuration for Logitech MX Master 3. | |
| // Includes gestures, smartshift, DPI. | |
| // Tested on logid v0.2.2-35-g1c209ed. | |
| // File location: /etc/logid.cfg | |
| devices: ({ | |
| name: "Wireless Mouse MX Master 3"; | |
| smartshift: { | 
NOTICE: This guide will help you set ssh keys for GitHub and GitLab. However, this is not going to change your commit
user.nameoruser.email. If you need to change those for specific repositories, just run the following commands while in your repository:
git config user.name "Your Name Here"
git config user.email [email protected]For more info, see this answer. Also, keep in mind this only changes the
.gitfolder inside your repository which never gets added/committed/pushed/uploaded.
I recently had to manage two ssh keys (one for Github and one for Gitlab). I did some research to find the best solution. I am justing putting the pieces together here.