DevGlitch / botwizer

Social media AI bot using computer vision to imitate human behaviors. Final project for Harvard Advance Python CSCI E-29 Fall 2020. Received Gold Student Choice Award.
MIT License
9 stars 2 forks source link

ModuleNotFoundError: No module named 'csci_utils' #2

Closed jbosolutions closed 1 month ago

jbosolutions commented 1 month ago

ModuleNotFoundError: No module named 'csci_utils'

DevGlitch commented 1 month ago

Hi @jbosolutions,

Thanks for reaching out! I no longer maintain this repository, but I can provide some guidance. The error you're seeing (ModuleNotFoundError: No module named 'csci_utils') is because the project relies on the csci_utils package, specifically calling the atomic writer functionality from it.

This is a relatively straightforward function that you can find in one of my other repos:
csci_utils Atomic Writer

You can either install the csci_utils package from the source or directly copy the relevant code into your project. The core part of the file is an atomic writer using SuffixWriter, which handles file writing in a way that ensures safety during the write process.

Best of luck!