pythonimportmodulebanking

Importing module from Python non standard library


I am a beginner here. I am trying to use a bank simulator module in Python, whose name is banksim, but I do not get to do so. If I write the code import banksim, an error is returned. Furthermore, there is no pip install mentioned by the developer of the aforementioned module. Could anyone please help me to solve this issue? Thanks indeed!

The module is in: https://github.com/banking-project/banksim

How can I use it?


Solution

  • You can just clone the repository or download it as a zip and extract it. Just copy the banksim folder into the root folder of your project you want to use the module in and import it from there.

    Also run pip install -r requirements.txt for the requirements.txt in the repository.