OXIESEC PANEL
- Current Dir:
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
isort
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:34:06 AM
rwxr-xr-x
📄
__init__.py
871 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
__main__.py
36 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📁
__pycache__
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📁
_vendored
-
12/18/2024 10:23:16 AM
rwxr-xr-x
📄
_version.py
72 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
api.py
25.51 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
comments.py
933 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
core.py
22 KB
12/18/2024 10:23:16 AM
rw-r--r--
📁
deprecated
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📄
exceptions.py
6.89 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
files.py
1.55 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
format.py
5.35 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
hooks.py
3.26 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
identify.py
8.18 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
io.py
2.16 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
literal.py
3.63 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
logo.py
388 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
main.py
45.73 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
output.py
27.15 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
parse.py
24.74 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
place.py
5.05 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
profiles.py
2.09 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
py.typed
0 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
pylama_isort.py
1.28 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
sections.py
297 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
settings.py
34.75 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
setuptools_commands.py
2.24 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
sorting.py
4.41 KB
12/18/2024 10:23:16 AM
rw-r--r--
📁
stdlibs
-
02/07/2025 10:01:30 PM
rwxr-xr-x
📄
utils.py
2.36 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
wrap.py
6.17 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
wrap_modes.py
13.25 KB
12/18/2024 10:23:16 AM
rw-r--r--
Editing: profiles.py
Close
"""Common profiles are defined here to be easily used within a project using --profile {name}""" from typing import Any, Dict black = { "multi_line_output": 3, "include_trailing_comma": True, "force_grid_wrap": 0, "use_parentheses": True, "ensure_newline_before_comments": True, "line_length": 88, } django = { "combine_as_imports": True, "include_trailing_comma": True, "multi_line_output": 5, "line_length": 79, } pycharm = { "multi_line_output": 3, "force_grid_wrap": 2, "lines_after_imports": 2, } google = { "force_single_line": True, "force_sort_within_sections": True, "lexicographical": True, "single_line_exclusions": ("typing",), "order_by_type": False, "group_by_package": True, } open_stack = { "force_single_line": True, "force_sort_within_sections": True, "lexicographical": True, } plone = black.copy() plone.update( { "force_alphabetical_sort": True, "force_single_line": True, "lines_after_imports": 2, } ) attrs = { "atomic": True, "force_grid_wrap": 0, "include_trailing_comma": True, "lines_after_imports": 2, "lines_between_types": 1, "multi_line_output": 3, "use_parentheses": True, } hug = { "multi_line_output": 3, "include_trailing_comma": True, "force_grid_wrap": 0, "use_parentheses": True, "line_length": 100, } wemake = { "multi_line_output": 3, "include_trailing_comma": True, "use_parentheses": True, "line_length": 80, } appnexus = { **black, "force_sort_within_sections": True, "order_by_type": False, "case_sensitive": False, "reverse_relative": True, "sort_relative_in_force_sorted_sections": True, "sections": ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "APPLICATION", "LOCALFOLDER"], "no_lines_before": "LOCALFOLDER", } profiles: Dict[str, Dict[str, Any]] = { "black": black, "django": django, "pycharm": pycharm, "google": google, "open_stack": open_stack, "plone": plone, "attrs": attrs, "hug": hug, "wemake": wemake, "appnexus": appnexus, }