You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to set up ArchiSteamFarm on SynologyNAS via Docker and Portainer
Installing ArchiSteamFarm on SynologyNAS: A Comprehensive Guide
This guide will walk you through installing ArchiSteamFarm on your Synology NAS. While tailored for Synology users, the general steps are adaptable to other NAS platforms.
Before We Begin:
Set Up Custom DDNS: Go to this guide, follow the instructions, and return here.
Set Up Wildcard Certificate: Follow this guide until Step 7, then return here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Import Python Files From Another Directory Python 3
Import Python Files From Another Directory
I've come across various ways to include files from other directories in python. At this time, none of my python projects have ever scaled enough to warrant a nice directory structure but I find this information useful to know.
Module Search
The Python Docs 6.1.4 explain nicely what happens when you try to import a module.
When a module named spam is imported, the interpreter first searches for a built-in module with that name. If not found, it then searches for a file named spam.py in a list of directories given by the variable sys.path. sys.path is initialized from these locations:
- The directory containing the input script (or the current directory when no file is specified).
- PYTHONPATH (a list of directory names, with the same syntax as the shell variable PATH).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters