Create a Node.js project
npm init -y
to create a Node.js project.Install the SDK
Enable ES Modules
package.json
file, add "type": "module"
to enable ES Modules.Create a JavaScript file
.js
file.Write your code
Execute your code
node file_name.js
to execute.Setup Virtual Environment
Install the SDK
Setup Requirements.txt
python-dotenv==1.1.0
to this file to enable environment variables. Install with pip install -r requirements.txt
.Create a Python file
.py
file.Write your code
Execute your code
python file_name.py
to execute.