I hope this document can assist newcomers in quickly configuring a development environment and help experienced developers improve their work efficiency.

Initial Preparation

  1. Install the Visual Studio Code (VSCode) editor.
    You can download it here: https://code.visualstudio.com/Download

    • Run VSCode and click on the “Extensions” in the sidebar (shortcut Ctrl + Shift + X).
    • You can search and install the language pack you need (e.g. Chinese/Russian).
    • Then, install the Python and Pylance extensions.
  2. Install Python (version >= 3.8).
    You can download it here: https://www.python.org/downloads/windows/

    • After installation, open a command prompt (press Win + R, then run cmd).
    • Install the Bladex package using the following command:
      pip install Bladex
      pip is a Python package management tool, built into Python 3.4 and later versions.

After completing these steps, you’ll soon be able to enjoy Bladex’s code autocompletion and type hints 🎉

🚀 Getting Started

Read more »