No project description provided
Project description
1. Instructions:
- Installation (the syntax does not use the latest
Python
version, so it should be compatible with mostPython3
versions above)
- Currently released to PyPI, install directly using
pip install auto_syspath3
git clone https://github.com/Alan3344/auto_syspath3.git
cd auto_syspath3
Python setup.py install
Or
pip install git+https://github.com/Alan3344/auto_syspath3.git
- Use
No need to add these two lines at the beginning of each document, because this will attract the annoying Flake8
squiggly line 〰️ prompt Flake8(E402)
- People with OCD say they are less willing to accept
import sys
sys.path.extend(['./', '../'])
from utils import login
from config import env
Now you only need to add this line directly in front of the custom package. If you don’t like the Flake8
prompt unused, you can add # noqa
after it
Just reference it in front of the custom module
- According to the characteristics of
Python
imported modules, this__init__.py
file will be executed automatically, so there is no need to writeadd_path()
function
import os
import auto_syspath3 # noqa
from utils import quit
from config import env
2. Refused Flake8
prompt detection: module level import not at top of file Flake8(E402)
- Reason: In order to make this file run independently, put
import
into the function
3. Reasons for writing this module:
I use VSCode
to write Python
code, but VSCode
import is correctly prompted, but Flake8
prompts an error
Maybe using PyCharm
will not have this problem, but he needs to be set to source root
, I don't like this
- The original appearance of this function has to be copied every time it is referenced
- Secondly, this file is mainly placed in the
site-packages
directory. After packaging and sending it to others for use, this file will be missing - I found a similar package on
pypi
, but it failed to meet my expectations, so I wrote one myself - The important thing is that after using this package, the customized package can be used in any terminal, no need to set
source root
def add_path(path=__file__, deep=0):
"""Add a path to the sys.path if it is not already there."""
paths = []
path = os.path.abspath(path)
dirname = os.path.dirname(path)
for i in range(deep):
dirname = os.path.dirname(dirname)
d(f'dirname: {dirname}')
for p in os.walk(dirname):
p0 = p[0].replace(dirname, '')
if p0.startswith('/.') or '__pycache__' in p0:
continue
elif not p[0] in sys.path:
paths.append(p[0])
sys.path.insert(0, p[0])
d(f'add path: {p[0]}')
return paths
Screenshot during use
-
Solve the error when the subpackage
py
file imports the top-level module method:ModuleNotFoundError: No module named 'package name'
-
Normally, our
pwd
paths are all in the top-level directory. At this time, we can directly run themain.py
file. Of course, there is no problem if I runpython test_project/main.py
directly.
-
If your project structure is like this, the
main.py
file is the entry file,child_package
is the custom package, andchild_package/child_package
is the subpackage of the custom package, they all have specificpy
file -
Run directly in the entry file in the
main.py
file like this -
This is how it works in the
child_package/call_user.py
file. The first time the error is reported because the lineimport auto_syspath3 # noqa F401
has been commented out -
This is how it works in the
child_package/child_package/call_user.py
file. The first time the error is reported because the lineimport auto_syspath3 # noqa F401
is commented out
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file auto_syspath3-1.0.1.tar.gz
.
File metadata
- Download URL: auto_syspath3-1.0.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fae50cb8d19b797448253ae6429afc8af07dc4fc9fe2fcebc8de945a9b88407 |
|
MD5 | f69d7bf217924c6e2f09e6e8b98e9ce7 |
|
BLAKE2b-256 | 2a178879a9592160b0f983ea4c5849ea42d5465b2b4d4ab33b6f1081b40e7bc4 |
Provenance
File details
Details for the file auto_syspath3-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: auto_syspath3-1.0.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d3dd7469b24c0088968a6b3b55348b95a401e53f6537eeae4389446bcd2abfd |
|
MD5 | 56b32c314487073112b7d0463c2b7a01 |
|
BLAKE2b-256 | 2e1ef5c6ddfea645e963c5cdef2733c1bd376c6bdfea260e4ace57eaee3cb709 |