I have a module I am working on that has multiple smaller packages and directories built into it. A part of the module includes a webscraper and I have a couple different text files to send information through multiple different processes. I have a package that scrapes the data, and dumps it into the pool, then it opens a .txt file and writes which pool it dumped the information into. Then a separate package opens up that file to determine which pool to clear out and put into a SQL database, storing the information. My module works completely fine when I run it inside the package, but when I try to import the module into other projects it raises a FileNotFoundError
FileNotFoundError: [Errno 2] No such file or directory: 'InRoute/limit.txt'
How can I make it so that the .txt files are recognized from outside the main package?