supplier-meesho.webflow 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of supplier-meesho.webflow might be problematic. Click here for more details.
- package/.localized +0 -0
- package/2.sh +1 -0
- package/Complaince.pdf +0 -0
- package/GitRepos/CircleIndicator/.idea/caches/build_file_checksums.ser +0 -0
- package/GitRepos/CircleIndicator/.idea/caches/gradle_models.ser +0 -0
- package/GitRepos/CircleIndicator/.idea/checkstyle-idea.xml +16 -0
- package/GitRepos/CircleIndicator/.idea/compiler.xml +21 -0
- package/GitRepos/CircleIndicator/.idea/copyright/profiles_settings.xml +3 -0
- package/GitRepos/CircleIndicator/.idea/encodings.xml +6 -0
- package/GitRepos/CircleIndicator/.idea/gradle.xml +23 -0
- package/GitRepos/CircleIndicator/.idea/misc.xml +93 -0
- package/GitRepos/CircleIndicator/.idea/modules.xml +11 -0
- package/GitRepos/CircleIndicator/.idea/runConfigurations.xml +12 -0
- package/GitRepos/CircleIndicator/.idea/vcs.xml +6 -0
- package/GitRepos/CircleIndicator/CHANGELOG.md +62 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/README.md +4 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/build.gradle +22 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/proguard-rules.pro +17 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/src/main/AndroidManifest.xml +5 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/src/main/java/com/imbryk/viewPager/LoopPagerAdapterWrapper.java +168 -0
- package/GitRepos/CircleIndicator/LoopingViewPager/src/main/java/com/imbryk/viewPager/LoopViewPager.java +208 -0
- package/GitRepos/CircleIndicator/README.md +73 -0
- package/GitRepos/CircleIndicator/apk/sample.apk +0 -0
- package/GitRepos/CircleIndicator/build.gradle +20 -0
- package/GitRepos/CircleIndicator/circleindicator/build.gradle +30 -0
- package/GitRepos/CircleIndicator/circleindicator/gradle.properties +22 -0
- package/GitRepos/CircleIndicator/circleindicator/proguard-rules.pro +17 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/AndroidManifest.xml +5 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/java/me/relex/circleindicator/CircleIndicator.java +323 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/java/me/relex/circleindicator/SnackbarBehavior.java +45 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/res/animator/scale_with_alpha.xml +22 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/res/drawable/white_radius.xml +6 -0
- package/GitRepos/CircleIndicator/circleindicator/src/main/res/values/attrs.xml +60 -0
- package/GitRepos/CircleIndicator/circleindicator/upload-jcenter.gradle +67 -0
- package/GitRepos/CircleIndicator/circleindicator/upload-maven.gradle +55 -0
- package/GitRepos/CircleIndicator/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/GitRepos/CircleIndicator/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/GitRepos/CircleIndicator/gradle.properties +18 -0
- package/GitRepos/CircleIndicator/gradlew +164 -0
- package/GitRepos/CircleIndicator/gradlew.bat +90 -0
- package/GitRepos/CircleIndicator/sample/build.gradle +32 -0
- package/GitRepos/CircleIndicator/sample/proguard-rules.pro +17 -0
- package/GitRepos/CircleIndicator/sample/src/main/AndroidManifest.xml +23 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/SampleActivity.java +158 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/SamplePagerAdapter.java +59 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/ChangeColorFragment.java +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/CustomAnimationFragment.java +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/DefaultFragment.java +29 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/DynamicAdapterFragment.java +52 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/LoopViewPagerFragment.java +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/ResetAdapterFragment.java +41 -0
- package/GitRepos/CircleIndicator/sample/src/main/java/me/relex/circleindicator/sample/fragment/SnackbarBehaviorFragment.java +44 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/animator/indicator_animator.xml +16 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/animator/indicator_animator_reverse.xml +10 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/animator/indicator_no_animator.xml +4 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable/black_radius.xml +8 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable/black_radius_square.xml +7 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable/white_radius.xml +6 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-hdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-mdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-xhdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/drawable-xxhdpi/ic_launcher.png +0 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/activity_sample.xml +22 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_change_color.xml +21 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_custom_animation.xml +26 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_default.xml +18 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_dynamic_adapter.xml +34 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_loop_viewpager.xml +18 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_reset_adapter.xml +27 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/fragment_sample_snackbar_behavior.xml +28 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/item_view.xml +2 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/layout/viewpager_activity.xml +74 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/array.xml +10 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/colors.xml +19 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/ids.xml +17 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/strings.xml +9 -0
- package/GitRepos/CircleIndicator/sample/src/main/res/values/styles.xml +26 -0
- package/GitRepos/CircleIndicator/screenshot.gif +0 -0
- package/GitRepos/CircleIndicator/settings.gradle +1 -0
- package/GitRepos/Time/.travis.yml +14 -0
- package/GitRepos/Time/LICENSE.md +22 -0
- package/GitRepos/Time/README.md +269 -0
- package/GitRepos/Time/build.gradle +23 -0
- package/GitRepos/Time/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/GitRepos/Time/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/GitRepos/Time/gradlew +172 -0
- package/GitRepos/Time/gradlew.bat +84 -0
- package/GitRepos/Time/settings.gradle +3 -0
- package/GitRepos/Time/time/build.gradle +20 -0
- package/GitRepos/Time/time/src/main/kotlin/com/kizitonwose/time/Extensions.kt +65 -0
- package/GitRepos/Time/time/src/main/kotlin/com/kizitonwose/time/Time.kt +143 -0
- package/GitRepos/Time/time/src/test/kotlin/com/kizitonwose/time/TimeTest.kt +110 -0
- package/GitRepos/Time/time-android/build.gradle +38 -0
- package/GitRepos/Time/time-android/proguard-rules.pro +21 -0
- package/GitRepos/Time/time-android/src/main/AndroidManifest.xml +2 -0
- package/GitRepos/Time/time-android/src/main/kotlin/com/kizitonwose/timeandroid/AndroidExtensions.kt +15 -0
- package/GitRepos/Time/time-android/src/main/res/values/strings.xml +3 -0
- package/GitRepos/black/.coveragerc +9 -0
- package/GitRepos/black/.flake8 +7 -0
- package/GitRepos/black/.github/CODE_OF_CONDUCT.md +11 -0
- package/GitRepos/black/.github/ISSUE_TEMPLATE/bug_report.md +36 -0
- package/GitRepos/black/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
- package/GitRepos/black/.github/ISSUE_TEMPLATE/style_issue.md +29 -0
- package/GitRepos/black/.github/workflows/changelog.yml +21 -0
- package/GitRepos/black/.github/workflows/doc.yml +30 -0
- package/GitRepos/black/.github/workflows/docker.yml +43 -0
- package/GitRepos/black/.github/workflows/fuzz.yml +35 -0
- package/GitRepos/black/.github/workflows/lint.yml +28 -0
- package/GitRepos/black/.github/workflows/primer.yml +47 -0
- package/GitRepos/black/.github/workflows/pypi_upload.yml +31 -0
- package/GitRepos/black/.github/workflows/test.yml +76 -0
- package/GitRepos/black/.github/workflows/upload_binary.yml +51 -0
- package/GitRepos/black/.pre-commit-config.yaml +30 -0
- package/GitRepos/black/.pre-commit-hooks.yaml +9 -0
- package/GitRepos/black/.prettierrc.yaml +3 -0
- package/GitRepos/black/.readthedocs.yaml +14 -0
- package/GitRepos/black/AUTHORS.md +184 -0
- package/GitRepos/black/CHANGES.md +648 -0
- package/GitRepos/black/CONTRIBUTING.md +10 -0
- package/GitRepos/black/Dockerfile +14 -0
- package/GitRepos/black/LICENSE +21 -0
- package/GitRepos/black/Pipfile +36 -0
- package/GitRepos/black/Pipfile.lock +1308 -0
- package/GitRepos/black/README.md +220 -0
- package/GitRepos/black/action/Dockerfile +10 -0
- package/GitRepos/black/action/entrypoint.sh +9 -0
- package/GitRepos/black/action.yml +24 -0
- package/GitRepos/black/autoload/black.vim +172 -0
- package/GitRepos/black/docs/Makefile +20 -0
- package/GitRepos/black/docs/_static/custom.css +38 -0
- package/GitRepos/black/docs/_static/license.svg +1 -0
- package/GitRepos/black/docs/_static/logo2-readme.png +0 -0
- package/GitRepos/black/docs/_static/logo2.png +0 -0
- package/GitRepos/black/docs/_static/pypi_template.svg +1 -0
- package/GitRepos/black/docs/compatible_configs/flake8/.flake8 +3 -0
- package/GitRepos/black/docs/compatible_configs/flake8/setup.cfg +3 -0
- package/GitRepos/black/docs/compatible_configs/flake8/tox.ini +3 -0
- package/GitRepos/black/docs/compatible_configs/isort/.editorconfig +2 -0
- package/GitRepos/black/docs/compatible_configs/isort/.isort.cfg +2 -0
- package/GitRepos/black/docs/compatible_configs/isort/pyproject.toml +2 -0
- package/GitRepos/black/docs/compatible_configs/isort/setup.cfg +2 -0
- package/GitRepos/black/docs/compatible_configs/pylint/pylintrc +5 -0
- package/GitRepos/black/docs/compatible_configs/pylint/pyproject.toml +5 -0
- package/GitRepos/black/docs/compatible_configs/pylint/setup.cfg +5 -0
- package/GitRepos/black/docs/conf.py +227 -0
- package/GitRepos/black/docs/contributing/gauging_changes.md +42 -0
- package/GitRepos/black/docs/contributing/index.rst +42 -0
- package/GitRepos/black/docs/contributing/issue_triage.md +169 -0
- package/GitRepos/black/docs/contributing/reference/reference_classes.rst +76 -0
- package/GitRepos/black/docs/contributing/reference/reference_exceptions.rst +12 -0
- package/GitRepos/black/docs/contributing/reference/reference_functions.rst +178 -0
- package/GitRepos/black/docs/contributing/reference/reference_summary.rst +16 -0
- package/GitRepos/black/docs/contributing/release_process.md +89 -0
- package/GitRepos/black/docs/contributing/the_basics.md +101 -0
- package/GitRepos/black/docs/getting_started.md +49 -0
- package/GitRepos/black/docs/guides/index.rst +14 -0
- package/GitRepos/black/docs/guides/introducing_black_to_your_project.md +50 -0
- package/GitRepos/black/docs/guides/using_black_with_other_tools.md +278 -0
- package/GitRepos/black/docs/index.rst +120 -0
- package/GitRepos/black/docs/integrations/editors.md +326 -0
- package/GitRepos/black/docs/integrations/github_actions.md +35 -0
- package/GitRepos/black/docs/integrations/index.rst +28 -0
- package/GitRepos/black/docs/integrations/source_version_control.md +14 -0
- package/GitRepos/black/docs/license.rst +6 -0
- package/GitRepos/black/docs/make.bat +36 -0
- package/GitRepos/black/docs/requirements.txt +6 -0
- package/GitRepos/black/docs/the_black_code_style/current_style.md +456 -0
- package/GitRepos/black/docs/the_black_code_style/future_style.md +35 -0
- package/GitRepos/black/docs/the_black_code_style/index.rst +19 -0
- package/GitRepos/black/docs/usage_and_configuration/black_as_a_server.md +78 -0
- package/GitRepos/black/docs/usage_and_configuration/file_collection_and_discovery.md +36 -0
- package/GitRepos/black/docs/usage_and_configuration/index.rst +24 -0
- package/GitRepos/black/docs/usage_and_configuration/the_basics.md +286 -0
- package/GitRepos/black/fuzz.py +85 -0
- package/GitRepos/black/gallery/Dockerfile +11 -0
- package/GitRepos/black/gallery/README.md +45 -0
- package/GitRepos/black/gallery/gallery.py +307 -0
- package/GitRepos/black/mypy.ini +39 -0
- package/GitRepos/black/plugin/black.vim +60 -0
- package/GitRepos/black/profiling/dict_big.py +8001 -0
- package/GitRepos/black/profiling/dict_huge.py +41440 -0
- package/GitRepos/black/profiling/list_big.py +4000 -0
- package/GitRepos/black/profiling/list_huge.py +22431 -0
- package/GitRepos/black/profiling/mix_big.py +1002 -0
- package/GitRepos/black/profiling/mix_huge.py +7692 -0
- package/GitRepos/black/profiling/mix_small.py +102 -0
- package/GitRepos/black/pyproject.toml +34 -0
- package/GitRepos/black/setup.cfg +2 -0
- package/GitRepos/black/setup.py +113 -0
- package/GitRepos/black/src/black/__init__.py +1062 -0
- package/GitRepos/black/src/black/__main__.py +3 -0
- package/GitRepos/black/src/black/brackets.py +334 -0
- package/GitRepos/black/src/black/cache.py +83 -0
- package/GitRepos/black/src/black/comments.py +269 -0
- package/GitRepos/black/src/black/concurrency.py +39 -0
- package/GitRepos/black/src/black/const.py +4 -0
- package/GitRepos/black/src/black/debug.py +48 -0
- package/GitRepos/black/src/black/files.py +243 -0
- package/GitRepos/black/src/black/linegen.py +984 -0
- package/GitRepos/black/src/black/lines.py +734 -0
- package/GitRepos/black/src/black/mode.py +123 -0
- package/GitRepos/black/src/black/nodes.py +843 -0
- package/GitRepos/black/src/black/numerics.py +65 -0
- package/GitRepos/black/src/black/output.py +83 -0
- package/GitRepos/black/src/black/parsing.py +215 -0
- package/GitRepos/black/src/black/py.typed +1 -0
- package/GitRepos/black/src/black/report.py +100 -0
- package/GitRepos/black/src/black/rusty.py +28 -0
- package/GitRepos/black/src/black/strings.py +216 -0
- package/GitRepos/black/src/black/trans.py +1925 -0
- package/GitRepos/black/src/black_primer/cli.py +147 -0
- package/GitRepos/black/src/black_primer/lib.py +361 -0
- package/GitRepos/black/src/black_primer/primer.json +143 -0
- package/GitRepos/black/src/blackd/__init__.py +211 -0
- package/GitRepos/black/src/blib2to3/Grammar.txt +215 -0
- package/GitRepos/black/src/blib2to3/LICENSE +254 -0
- package/GitRepos/black/src/blib2to3/PatternGrammar.txt +28 -0
- package/GitRepos/black/src/blib2to3/README +16 -0
- package/GitRepos/black/src/blib2to3/__init__.py +1 -0
- package/GitRepos/black/src/blib2to3/pgen2/__init__.py +4 -0
- package/GitRepos/black/src/blib2to3/pgen2/conv.py +256 -0
- package/GitRepos/black/src/blib2to3/pgen2/driver.py +253 -0
- package/GitRepos/black/src/blib2to3/pgen2/grammar.py +223 -0
- package/GitRepos/black/src/blib2to3/pgen2/literals.py +68 -0
- package/GitRepos/black/src/blib2to3/pgen2/parse.py +235 -0
- package/GitRepos/black/src/blib2to3/pgen2/pgen.py +428 -0
- package/GitRepos/black/src/blib2to3/pgen2/token.py +94 -0
- package/GitRepos/black/src/blib2to3/pgen2/tokenize.py +681 -0
- package/GitRepos/black/src/blib2to3/pygram.py +197 -0
- package/GitRepos/black/src/blib2to3/pytree.py +980 -0
- package/GitRepos/black/test_requirements.txt +9 -0
- package/GitRepos/black/tests/__init__.py +0 -0
- package/GitRepos/black/tests/conftest.py +1 -0
- package/GitRepos/black/tests/data/async_as_identifier.py +49 -0
- package/GitRepos/black/tests/data/beginning_backslash.py +12 -0
- package/GitRepos/black/tests/data/blackd_diff.diff +13 -0
- package/GitRepos/black/tests/data/blackd_diff.py +6 -0
- package/GitRepos/black/tests/data/bracketmatch.py +15 -0
- package/GitRepos/black/tests/data/cantfit.py +107 -0
- package/GitRepos/black/tests/data/class_blank_parentheses.py +58 -0
- package/GitRepos/black/tests/data/class_methods_new_line.py +270 -0
- package/GitRepos/black/tests/data/collections.py +174 -0
- package/GitRepos/black/tests/data/comment_after_escaped_newline.py +18 -0
- package/GitRepos/black/tests/data/comments.py +96 -0
- package/GitRepos/black/tests/data/comments2.py +342 -0
- package/GitRepos/black/tests/data/comments3.py +47 -0
- package/GitRepos/black/tests/data/comments4.py +94 -0
- package/GitRepos/black/tests/data/comments5.py +71 -0
- package/GitRepos/black/tests/data/comments6.py +118 -0
- package/GitRepos/black/tests/data/comments7.py +271 -0
- package/GitRepos/black/tests/data/comments_non_breaking_space.py +44 -0
- package/GitRepos/black/tests/data/composition.py +181 -0
- package/GitRepos/black/tests/data/composition_no_trailing_comma.py +367 -0
- package/GitRepos/black/tests/data/debug_visitor.out +810 -0
- package/GitRepos/black/tests/data/debug_visitor.py +32 -0
- package/GitRepos/black/tests/data/decorators.py +182 -0
- package/GitRepos/black/tests/data/docstring.py +377 -0
- package/GitRepos/black/tests/data/docstring_no_string_normalization.py +249 -0
- package/GitRepos/black/tests/data/empty_lines.py +187 -0
- package/GitRepos/black/tests/data/empty_pyproject.toml +2 -0
- package/GitRepos/black/tests/data/expression.diff +447 -0
- package/GitRepos/black/tests/data/expression.py +630 -0
- package/GitRepos/black/tests/data/expression_skip_magic_trailing_comma.diff +428 -0
- package/GitRepos/black/tests/data/fmtonoff.py +413 -0
- package/GitRepos/black/tests/data/fmtonoff2.py +40 -0
- package/GitRepos/black/tests/data/fmtonoff3.py +35 -0
- package/GitRepos/black/tests/data/fmtonoff4.py +36 -0
- package/GitRepos/black/tests/data/fmtskip.py +3 -0
- package/GitRepos/black/tests/data/fmtskip2.py +17 -0
- package/GitRepos/black/tests/data/fmtskip3.py +20 -0
- package/GitRepos/black/tests/data/fmtskip4.py +13 -0
- package/GitRepos/black/tests/data/fmtskip5.py +22 -0
- package/GitRepos/black/tests/data/force_py36.py +16 -0
- package/GitRepos/black/tests/data/force_pyi.py +65 -0
- package/GitRepos/black/tests/data/fstring.py +21 -0
- package/GitRepos/black/tests/data/function.py +247 -0
- package/GitRepos/black/tests/data/function2.py +58 -0
- package/GitRepos/black/tests/data/function_trailing_comma.py +88 -0
- package/GitRepos/black/tests/data/import_spacing.py +118 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/.definitely_exclude/a.pie +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/.definitely_exclude/a.py +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/.definitely_exclude/a.pyi +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/dont_exclude/a.pie +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/dont_exclude/a.py +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/dont_exclude/a.pyi +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/exclude/a.pie +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/exclude/a.py +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/b/exclude/a.pyi +0 -0
- package/GitRepos/black/tests/data/include_exclude_tests/pyproject.toml +3 -0
- package/GitRepos/black/tests/data/long_strings.py +589 -0
- package/GitRepos/black/tests/data/long_strings__edge_case.py +110 -0
- package/GitRepos/black/tests/data/long_strings__regression.py +888 -0
- package/GitRepos/black/tests/data/long_strings_flag_disabled.py +289 -0
- package/GitRepos/black/tests/data/missing_final_newline.diff +8 -0
- package/GitRepos/black/tests/data/missing_final_newline.py +3 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/pyproject.toml +3 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/root/b.py +1 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/root/c.py +1 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/root/child/c.py +1 -0
- package/GitRepos/black/tests/data/nested_gitignore_tests/x.py +0 -0
- package/GitRepos/black/tests/data/numeric_literals.py +44 -0
- package/GitRepos/black/tests/data/numeric_literals_py2.py +16 -0
- package/GitRepos/black/tests/data/numeric_literals_skip_underscores.py +23 -0
- package/GitRepos/black/tests/data/pep_570.py +44 -0
- package/GitRepos/black/tests/data/pep_572.py +47 -0
- package/GitRepos/black/tests/data/pep_572_do_not_remove_parens.py +21 -0
- package/GitRepos/black/tests/data/pep_572_remove_parens.py +105 -0
- package/GitRepos/black/tests/data/percent_precedence.py +41 -0
- package/GitRepos/black/tests/data/python2.py +33 -0
- package/GitRepos/black/tests/data/python2_print_function.py +16 -0
- package/GitRepos/black/tests/data/python2_unicode_literals.py +20 -0
- package/GitRepos/black/tests/data/python37.py +65 -0
- package/GitRepos/black/tests/data/python38.py +45 -0
- package/GitRepos/black/tests/data/python39.py +37 -0
- package/GitRepos/black/tests/data/remove_parens.py +142 -0
- package/GitRepos/black/tests/data/slices.py +31 -0
- package/GitRepos/black/tests/data/string_prefixes.py +18 -0
- package/GitRepos/black/tests/data/string_quotes.py +102 -0
- package/GitRepos/black/tests/data/stub.pyi +35 -0
- package/GitRepos/black/tests/data/trailing_comma_optional_parens1.py +3 -0
- package/GitRepos/black/tests/data/trailing_comma_optional_parens2.py +3 -0
- package/GitRepos/black/tests/data/trailing_comma_optional_parens3.py +8 -0
- package/GitRepos/black/tests/data/tricky_unicode_symbols.py +6 -0
- package/GitRepos/black/tests/data/tupleassign.py +23 -0
- package/GitRepos/black/tests/empty.toml +1 -0
- package/GitRepos/black/tests/optional.py +119 -0
- package/GitRepos/black/tests/test.toml +10 -0
- package/GitRepos/black/tests/test_black.py +2100 -0
- package/GitRepos/black/tests/test_blackd.py +166 -0
- package/GitRepos/black/tests/test_format.py +144 -0
- package/GitRepos/black/tests/test_primer.py +217 -0
- package/GitRepos/black/tests/util.py +74 -0
- package/GitRepos/black/tox.ini +28 -0
- package/GitRepos/danger-static_analyzer_comments/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/GitRepos/danger-static_analyzer_comments/.idea/modules.xml +8 -0
- package/GitRepos/danger-static_analyzer_comments/Gemfile +3 -0
- package/GitRepos/danger-static_analyzer_comments/Gemfile.lock +141 -0
- package/GitRepos/danger-static_analyzer_comments/Guardfile +19 -0
- package/GitRepos/danger-static_analyzer_comments/LICENSE +21 -0
- package/GitRepos/danger-static_analyzer_comments/PLUGIN.gemspec.template.cpgz +0 -0
- package/GitRepos/danger-static_analyzer_comments/PLUGIN_LICENSE.txt +22 -0
- package/GitRepos/danger-static_analyzer_comments/PLUGIN_README.md +20 -0
- package/GitRepos/danger-static_analyzer_comments/README.md +2 -0
- package/GitRepos/danger-static_analyzer_comments/Rakefile +23 -0
- package/GitRepos/danger-static_analyzer_comments/configure +123 -0
- package/GitRepos/danger-static_analyzer_comments/danger-static_analyzer_comments.gemspec +49 -0
- package/GitRepos/danger-static_analyzer_comments/lib/danger_plugin.rb +73 -0
- package/GitRepos/danger-static_analyzer_comments/lib/version.rb +3 -0
- package/GitRepos/danger-static_analyzer_comments/spec/danger_static_analyzer_comments_spec.rb +23 -0
- package/GitRepos/danger-static_analyzer_comments/spec/spec_helper.rb +65 -0
- package/GitRepos/isort/.codecov.yml +10 -0
- package/GitRepos/isort/.coveragerc +20 -0
- package/GitRepos/isort/.cruft.json +17 -0
- package/GitRepos/isort/.deepsource.toml +18 -0
- package/GitRepos/isort/.dockerignore +17 -0
- package/GitRepos/isort/.editorconfig +19 -0
- package/GitRepos/isort/.github/FUNDING.yml +2 -0
- package/GitRepos/isort/.github/workflows/integration.yml +35 -0
- package/GitRepos/isort/.github/workflows/lint.yml +35 -0
- package/GitRepos/isort/.github/workflows/test.yml +64 -0
- package/GitRepos/isort/.isort.cfg +5 -0
- package/GitRepos/isort/.pre-commit-config.yaml +5 -0
- package/GitRepos/isort/.pre-commit-hooks.yaml +9 -0
- package/GitRepos/isort/CHANGELOG.md +522 -0
- package/GitRepos/isort/Dockerfile +26 -0
- package/GitRepos/isort/LICENSE +21 -0
- package/GitRepos/isort/MANIFEST.in +4 -0
- package/GitRepos/isort/README.md +355 -0
- package/GitRepos/isort/art/isort_loves_black.png +0 -0
- package/GitRepos/isort/art/logo.png +0 -0
- package/GitRepos/isort/art/logo.xcf +0 -0
- package/GitRepos/isort/art/logo_5.png +0 -0
- package/GitRepos/isort/art/logo_large.png +0 -0
- package/GitRepos/isort/art/logo_large.xcf +0 -0
- package/GitRepos/isort/art/stylesheets/extra.css +5 -0
- package/GitRepos/isort/docs/configuration/action_comments.md +108 -0
- package/GitRepos/isort/docs/configuration/add_or_remove_imports.md +28 -0
- package/GitRepos/isort/docs/configuration/black_compatibility.md +63 -0
- package/GitRepos/isort/docs/configuration/config_files.md +89 -0
- package/GitRepos/isort/docs/configuration/custom_sections_and_ordering.md +131 -0
- package/GitRepos/isort/docs/configuration/git_hook.md +34 -0
- package/GitRepos/isort/docs/configuration/github_action.md +63 -0
- package/GitRepos/isort/docs/configuration/multi_line_output_modes.md +121 -0
- package/GitRepos/isort/docs/configuration/options.md +1314 -0
- package/GitRepos/isort/docs/configuration/pre-commit.md +32 -0
- package/GitRepos/isort/docs/configuration/profiles.md +86 -0
- package/GitRepos/isort/docs/configuration/setuptools_integration.md +27 -0
- package/GitRepos/isort/docs/contributing/1.-contributing-guide.md +81 -0
- package/GitRepos/isort/docs/contributing/2.-coding-standard.md +57 -0
- package/GitRepos/isort/docs/contributing/3.-code-of-conduct.md +88 -0
- package/GitRepos/isort/docs/contributing/4.-acknowledgements.md +259 -0
- package/GitRepos/isort/docs/major_releases/introducing_isort_5.md +142 -0
- package/GitRepos/isort/docs/major_releases/release_policy.md +46 -0
- package/GitRepos/isort/docs/quick_start/0.-try.md +50 -0
- package/GitRepos/isort/docs/quick_start/1.-install.md +22 -0
- package/GitRepos/isort/docs/quick_start/2.-cli.md +43 -0
- package/GitRepos/isort/docs/quick_start/3.-api.md +22 -0
- package/GitRepos/isort/docs/quick_start/interactive.css +26 -0
- package/GitRepos/isort/docs/quick_start/interactive.js +55 -0
- package/GitRepos/isort/docs/quick_start/isort-5.0.0-py3-none-any.whl +0 -0
- package/GitRepos/isort/docs/quick_start/isort-5.0.1-py3-none-any.whl +0 -0
- package/GitRepos/isort/docs/upgrade_guides/5.0.0.md +97 -0
- package/GitRepos/isort/docs/warning_and_error_codes/W0500.md +22 -0
- package/GitRepos/isort/example.gif +0 -0
- package/GitRepos/isort/example_isort_formatting_plugin/example_isort_formatting_plugin.py +23 -0
- package/GitRepos/isort/example_isort_formatting_plugin/poetry.lock +173 -0
- package/GitRepos/isort/example_isort_formatting_plugin/pyproject.toml +20 -0
- package/GitRepos/isort/example_shared_isort_profile/example_shared_isort_profile.py +7 -0
- package/GitRepos/isort/example_shared_isort_profile/poetry.lock +7 -0
- package/GitRepos/isort/example_shared_isort_profile/pyproject.toml +18 -0
- package/GitRepos/isort/isort/__init__.py +19 -0
- package/GitRepos/isort/isort/__main__.py +3 -0
- package/GitRepos/isort/isort/_future/__init__.py +12 -0
- package/GitRepos/isort/isort/_future/_dataclasses.py +1209 -0
- package/GitRepos/isort/isort/_vendored/toml/LICENSE +27 -0
- package/GitRepos/isort/isort/_vendored/toml/__init__.py +23 -0
- package/GitRepos/isort/isort/_vendored/toml/decoder.py +1053 -0
- package/GitRepos/isort/isort/_vendored/toml/encoder.py +295 -0
- package/GitRepos/isort/isort/_vendored/toml/ordered.py +13 -0
- package/GitRepos/isort/isort/_vendored/toml/tz.py +21 -0
- package/GitRepos/isort/isort/_version.py +1 -0
- package/GitRepos/isort/isort/api.py +576 -0
- package/GitRepos/isort/isort/comments.py +32 -0
- package/GitRepos/isort/isort/core.py +455 -0
- package/GitRepos/isort/isort/deprecated/__init__.py +0 -0
- package/GitRepos/isort/isort/deprecated/finders.py +415 -0
- package/GitRepos/isort/isort/exceptions.py +180 -0
- package/GitRepos/isort/isort/files.py +41 -0
- package/GitRepos/isort/isort/format.py +150 -0
- package/GitRepos/isort/isort/hooks.py +86 -0
- package/GitRepos/isort/isort/identify.py +206 -0
- package/GitRepos/isort/isort/io.py +73 -0
- package/GitRepos/isort/isort/literal.py +109 -0
- package/GitRepos/isort/isort/logo.py +19 -0
- package/GitRepos/isort/isort/main.py +1230 -0
- package/GitRepos/isort/isort/output.py +634 -0
- package/GitRepos/isort/isort/parse.py +569 -0
- package/GitRepos/isort/isort/place.py +145 -0
- package/GitRepos/isort/isort/profiles.py +86 -0
- package/GitRepos/isort/isort/py.typed +0 -0
- package/GitRepos/isort/isort/pylama_isort.py +43 -0
- package/GitRepos/isort/isort/sections.py +9 -0
- package/GitRepos/isort/isort/settings.py +779 -0
- package/GitRepos/isort/isort/setuptools_commands.py +61 -0
- package/GitRepos/isort/isort/sorting.py +118 -0
- package/GitRepos/isort/isort/stdlibs/__init__.py +2 -0
- package/GitRepos/isort/isort/stdlibs/all.py +3 -0
- package/GitRepos/isort/isort/stdlibs/py2.py +3 -0
- package/GitRepos/isort/isort/stdlibs/py27.py +300 -0
- package/GitRepos/isort/isort/stdlibs/py3.py +3 -0
- package/GitRepos/isort/isort/stdlibs/py35.py +222 -0
- package/GitRepos/isort/isort/stdlibs/py36.py +223 -0
- package/GitRepos/isort/isort/stdlibs/py37.py +224 -0
- package/GitRepos/isort/isort/stdlibs/py38.py +223 -0
- package/GitRepos/isort/isort/stdlibs/py39.py +223 -0
- package/GitRepos/isort/isort/utils.py +16 -0
- package/GitRepos/isort/isort/wrap.py +139 -0
- package/GitRepos/isort/isort/wrap_modes.py +323 -0
- package/GitRepos/isort/logo.png +0 -0
- package/GitRepos/isort/mkdocs.yml +2 -0
- package/GitRepos/isort/poetry.lock +2472 -0
- package/GitRepos/isort/pyproject.toml +114 -0
- package/GitRepos/isort/rtd/index.md +6 -0
- package/GitRepos/isort/scripts/build_config_option_docs.py +214 -0
- package/GitRepos/isort/scripts/build_profile_docs.py +42 -0
- package/GitRepos/isort/scripts/check_acknowledgments.py +83 -0
- package/GitRepos/isort/scripts/clean.sh +7 -0
- package/GitRepos/isort/scripts/docker.sh +12 -0
- package/GitRepos/isort/scripts/done.sh +5 -0
- package/GitRepos/isort/scripts/lint.sh +11 -0
- package/GitRepos/isort/scripts/mkstdlibs.py +47 -0
- package/GitRepos/isort/scripts/test.sh +6 -0
- package/GitRepos/isort/scripts/test_integration.sh +4 -0
- package/GitRepos/isort/setup.cfg +28 -0
- package/GitRepos/isort/tests/__init__.py +0 -0
- package/GitRepos/isort/tests/integration/test_hypothesmith.py +96 -0
- package/GitRepos/isort/tests/integration/test_projects_using_isort.py +166 -0
- package/GitRepos/isort/tests/integration/test_setting_combinations.py +1869 -0
- package/GitRepos/isort/tests/unit/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/conftest.py +33 -0
- package/GitRepos/isort/tests/unit/example_crlf_file.py +10 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/almost-implicit/root/y.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/implicit/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/implicit/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/implicit/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/none/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/none/root/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/none/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/root/__init__.py +1 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkg_resource/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/.isort.cfg +2 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/root/__init__.py +1 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/root/nested/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/example_projects/namespaces/pkgutil/root/nested/x.py +0 -0
- package/GitRepos/isort/tests/unit/profiles/__init__.py +0 -0
- package/GitRepos/isort/tests/unit/profiles/test_attrs.py +102 -0
- package/GitRepos/isort/tests/unit/profiles/test_black.py +370 -0
- package/GitRepos/isort/tests/unit/profiles/test_django.py +122 -0
- package/GitRepos/isort/tests/unit/profiles/test_google.py +413 -0
- package/GitRepos/isort/tests/unit/profiles/test_hug.py +112 -0
- package/GitRepos/isort/tests/unit/profiles/test_open_stack.py +134 -0
- package/GitRepos/isort/tests/unit/profiles/test_plone.py +75 -0
- package/GitRepos/isort/tests/unit/profiles/test_pycharm.py +55 -0
- package/GitRepos/isort/tests/unit/profiles/test_wemake.py +87 -0
- package/GitRepos/isort/tests/unit/test_action_comments.py +47 -0
- package/GitRepos/isort/tests/unit/test_api.py +108 -0
- package/GitRepos/isort/tests/unit/test_comments.py +34 -0
- package/GitRepos/isort/tests/unit/test_deprecated_finders.py +210 -0
- package/GitRepos/isort/tests/unit/test_exceptions.py +100 -0
- package/GitRepos/isort/tests/unit/test_files.py +8 -0
- package/GitRepos/isort/tests/unit/test_format.py +121 -0
- package/GitRepos/isort/tests/unit/test_hooks.py +101 -0
- package/GitRepos/isort/tests/unit/test_identify.py +274 -0
- package/GitRepos/isort/tests/unit/test_importable.py +42 -0
- package/GitRepos/isort/tests/unit/test_io.py +43 -0
- package/GitRepos/isort/tests/unit/test_isort.py +5166 -0
- package/GitRepos/isort/tests/unit/test_literal.py +37 -0
- package/GitRepos/isort/tests/unit/test_main.py +1087 -0
- package/GitRepos/isort/tests/unit/test_output.py +22 -0
- package/GitRepos/isort/tests/unit/test_parse.py +82 -0
- package/GitRepos/isort/tests/unit/test_place.py +56 -0
- package/GitRepos/isort/tests/unit/test_pylama_isort.py +24 -0
- package/GitRepos/isort/tests/unit/test_regressions.py +1653 -0
- package/GitRepos/isort/tests/unit/test_settings.py +229 -0
- package/GitRepos/isort/tests/unit/test_setuptools_command.py +31 -0
- package/GitRepos/isort/tests/unit/test_ticketed_features.py +1117 -0
- package/GitRepos/isort/tests/unit/test_wrap.py +15 -0
- package/GitRepos/isort/tests/unit/test_wrap_modes.py +587 -0
- package/GitRepos/isort/tests/unit/utils.py +14 -0
- package/GitRepos/kettle/LICENSE.txt +21 -0
- package/GitRepos/kettle/README.md +215 -0
- package/GitRepos/kettle/bin/kettle-skeleton.php +316 -0
- package/GitRepos/kettle/composer.json +33 -0
- package/GitRepos/kettle/src/kettle.php +1418 -0
- package/GitRepos/mirrors-autoflake/.pre-commit-hooks.yaml +5 -0
- package/GitRepos/mirrors-autoflake/.version +1 -0
- package/GitRepos/mirrors-autoflake/hooks.yaml +7 -0
- package/GitRepos/mirrors-autoflake/setup.py +8 -0
- package/GitRepos/razorpay-java/LICENSE.txt +8 -0
- package/GitRepos/razorpay-java/README.md +421 -0
- package/GitRepos/razorpay-java/pom.xml +153 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Addon.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/AddonClient.java +17 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/ApiClient.java +194 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/ApiUtils.java +179 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/BankTransfer.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Card.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/CardClient.java +12 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Constants.java +78 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/CustomTLSSocketFactory.java +75 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Customer.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/CustomerClient.java +36 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Entity.java +45 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Invoice.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/InvoiceClient.java +32 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Order.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/OrderClient.java +32 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Payment.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/PaymentClient.java +83 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Plan.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/PlanClient.java +28 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/RazorpayClient.java +45 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/RazorpayException.java +21 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Refund.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/RefundClient.java +28 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Reversal.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Subscription.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/SubscriptionClient.java +36 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Token.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Transfer.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/TransferClient.java +36 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/Utils.java +62 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/VirtualAccount.java +10 -0
- package/GitRepos/razorpay-java/src/main/java/com/razorpay/VirtualAccountClient.java +44 -0
- package/GitRepos/razorpay-java/src/main/resources/project.properties +1 -0
- package/GitRepos/react-data-grid/.babelrc +8 -0
- package/GitRepos/react-data-grid/.github/ISSUE_TEMPLATE.md +25 -0
- package/GitRepos/react-data-grid/.github/PULL_REQUEST_TEMPLATE.md +38 -0
- package/GitRepos/react-data-grid/LICENSE +24 -0
- package/GitRepos/react-data-grid/README.md +82 -0
- package/GitRepos/react-data-grid/addons.js +1 -0
- package/GitRepos/react-data-grid/docs/api/docs.json +6685 -0
- package/GitRepos/react-data-grid/docs/markdowns/AdvancedToolbar.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/AutoCompleteEditor.md +68 -0
- package/GitRepos/react-data-grid/docs/markdowns/AutoCompleteFilter.md +22 -0
- package/GitRepos/react-data-grid/docs/markdowns/AutoCompleteTokensEditor.md +22 -0
- package/GitRepos/react-data-grid/docs/markdowns/Canvas.md +126 -0
- package/GitRepos/react-data-grid/docs/markdowns/Cell.md +101 -0
- package/GitRepos/react-data-grid/docs/markdowns/CheckboxEditor.md +27 -0
- package/GitRepos/react-data-grid/docs/markdowns/ContextMenu.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/DateRangeEditor.md +24 -0
- package/GitRepos/react-data-grid/docs/markdowns/DateRangeFilter.md +42 -0
- package/GitRepos/react-data-grid/docs/markdowns/DateRangeFormatter.md +25 -0
- package/GitRepos/react-data-grid/docs/markdowns/DragDropContainer.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/Draggable.md +30 -0
- package/GitRepos/react-data-grid/docs/markdowns/DraggableHeaderCell.md +22 -0
- package/GitRepos/react-data-grid/docs/markdowns/DropDownEditor.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/DropDownFormatter.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/EditorBase.md +32 -0
- package/GitRepos/react-data-grid/docs/markdowns/EditorContainer.md +37 -0
- package/GitRepos/react-data-grid/docs/markdowns/FilterableHeaderCell.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/Grid.md +169 -0
- package/GitRepos/react-data-grid/docs/markdowns/GroupedColumnButton.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/GroupedColumnsPanel.md +44 -0
- package/GitRepos/react-data-grid/docs/markdowns/Header.md +62 -0
- package/GitRepos/react-data-grid/docs/markdowns/HeaderCell.md +40 -0
- package/GitRepos/react-data-grid/docs/markdowns/HeaderRow.md +92 -0
- package/GitRepos/react-data-grid/docs/markdowns/ImageFormatter.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/MenuHeader.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/NumericFilter.md +17 -0
- package/GitRepos/react-data-grid/docs/markdowns/ReactDataGrid.md +209 -0
- package/GitRepos/react-data-grid/docs/markdowns/Row.md +70 -0
- package/GitRepos/react-data-grid/docs/markdowns/RowActionsCell.md +53 -0
- package/GitRepos/react-data-grid/docs/markdowns/RowDragLayer.md +42 -0
- package/GitRepos/react-data-grid/docs/markdowns/RowGroup.md +57 -0
- package/GitRepos/react-data-grid/docs/markdowns/SimpleCellFormatter.md +12 -0
- package/GitRepos/react-data-grid/docs/markdowns/SortableHeaderCell.md +27 -0
- package/GitRepos/react-data-grid/docs/markdowns/Toolbar.md +44 -0
- package/GitRepos/react-data-grid/docs/markdowns/Viewport.md +102 -0
- package/GitRepos/react-data-grid/docs/readme.md +38 -0
- package/GitRepos/react-data-grid/docs/utils/generalUtils.js +50 -0
- package/GitRepos/react-data-grid/docs/utils/generateMarkdown.js +74 -0
- package/GitRepos/react-data-grid/index.js +1 -0
- package/GitRepos/react-data-grid/package.json +120 -0
- package/GitRepos/react-data-grid/themes/DragColumn.PNG +0 -0
- package/GitRepos/react-data-grid/themes/daterangepicker-bs3.css +284 -0
- package/GitRepos/react-data-grid/themes/drag_column_full.PNG +0 -0
- package/GitRepos/react-data-grid/themes/react-data-grid.css +961 -0
- package/GitRepos/react-data-grid/themes/react-data-grid.less +629 -0
- package/Kali +0 -0
- package/MobSF/.dockerignore +26 -0
- package/MobSF/.github/CODE_OF_CONDUCT.md +46 -0
- package/MobSF/.github/CONTRIBUTING.md +131 -0
- package/MobSF/.github/FUNDING.yml +3 -0
- package/MobSF/.github/ISSUE_TEMPLATE/bug_report.md +54 -0
- package/MobSF/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
- package/MobSF/.github/PULL_REQUEST_TEMPLATE.md +20 -0
- package/MobSF/.github/SECURITY.md +21 -0
- package/MobSF/.github/SUPPORT.md +1 -0
- package/MobSF/.github/workflows/auto-comment.yml +22 -0
- package/MobSF/.github/workflows/docker-build.yml +35 -0
- package/MobSF/.github/workflows/mobsf_test.yml +58 -0
- package/MobSF/.github/workflows/python-publish.yml +28 -0
- package/MobSF/.gitmodules +3 -0
- package/MobSF/.pyup.yml +27 -0
- package/MobSF/.sonarcloud.properties +3 -0
- package/MobSF/Dockerfile +96 -0
- package/MobSF/LICENSE +675 -0
- package/MobSF/LICENSES/AdminLTE_theme.txt +8 -0
- package/MobSF/LICENSES/AntiEmulator.txt +660 -0
- package/MobSF/LICENSES/IP2LOCATION LITE DATA.txt +21 -0
- package/MobSF/LICENSES/Rootcloak.txt +13 -0
- package/MobSF/LICENSES/ac-pm_tools.txt +341 -0
- package/MobSF/LICENSES/androguard.txt +76 -0
- package/MobSF/LICENSES/backsmali.txt +29 -0
- package/MobSF/LICENSES/class-dump-z.txt +13 -0
- package/MobSF/LICENSES/droidmon.txt +624 -0
- package/MobSF/LICENSES/exodus-core.txt +661 -0
- package/MobSF/LICENSES/frida.txt +50 -0
- package/MobSF/LICENSES/ios_binary_analysis_rules.txt +28 -0
- package/MobSF/LICENSES/jadx.txt +202 -0
- package/MobSF/LICENSES/maltrail_blacklist.txt +21 -0
- package/MobSF/MANIFEST.in +12 -0
- package/MobSF/README.md +116 -0
- package/MobSF/docker-compose.yml +39 -0
- package/MobSF/manage.py +18 -0
- package/MobSF/mobsf/DynamicAnalyzer/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/admin.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/models.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tests.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/class_trace.js +126 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/get_loaded_classes.js +15 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/get_methods.js +22 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/search_class_pattern.js +55 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/string_catch.js +10 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/auxiliary/string_compare.js +15 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/api_monitor.js +572 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/debugger_check_bypass.js +8 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/root_bypass.js +260 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/default/ssl_pinning_bypass.js +255 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/aes_key.js +161 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/bypass_flag_secure.js +17 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/bypass_method.js +8 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/default.js +3 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/file_trace.js +455 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/get_android_id.js +9 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/helper.js +16 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/hook_constructor.js +7 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/hook_java_reflection.js +7 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/inputstream_dump.js +34 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/intent_dumper.js +21 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/jni_hook_by_address.js +28 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/jni_trace.js +42 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/frida_scripts/others/webview_enable_debugging.js +12 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/mobsf_agents/ClipDump.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/Xposed.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/XposedInstaller_3.1.5.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/hooks.json +389 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/AndroidBluePill.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/Droidmon.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/JustTrustMe.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/com.devadvance.rootcloak2_v18_c43b61.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/hooks.json +389 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.proxyon_v1_419b04.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/onDevice/xposed/modules/mobi.acpm.sslunpinning_v2_37f44f.apk +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/tools/webproxy.py +89 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/__init__.py +0 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/analysis.py +285 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/dynamic_analyzer.py +316 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/environment.py +698 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/frida_core.py +168 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/frida_scripts.py +65 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/frida_server_download.py +75 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/operations.py +299 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/report.py +179 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_common.py +212 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_frida.py +339 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_tls.py +109 -0
- package/MobSF/mobsf/DynamicAnalyzer/views/android/tests_xposed.py +194 -0
- package/MobSF/mobsf/MalwareAnalyzer/__init__.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/admin.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/models.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/tests.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/MalwareDomainCheck.py +226 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/Trackers.py +237 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/VirusTotal.py +140 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/__init__.py +0 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/apkid.py +61 -0
- package/MobSF/mobsf/MalwareAnalyzer/views/quark.py +145 -0
- package/MobSF/mobsf/MobSF/__init__.py +0 -0
- package/MobSF/mobsf/MobSF/forms.py +36 -0
- package/MobSF/mobsf/MobSF/init.py +143 -0
- package/MobSF/mobsf/MobSF/models.py +0 -0
- package/MobSF/mobsf/MobSF/settings.py +411 -0
- package/MobSF/mobsf/MobSF/urls.py +145 -0
- package/MobSF/mobsf/MobSF/utils.py +598 -0
- package/MobSF/mobsf/MobSF/views/__init__.py +0 -0
- package/MobSF/mobsf/MobSF/views/api/__init__.py +0 -0
- package/MobSF/mobsf/MobSF/views/api/api_dynamic_analysis.py +278 -0
- package/MobSF/mobsf/MobSF/views/api/api_middleware.py +47 -0
- package/MobSF/mobsf/MobSF/views/api/api_static_analysis.py +186 -0
- package/MobSF/mobsf/MobSF/views/apk_downloader.py +163 -0
- package/MobSF/mobsf/MobSF/views/helpers.py +94 -0
- package/MobSF/mobsf/MobSF/views/home.py +350 -0
- package/MobSF/mobsf/MobSF/views/scanning.py +149 -0
- package/MobSF/mobsf/MobSF/wsgi.py +24 -0
- package/MobSF/mobsf/StaticAnalyzer/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/admin.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/forms.py +92 -0
- package/MobSF/mobsf/StaticAnalyzer/models.py +123 -0
- package/MobSF/mobsf/StaticAnalyzer/tests.py +425 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/apktool_2.5.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/baksmali-2.5.2.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/ios/class-dump +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/ios/class-dump-swift +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/ios/jtool.ELF64 +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/LICENSE +201 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/NOTICE +213 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/README.md +125 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx +185 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx-gui +185 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx-gui.bat +89 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/bin/jadx.bat +89 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/android-29-clst.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/android-29-res.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/antlr-2.7.7.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/antlr-runtime-3.5.2.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/apksig-4.0.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/asm-8.0.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/baksmali-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/checker-qual-2.11.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/commons-lang3-3.11.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/commons-text-1.9.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/dexlib2-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/dx-1.16.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/error_prone_annotations-2.3.4.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/failureaccess-1.0.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/gson-2.8.6.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/guava-29.0-jre.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/image-viewer-1.2.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/j2objc-annotations-1.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-cli-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-core-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-dex-input-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-gui-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-java-convert-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-plugins-api-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jadx-smali-input-1.2.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jcommander-1.80.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jfontchooser-1.0.5.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/jsr305-3.0.2.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/logback-classic-1.2.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/logback-core-1.2.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/reactive-streams-1.0.3.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/rsyntaxtextarea-3.1.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/rxjava-2.2.19.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/rxjava2-swing-0.3.7.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/slf4j-api-1.7.30.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/smali-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/stringtemplate-3.2.1.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/jadx/lib/util-2.4.0.jar +0 -0
- package/MobSF/mobsf/StaticAnalyzer/tools/strings.py +24 -0
- package/MobSF/mobsf/StaticAnalyzer/views/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/android_manifest_desc.py +747 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/binary_analysis.py +255 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/cert_analysis.py +160 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/code_analysis.py +96 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/converter.py +97 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/db_interaction.py +217 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/dvm_permissions.py +278 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/find.py +75 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/generate_downloads.py +53 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/icon_analysis.py +134 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/manifest_analysis.py +908 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/manifest_view.py +64 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/network_security.py +243 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/playstore.py +76 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/rules/android_apis.yaml +425 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/rules/android_niap.yaml +356 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/rules/android_rules.yaml +683 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/source_tree.py +79 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/static_analyzer.py +660 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/strings.py +64 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/view_source.py +78 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/win_fixes.py +53 -0
- package/MobSF/mobsf/StaticAnalyzer/views/android/xapk.py +57 -0
- package/MobSF/mobsf/StaticAnalyzer/views/comparer.py +234 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/app_transport_security.py +222 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/appstore.py +54 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/binary_analysis.py +119 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/binary_rule_matcher.py +58 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/classdump.py +112 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/code_analysis.py +103 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/db_interaction.py +177 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/file_analysis.py +85 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/file_recon.py +63 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/icon_analysis.py +73 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/macho_analysis.py +255 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/permission_analysis.py +90 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/plist_analysis.py +150 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/ios_apis.yaml +85 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/ipa_rules.py +226 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/objective_c_rules.yaml +355 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/rules/swift_rules.yaml +461 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/static_analyzer.py +282 -0
- package/MobSF/mobsf/StaticAnalyzer/views/ios/view_source.py +155 -0
- package/MobSF/mobsf/StaticAnalyzer/views/sast_engine.py +71 -0
- package/MobSF/mobsf/StaticAnalyzer/views/shared_func.py +424 -0
- package/MobSF/mobsf/StaticAnalyzer/views/windows/__init__.py +0 -0
- package/MobSF/mobsf/StaticAnalyzer/views/windows/db_interaction.py +130 -0
- package/MobSF/mobsf/StaticAnalyzer/views/windows/windows.py +590 -0
- package/MobSF/mobsf/__init__.py +0 -0
- package/MobSF/mobsf/__main__.py +49 -0
- package/MobSF/mobsf/install/__init__.py +0 -0
- package/MobSF/mobsf/install/windows/__init__.py +0 -0
- package/MobSF/mobsf/install/windows/config.txt +26 -0
- package/MobSF/mobsf/install/windows/readme.md +43 -0
- package/MobSF/mobsf/install/windows/rpc_client.py +191 -0
- package/MobSF/mobsf/install/windows/setup.py +433 -0
- package/MobSF/mobsf/signatures/IP2LOCATION-LITE-DB5.IPV6.BIN +0 -0
- package/MobSF/mobsf/signatures/exodus_trackers +1 -0
- package/MobSF/mobsf/signatures/maltrail-malware-domains.txt +157958 -0
- package/MobSF/mobsf/signatures/malwaredomainlist +2256 -0
- package/MobSF/mobsf/static/adminlte/dashboard/css/adminlte.min.css +12 -0
- package/MobSF/mobsf/static/adminlte/dashboard/css/adminlte.min.css.map +1 -0
- package/MobSF/mobsf/static/adminlte/dashboard/js/adminlte.min.js +7 -0
- package/MobSF/mobsf/static/adminlte/dashboard/js/adminlte.min.js.map +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js +7 -0
- package/MobSF/mobsf/static/adminlte/plugins/bootstrap/bootstrap.bundle.min.js.map +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/datatables/jquery.dataTables.min.js +166 -0
- package/MobSF/mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.css +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/datatables-bs4/dataTables.bootstrap4.min.js +8 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/all.css +4423 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/all.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/brands.css +14 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/brands.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.css +4390 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/fontawesome.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/regular.css +15 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/regular.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/solid.css +16 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/solid.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.css +371 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/svg-with-js.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.css +2166 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/css/v4-shims.min.css +5 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg +3496 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg +803 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg +4667 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 +0 -0
- package/MobSF/mobsf/static/adminlte/plugins/jquery-ui.min.js +13 -0
- package/MobSF/mobsf/static/adminlte/plugins/jquery.min.js +2 -0
- package/MobSF/mobsf/static/adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css +13 -0
- package/MobSF/mobsf/static/adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js +13 -0
- package/MobSF/mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.css +1 -0
- package/MobSF/mobsf/static/adminlte/plugins/sweetalert2/sweetalert2.min.js +1 -0
- package/MobSF/mobsf/static/amcharts/animated.js +1 -0
- package/MobSF/mobsf/static/amcharts/core.js +1 -0
- package/MobSF/mobsf/static/amcharts/maps.js +1 -0
- package/MobSF/mobsf/static/amcharts/worldIndiaLow.js +20 -0
- package/MobSF/mobsf/static/codemirror/codemirror.css +350 -0
- package/MobSF/mobsf/static/codemirror/codemirror.js +9803 -0
- package/MobSF/mobsf/static/codemirror/javascript-lint.js +65 -0
- package/MobSF/mobsf/static/codemirror/javascript.js +945 -0
- package/MobSF/mobsf/static/codemirror/jshint.js +29591 -0
- package/MobSF/mobsf/static/codemirror/lint.css +71 -0
- package/MobSF/mobsf/static/codemirror/lint.js +259 -0
- package/MobSF/mobsf/static/enlighterjs/enlighterjs.enlighter.min.css +3 -0
- package/MobSF/mobsf/static/enlighterjs/enlighterjs.min.css +15 -0
- package/MobSF/mobsf/static/enlighterjs/enlighterjs.min.js +3 -0
- package/MobSF/mobsf/static/fonts/Open_Sans/LICENSE.txt +202 -0
- package/MobSF/mobsf/static/fonts/Open_Sans/OpenSans-Regular.ttf +0 -0
- package/MobSF/mobsf/static/fonts/Oswald/OFL.txt +93 -0
- package/MobSF/mobsf/static/fonts/Oswald/Oswald-Regular.ttf +0 -0
- package/MobSF/mobsf/static/img/favicon.ico +0 -0
- package/MobSF/mobsf/static/img/loading.jpg +0 -0
- package/MobSF/mobsf/static/img/mobsf_icon.png +0 -0
- package/MobSF/mobsf/static/img/mobsf_logo.png +0 -0
- package/MobSF/mobsf/static/img/no_icon.png +0 -0
- package/MobSF/mobsf/static/jsTree/custom.css +114 -0
- package/MobSF/mobsf/static/jsTree/jstree.min.js +6 -0
- package/MobSF/mobsf/static/jsTree/themes/default/32px.png +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/40px.png +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/content_background.gif +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/dir.gif +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/file.png +0 -0
- package/MobSF/mobsf/static/jsTree/themes/default/style.min.css +1 -0
- package/MobSF/mobsf/static/jsTree/themes/default/throbber.gif +0 -0
- package/MobSF/mobsf/static/landing/css/home.css +310 -0
- package/MobSF/mobsf/static/others/css/devices.min.css +1 -0
- package/MobSF/mobsf/static/others/css/pdf_report.css +123 -0
- package/MobSF/mobsf/static/others/css/spinner.css +168 -0
- package/MobSF/mobsf/static/others/css/terminal.css +79 -0
- package/MobSF/mobsf/static/others/css/xcode.min.css +1 -0
- package/MobSF/mobsf/static/terminal/terminal.css +79 -0
- package/MobSF/mobsf/templates/base/base_layout.html +123 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/dynamic_analyzer.html +1064 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/dynamic_report.html +1017 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/frida_logs.html +48 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/live_api.html +103 -0
- package/MobSF/mobsf/templates/dynamic_analysis/android/logcat.html +56 -0
- package/MobSF/mobsf/templates/dynamic_analysis/dynamic_analysis.html +328 -0
- package/MobSF/mobsf/templates/general/about.html +30 -0
- package/MobSF/mobsf/templates/general/apidocs.html +2201 -0
- package/MobSF/mobsf/templates/general/error.html +23 -0
- package/MobSF/mobsf/templates/general/home.html +298 -0
- package/MobSF/mobsf/templates/general/not_found.html +22 -0
- package/MobSF/mobsf/templates/general/recent.html +254 -0
- package/MobSF/mobsf/templates/general/search.html +35 -0
- package/MobSF/mobsf/templates/general/view.html +124 -0
- package/MobSF/mobsf/templates/general/zip.html +31 -0
- package/MobSF/mobsf/templates/pdf/android_report.html +930 -0
- package/MobSF/mobsf/templates/pdf/ios_report.html +760 -0
- package/MobSF/mobsf/templates/pdf/windows_report.html +211 -0
- package/MobSF/mobsf/templates/static_analysis/android_binary_analysis.html +2006 -0
- package/MobSF/mobsf/templates/static_analysis/android_source_analysis.html +1502 -0
- package/MobSF/mobsf/templates/static_analysis/compare.html +917 -0
- package/MobSF/mobsf/templates/static_analysis/ios_binary_analysis.html +1299 -0
- package/MobSF/mobsf/templates/static_analysis/ios_source_analysis.html +1125 -0
- package/MobSF/mobsf/templates/static_analysis/source_tree.html +332 -0
- package/MobSF/mobsf/templates/static_analysis/treeview_file.html +1 -0
- package/MobSF/mobsf/templates/static_analysis/treeview_folder.html +5 -0
- package/MobSF/mobsf/templates/static_analysis/windows_binary_analysis.html +411 -0
- package/MobSF/requirements.txt +30 -0
- package/MobSF/run.bat +19 -0
- package/MobSF/run.sh +48 -0
- package/MobSF/scripts/__init__.py +0 -0
- package/MobSF/scripts/check_install.py +28 -0
- package/MobSF/scripts/clean.bat +31 -0
- package/MobSF/scripts/clean.sh +43 -0
- package/MobSF/scripts/entrypoint.sh +8 -0
- package/MobSF/scripts/install_java_wkhtmltopdf.sh +33 -0
- package/MobSF/scripts/mass_static_analysis.py +95 -0
- package/MobSF/scripts/postgres_support.sh +11 -0
- package/MobSF/scripts/stack/docker-compose.yml +15 -0
- package/MobSF/scripts/update_android_permissions.py +46 -0
- package/MobSF/setup.bat +81 -0
- package/MobSF/setup.py +61 -0
- package/MobSF/setup.sh +76 -0
- package/MobSF/tox.ini +94 -0
- package/Notes/AWS Security.pdf +0 -0
- package/Notes/Android Security.pdf +0 -0
- package/Notes/Web Security.pdf +0 -0
- package/Screenshot 2022-03-10 at 11.57.37 AM.png +0 -0
- package/Security Bug Demo.mov +0 -0
- package/Security Review.mov +0 -0
- package/Templates/CRLF.txt +61 -0
- package/Templates/cors.html +26 -0
- package/Templates/openredirect.txt +860 -0
- package/Templates/secrets.py +102 -0
- package/Templates/vhost.txt +174 -0
- package/Templates/wordlist.txt +6038 -0
- package/Templates/xss.txt +2691 -0
- package/cloneall.sh +26 -0
- package/index.js +46 -0
- package/meesecops/.dockerignore +6 -0
- package/meesecops/Dockerfile +15 -0
- package/meesecops/LICENSE +201 -0
- package/meesecops/README.md +2 -0
- package/meesecops/README_secops.md +206 -0
- package/meesecops/Workflows/1-factor.png +0 -0
- package/meesecops/Workflows/2-factor.png +0 -0
- package/meesecops/__init__.py +0 -0
- package/meesecops/application/__init__.py +23 -0
- package/meesecops/application/jira_functions.py +554 -0
- package/meesecops/application/static/css/close_style.css +151 -0
- package/meesecops/application/static/css/style.css +358 -0
- package/meesecops/application/static/external/1.16.0.popper.min.js +5 -0
- package/meesecops/application/static/external/bootstrap.min.css +5 -0
- package/meesecops/application/static/external/bootstrap.min.js +7 -0
- package/meesecops/application/static/external/css.css +48 -0
- package/meesecops/application/static/external/index.js +607 -0
- package/meesecops/application/static/external/jquery-1.12.4.js +11008 -0
- package/meesecops/application/static/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/meesecops/application/static/fonts/hacked.woff +0 -0
- package/meesecops/application/static/images/ajax-loader.gif +0 -0
- package/meesecops/application/static/images/favicon.png +0 -0
- package/meesecops/application/static/images/glogin.png +0 -0
- package/meesecops/application/static/images/logo3.png +0 -0
- package/meesecops/application/static/images/sort_asc.png +0 -0
- package/meesecops/application/static/images/sort_both.png +0 -0
- package/meesecops/application/static/images/sort_desc.png +0 -0
- package/meesecops/application/static/options.json +62 -0
- package/meesecops/application/static/request_options.json +721 -0
- package/meesecops/application/static/robots.txt +2 -0
- package/meesecops/application/templates/close_tickets.html +261 -0
- package/meesecops/application/templates/footer.html +15 -0
- package/meesecops/application/templates/index.html +337 -0
- package/meesecops/application/templates/login.html +50 -0
- package/meesecops/application/templates/nav.html +63 -0
- package/meesecops/application/templates/new_secreview.html +92 -0
- package/meesecops/application/templates/search_tickets.html +77 -0
- package/meesecops/application/templates/security_updates.html +82 -0
- package/meesecops/application/views.py +536 -0
- package/meesecops/config.py +206 -0
- package/meesecops/logs/README.txt +1 -0
- package/meesecops/logs/access_log +0 -0
- package/meesecops/requirements.txt +32 -0
- package/meesecops/run.py +100 -0
- package/meesecops/screenshot/1.png +0 -0
- package/meesecops/screenshot/2.png +0 -0
- package/meesecops/screenshot/3.png +0 -0
- package/meesecops/screenshot/4-1.png +0 -0
- package/meesecops/screenshot/4.png +0 -0
- package/meesecops/screenshot/5.png +0 -0
- package/meesecops/screenshot/6.png +0 -0
- package/meesecops/screenshot/7.png +0 -0
- package/meesecops/ssl/README.txt +1 -0
- package/package.json +11 -0
- package/prod.pem +27 -0
- package/test1.py +133 -0
@@ -0,0 +1,1314 @@
|
|
1
|
+
# Configuration options for isort
|
2
|
+
|
3
|
+
As a code formatter isort has opinions. However, it also allows you to have your own. If your opinions disagree with those of isort,
|
4
|
+
isort will disagree but commit to your way of formatting. To enable this, isort exposes a plethora of options to specify
|
5
|
+
how you want your imports sorted, organized, and formatted.
|
6
|
+
|
7
|
+
Too busy to build your perfect isort configuration? For curated common configurations, see isort's [built-in
|
8
|
+
profiles](https://pycqa.github.io/isort/docs/configuration/profiles/).
|
9
|
+
|
10
|
+
## Python Version
|
11
|
+
|
12
|
+
Tells isort to set the known standard library based on the specified Python version. Default is to assume any Python 3 version could be the target, and use a union of all stdlib modules across versions. If auto is specified, the version of the interpreter used to run isort (currently: 38) will be used.
|
13
|
+
|
14
|
+
**Type:** String
|
15
|
+
**Default:** `py3`
|
16
|
+
**Python & Config File Name:** py_version
|
17
|
+
**CLI Flags:**
|
18
|
+
|
19
|
+
- --py
|
20
|
+
- --python-version
|
21
|
+
|
22
|
+
## Force To Top
|
23
|
+
|
24
|
+
Force specific imports to the top of their appropriate section.
|
25
|
+
|
26
|
+
**Type:** Frozenset
|
27
|
+
**Default:** `frozenset()`
|
28
|
+
**Python & Config File Name:** force_to_top
|
29
|
+
**CLI Flags:**
|
30
|
+
|
31
|
+
- -t
|
32
|
+
- --top
|
33
|
+
|
34
|
+
## Skip
|
35
|
+
|
36
|
+
Files that isort should skip over. If you want to skip multiple files you should specify twice: --skip file1 --skip file2. Values can be file names, directory names or file paths. To skip all files in a nested path use --skip-glob.
|
37
|
+
|
38
|
+
**Type:** Frozenset
|
39
|
+
**Default:** `('.bzr', '.direnv', '.eggs', '.git', '.hg', '.mypy_cache', '.nox', '.pants.d', '.svn', '.tox', '.venv', '_build', 'buck-out', 'build', 'dist', 'node_modules', 'venv')`
|
40
|
+
**Python & Config File Name:** skip
|
41
|
+
**CLI Flags:**
|
42
|
+
|
43
|
+
- -s
|
44
|
+
- --skip
|
45
|
+
|
46
|
+
## Extend Skip
|
47
|
+
|
48
|
+
Extends --skip to add additional files that isort should skip over. If you want to skip multiple files you should specify twice: --skip file1 --skip file2. Values can be file names, directory names or file paths. To skip all files in a nested path use --skip-glob.
|
49
|
+
|
50
|
+
**Type:** Frozenset
|
51
|
+
**Default:** `frozenset()`
|
52
|
+
**Python & Config File Name:** extend_skip
|
53
|
+
**CLI Flags:**
|
54
|
+
|
55
|
+
- --extend-skip
|
56
|
+
|
57
|
+
## Skip Glob
|
58
|
+
|
59
|
+
Additional files that isort should skip over (extending --skip-glob).
|
60
|
+
|
61
|
+
**Type:** Frozenset
|
62
|
+
**Default:** `frozenset()`
|
63
|
+
**Python & Config File Name:** skip_glob
|
64
|
+
**CLI Flags:**
|
65
|
+
|
66
|
+
- --extend-skip-glob
|
67
|
+
|
68
|
+
## Extend Skip Glob
|
69
|
+
|
70
|
+
**No Description**
|
71
|
+
|
72
|
+
**Type:** Frozenset
|
73
|
+
**Default:** `frozenset()`
|
74
|
+
**Python & Config File Name:** extend_skip_glob
|
75
|
+
**CLI Flags:** **Not Supported**
|
76
|
+
|
77
|
+
## Skip Gitignore
|
78
|
+
|
79
|
+
Treat project as a git repository and ignore files listed in .gitignore
|
80
|
+
|
81
|
+
**Type:** Bool
|
82
|
+
**Default:** `False`
|
83
|
+
**Python & Config File Name:** skip_gitignore
|
84
|
+
**CLI Flags:**
|
85
|
+
|
86
|
+
- --gitignore
|
87
|
+
- --skip-gitignore
|
88
|
+
|
89
|
+
## Line Length
|
90
|
+
|
91
|
+
The max length of an import line (used for wrapping long imports).
|
92
|
+
|
93
|
+
**Type:** Int
|
94
|
+
**Default:** `79`
|
95
|
+
**Python & Config File Name:** line_length
|
96
|
+
**CLI Flags:**
|
97
|
+
|
98
|
+
- -l
|
99
|
+
- -w
|
100
|
+
- --line-length
|
101
|
+
- --line-width
|
102
|
+
|
103
|
+
## Wrap Length
|
104
|
+
|
105
|
+
Specifies how long lines that are wrapped should be, if not set line_length is used.
|
106
|
+
NOTE: wrap_length must be LOWER than or equal to line_length.
|
107
|
+
|
108
|
+
**Type:** Int
|
109
|
+
**Default:** `0`
|
110
|
+
**Python & Config File Name:** wrap_length
|
111
|
+
**CLI Flags:**
|
112
|
+
|
113
|
+
- --wl
|
114
|
+
- --wrap-length
|
115
|
+
|
116
|
+
## Line Ending
|
117
|
+
|
118
|
+
Forces line endings to the specified value. If not set, values will be guessed per-file.
|
119
|
+
|
120
|
+
**Type:** String
|
121
|
+
**Default:** ``
|
122
|
+
**Python & Config File Name:** line_ending
|
123
|
+
**CLI Flags:**
|
124
|
+
|
125
|
+
- --le
|
126
|
+
- --line-ending
|
127
|
+
|
128
|
+
## Sections
|
129
|
+
|
130
|
+
**No Description**
|
131
|
+
|
132
|
+
**Type:** Tuple
|
133
|
+
**Default:** `('FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'LOCALFOLDER')`
|
134
|
+
**Python & Config File Name:** sections
|
135
|
+
**CLI Flags:** **Not Supported**
|
136
|
+
|
137
|
+
## No Sections
|
138
|
+
|
139
|
+
Put all imports into the same section bucket
|
140
|
+
|
141
|
+
**Type:** Bool
|
142
|
+
**Default:** `False`
|
143
|
+
**Python & Config File Name:** no_sections
|
144
|
+
**CLI Flags:**
|
145
|
+
|
146
|
+
- --ds
|
147
|
+
- --no-sections
|
148
|
+
|
149
|
+
## Known Future Library
|
150
|
+
|
151
|
+
Force isort to recognize a module as part of Python's internal future compatibility libraries. WARNING: this overrides the behavior of __future__ handling and therefore can result in code that can't execute. If you're looking to add dependencies such as six a better option is to create a another section below --future using custom sections. See: https://github.com/PyCQA/isort#custom-sections-and-ordering and the discussion here: https://github.com/PyCQA/isort/issues/1463.
|
152
|
+
|
153
|
+
**Type:** Frozenset
|
154
|
+
**Default:** `('__future__',)`
|
155
|
+
**Python & Config File Name:** known_future_library
|
156
|
+
**CLI Flags:**
|
157
|
+
|
158
|
+
- -f
|
159
|
+
- --future
|
160
|
+
|
161
|
+
## Known Third Party
|
162
|
+
|
163
|
+
Force isort to recognize a module as being part of a third party library.
|
164
|
+
|
165
|
+
**Type:** Frozenset
|
166
|
+
**Default:** `frozenset()`
|
167
|
+
**Python & Config File Name:** known_third_party
|
168
|
+
**CLI Flags:**
|
169
|
+
|
170
|
+
- -o
|
171
|
+
- --thirdparty
|
172
|
+
|
173
|
+
## Known First Party
|
174
|
+
|
175
|
+
Force isort to recognize a module as being part of the current python project.
|
176
|
+
|
177
|
+
**Type:** Frozenset
|
178
|
+
**Default:** `frozenset()`
|
179
|
+
**Python & Config File Name:** known_first_party
|
180
|
+
**CLI Flags:**
|
181
|
+
|
182
|
+
- -p
|
183
|
+
- --project
|
184
|
+
|
185
|
+
## Known Local Folder
|
186
|
+
|
187
|
+
Force isort to recognize a module as being a local folder. Generally, this is reserved for relative imports (from . import module).
|
188
|
+
|
189
|
+
**Type:** Frozenset
|
190
|
+
**Default:** `frozenset()`
|
191
|
+
**Python & Config File Name:** known_local_folder
|
192
|
+
**CLI Flags:**
|
193
|
+
|
194
|
+
- --known-local-folder
|
195
|
+
|
196
|
+
## Known Standard Library
|
197
|
+
|
198
|
+
Force isort to recognize a module as part of Python's standard library.
|
199
|
+
|
200
|
+
**Type:** Frozenset
|
201
|
+
**Default:** `('_dummy_thread', '_thread', 'abc', 'aifc', 'argparse', 'array', 'ast', 'asynchat', 'asyncio', 'asyncore', 'atexit', 'audioop', 'base64', 'bdb', 'binascii', 'binhex', 'bisect', 'builtins', 'bz2', 'cProfile', 'calendar', 'cgi', 'cgitb', 'chunk', 'cmath', 'cmd', 'code', 'codecs', 'codeop', 'collections', 'colorsys', 'compileall', 'concurrent', 'configparser', 'contextlib', 'contextvars', 'copy', 'copyreg', 'crypt', 'csv', 'ctypes', 'curses', 'dataclasses', 'datetime', 'dbm', 'decimal', 'difflib', 'dis', 'distutils', 'doctest', 'dummy_threading', 'email', 'encodings', 'ensurepip', 'enum', 'errno', 'faulthandler', 'fcntl', 'filecmp', 'fileinput', 'fnmatch', 'formatter', 'fpectl', 'fractions', 'ftplib', 'functools', 'gc', 'getopt', 'getpass', 'gettext', 'glob', 'graphlib', 'grp', 'gzip', 'hashlib', 'heapq', 'hmac', 'html', 'http', 'imaplib', 'imghdr', 'imp', 'importlib', 'inspect', 'io', 'ipaddress', 'itertools', 'json', 'keyword', 'lib2to3', 'linecache', 'locale', 'logging', 'lzma', 'macpath', 'mailbox', 'mailcap', 'marshal', 'math', 'mimetypes', 'mmap', 'modulefinder', 'msilib', 'msvcrt', 'multiprocessing', 'netrc', 'nis', 'nntplib', 'ntpath', 'numbers', 'operator', 'optparse', 'os', 'ossaudiodev', 'parser', 'pathlib', 'pdb', 'pickle', 'pickletools', 'pipes', 'pkgutil', 'platform', 'plistlib', 'poplib', 'posix', 'posixpath', 'pprint', 'profile', 'pstats', 'pty', 'pwd', 'py_compile', 'pyclbr', 'pydoc', 'queue', 'quopri', 'random', 're', 'readline', 'reprlib', 'resource', 'rlcompleter', 'runpy', 'sched', 'secrets', 'select', 'selectors', 'shelve', 'shlex', 'shutil', 'signal', 'site', 'smtpd', 'smtplib', 'sndhdr', 'socket', 'socketserver', 'spwd', 'sqlite3', 'sre', 'sre_compile', 'sre_constants', 'sre_parse', 'ssl', 'stat', 'statistics', 'string', 'stringprep', 'struct', 'subprocess', 'sunau', 'symbol', 'symtable', 'sys', 'sysconfig', 'syslog', 'tabnanny', 'tarfile', 'telnetlib', 'tempfile', 'termios', 'test', 'textwrap', 'threading', 'time', 'timeit', 'tkinter', 'token', 'tokenize', 'trace', 'traceback', 'tracemalloc', 'tty', 'turtle', 'turtledemo', 'types', 'typing', 'unicodedata', 'unittest', 'urllib', 'uu', 'uuid', 'venv', 'warnings', 'wave', 'weakref', 'webbrowser', 'winreg', 'winsound', 'wsgiref', 'xdrlib', 'xml', 'xmlrpc', 'zipapp', 'zipfile', 'zipimport', 'zlib', 'zoneinfo')`
|
202
|
+
**Python & Config File Name:** known_standard_library
|
203
|
+
**CLI Flags:**
|
204
|
+
|
205
|
+
- -b
|
206
|
+
- --builtin
|
207
|
+
|
208
|
+
## Extra Standard Library
|
209
|
+
|
210
|
+
Extra modules to be included in the list of ones in Python's standard library.
|
211
|
+
|
212
|
+
**Type:** Frozenset
|
213
|
+
**Default:** `frozenset()`
|
214
|
+
**Python & Config File Name:** extra_standard_library
|
215
|
+
**CLI Flags:**
|
216
|
+
|
217
|
+
- --extra-builtin
|
218
|
+
|
219
|
+
## Known Other
|
220
|
+
|
221
|
+
**No Description**
|
222
|
+
|
223
|
+
**Type:** Dict
|
224
|
+
**Default:** `{}`
|
225
|
+
**Python & Config File Name:** known_other
|
226
|
+
**CLI Flags:** **Not Supported**
|
227
|
+
|
228
|
+
**Examples:**
|
229
|
+
|
230
|
+
### Example `.isort.cfg`
|
231
|
+
|
232
|
+
```
|
233
|
+
[settings]
|
234
|
+
sections=FUTURE,STDLIB,THIRDPARTY,AIRFLOW,FIRSTPARTY,LOCALFOLDER
|
235
|
+
known_airflow=airflow
|
236
|
+
```
|
237
|
+
|
238
|
+
### Example `pyproject.toml`
|
239
|
+
|
240
|
+
```
|
241
|
+
[tool.isort]
|
242
|
+
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'AIRFLOW', 'FIRSTPARTY', 'LOCALFOLDER']
|
243
|
+
known_airflow = ['airflow']
|
244
|
+
```
|
245
|
+
|
246
|
+
## Multi Line Output
|
247
|
+
|
248
|
+
Multi line output (0-grid, 1-vertical, 2-hanging, 3-vert-hanging, 4-vert-grid, 5-vert-grid-grouped, 6-deprecated-alias-for-5, 7-noqa, 8-vertical-hanging-indent-bracket, 9-vertical-prefix-from-module-import, 10-hanging-indent-with-parentheses).
|
249
|
+
|
250
|
+
**Type:** Wrapmodes
|
251
|
+
**Default:** `WrapModes.GRID`
|
252
|
+
**Python & Config File Name:** multi_line_output
|
253
|
+
**CLI Flags:**
|
254
|
+
|
255
|
+
- -m
|
256
|
+
- --multi-line
|
257
|
+
|
258
|
+
**Examples:**
|
259
|
+
|
260
|
+
### Example `.isort.cfg`
|
261
|
+
|
262
|
+
```
|
263
|
+
[settings]
|
264
|
+
multi_line_output=3
|
265
|
+
```
|
266
|
+
|
267
|
+
### Example `pyproject.toml`
|
268
|
+
|
269
|
+
```
|
270
|
+
[tool.isort]
|
271
|
+
multi_line_output = 3
|
272
|
+
```
|
273
|
+
|
274
|
+
## Forced Separate
|
275
|
+
|
276
|
+
**No Description**
|
277
|
+
|
278
|
+
**Type:** Tuple
|
279
|
+
**Default:** `()`
|
280
|
+
**Python & Config File Name:** forced_separate
|
281
|
+
**CLI Flags:** **Not Supported**
|
282
|
+
|
283
|
+
## Indent
|
284
|
+
|
285
|
+
String to place for indents defaults to " " (4 spaces).
|
286
|
+
|
287
|
+
**Type:** String
|
288
|
+
**Default:** ` `
|
289
|
+
**Python & Config File Name:** indent
|
290
|
+
**CLI Flags:**
|
291
|
+
|
292
|
+
- -i
|
293
|
+
- --indent
|
294
|
+
|
295
|
+
## Comment Prefix
|
296
|
+
|
297
|
+
**No Description**
|
298
|
+
|
299
|
+
**Type:** String
|
300
|
+
**Default:** ` #`
|
301
|
+
**Python & Config File Name:** comment_prefix
|
302
|
+
**CLI Flags:** **Not Supported**
|
303
|
+
|
304
|
+
## Length Sort
|
305
|
+
|
306
|
+
Sort imports by their string length.
|
307
|
+
|
308
|
+
**Type:** Bool
|
309
|
+
**Default:** `False`
|
310
|
+
**Python & Config File Name:** length_sort
|
311
|
+
**CLI Flags:**
|
312
|
+
|
313
|
+
- --ls
|
314
|
+
- --length-sort
|
315
|
+
|
316
|
+
## Length Sort Straight
|
317
|
+
|
318
|
+
Sort straight imports by their string length. Similar to `length_sort` but applies only to straight imports and doesn't affect from imports.
|
319
|
+
|
320
|
+
**Type:** Bool
|
321
|
+
**Default:** `False`
|
322
|
+
**Python & Config File Name:** length_sort_straight
|
323
|
+
**CLI Flags:**
|
324
|
+
|
325
|
+
- --lss
|
326
|
+
- --length-sort-straight
|
327
|
+
|
328
|
+
## Length Sort Sections
|
329
|
+
|
330
|
+
**No Description**
|
331
|
+
|
332
|
+
**Type:** Frozenset
|
333
|
+
**Default:** `frozenset()`
|
334
|
+
**Python & Config File Name:** length_sort_sections
|
335
|
+
**CLI Flags:** **Not Supported**
|
336
|
+
|
337
|
+
## Add Imports
|
338
|
+
|
339
|
+
Adds the specified import line to all files, automatically determining correct placement.
|
340
|
+
|
341
|
+
**Type:** Frozenset
|
342
|
+
**Default:** `frozenset()`
|
343
|
+
**Python & Config File Name:** add_imports
|
344
|
+
**CLI Flags:**
|
345
|
+
|
346
|
+
- -a
|
347
|
+
- --add-import
|
348
|
+
|
349
|
+
## Remove Imports
|
350
|
+
|
351
|
+
Removes the specified import from all files.
|
352
|
+
|
353
|
+
**Type:** Frozenset
|
354
|
+
**Default:** `frozenset()`
|
355
|
+
**Python & Config File Name:** remove_imports
|
356
|
+
**CLI Flags:**
|
357
|
+
|
358
|
+
- --rm
|
359
|
+
- --remove-import
|
360
|
+
|
361
|
+
## Append Only
|
362
|
+
|
363
|
+
Only adds the imports specified in --add-import if the file contains existing imports.
|
364
|
+
|
365
|
+
**Type:** Bool
|
366
|
+
**Default:** `False`
|
367
|
+
**Python & Config File Name:** append_only
|
368
|
+
**CLI Flags:**
|
369
|
+
|
370
|
+
- --append
|
371
|
+
- --append-only
|
372
|
+
|
373
|
+
## Reverse Relative
|
374
|
+
|
375
|
+
Reverse order of relative imports.
|
376
|
+
|
377
|
+
**Type:** Bool
|
378
|
+
**Default:** `False`
|
379
|
+
**Python & Config File Name:** reverse_relative
|
380
|
+
**CLI Flags:**
|
381
|
+
|
382
|
+
- --rr
|
383
|
+
- --reverse-relative
|
384
|
+
|
385
|
+
## Force Single Line
|
386
|
+
|
387
|
+
Forces all from imports to appear on their own line
|
388
|
+
|
389
|
+
**Type:** Bool
|
390
|
+
**Default:** `False`
|
391
|
+
**Python & Config File Name:** force_single_line
|
392
|
+
**CLI Flags:**
|
393
|
+
|
394
|
+
- --sl
|
395
|
+
- --force-single-line-imports
|
396
|
+
|
397
|
+
## Single Line Exclusions
|
398
|
+
|
399
|
+
One or more modules to exclude from the single line rule.
|
400
|
+
|
401
|
+
**Type:** Tuple
|
402
|
+
**Default:** `()`
|
403
|
+
**Python & Config File Name:** single_line_exclusions
|
404
|
+
**CLI Flags:**
|
405
|
+
|
406
|
+
- --nsl
|
407
|
+
- --single-line-exclusions
|
408
|
+
|
409
|
+
## Default Section
|
410
|
+
|
411
|
+
Sets the default section for import options: ('FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'LOCALFOLDER')
|
412
|
+
|
413
|
+
**Type:** String
|
414
|
+
**Default:** `THIRDPARTY`
|
415
|
+
**Python & Config File Name:** default_section
|
416
|
+
**CLI Flags:**
|
417
|
+
|
418
|
+
- --sd
|
419
|
+
- --section-default
|
420
|
+
|
421
|
+
## Import Headings
|
422
|
+
|
423
|
+
**No Description**
|
424
|
+
|
425
|
+
**Type:** Dict
|
426
|
+
**Default:** `{}`
|
427
|
+
**Python & Config File Name:** import_headings
|
428
|
+
**CLI Flags:** **Not Supported**
|
429
|
+
|
430
|
+
## Balanced Wrapping
|
431
|
+
|
432
|
+
Balances wrapping to produce the most consistent line length possible
|
433
|
+
|
434
|
+
**Type:** Bool
|
435
|
+
**Default:** `False`
|
436
|
+
**Python & Config File Name:** balanced_wrapping
|
437
|
+
**CLI Flags:**
|
438
|
+
|
439
|
+
- -e
|
440
|
+
- --balanced
|
441
|
+
|
442
|
+
## Use Parentheses
|
443
|
+
|
444
|
+
Use parentheses for line continuation on length limit instead of slashes. **NOTE**: This is separate from wrap modes, and only affects how individual lines that are too long get continued, not sections of multiple imports.
|
445
|
+
|
446
|
+
**Type:** Bool
|
447
|
+
**Default:** `False`
|
448
|
+
**Python & Config File Name:** use_parentheses
|
449
|
+
**CLI Flags:**
|
450
|
+
|
451
|
+
- --up
|
452
|
+
- --use-parentheses
|
453
|
+
|
454
|
+
## Order By Type
|
455
|
+
|
456
|
+
Order imports by type, which is determined by case, in addition to alphabetically.
|
457
|
+
|
458
|
+
**NOTE**: type here refers to the implied type from the import name capitalization.
|
459
|
+
isort does not do type introspection for the imports. These "types" are simply: CONSTANT_VARIABLE, CamelCaseClass, variable_or_function. If your project follows PEP8 or a related coding standard and has many imports this is a good default, otherwise you likely will want to turn it off. From the CLI the `--dont-order-by-type` option will turn this off.
|
460
|
+
|
461
|
+
**Type:** Bool
|
462
|
+
**Default:** `True`
|
463
|
+
**Python & Config File Name:** order_by_type
|
464
|
+
**CLI Flags:**
|
465
|
+
|
466
|
+
- --ot
|
467
|
+
- --order-by-type
|
468
|
+
|
469
|
+
## Atomic
|
470
|
+
|
471
|
+
Ensures the output doesn't save if the resulting file contains syntax errors. This option is not compatible with Cython code.
|
472
|
+
|
473
|
+
**Type:** Bool
|
474
|
+
**Default:** `False`
|
475
|
+
**Python & Config File Name:** atomic
|
476
|
+
**CLI Flags:**
|
477
|
+
|
478
|
+
- --ac
|
479
|
+
- --atomic
|
480
|
+
|
481
|
+
## Lines After Imports
|
482
|
+
|
483
|
+
**No Description**
|
484
|
+
|
485
|
+
**Type:** Int
|
486
|
+
**Default:** `-1`
|
487
|
+
**Python & Config File Name:** lines_after_imports
|
488
|
+
**CLI Flags:**
|
489
|
+
|
490
|
+
- --lai
|
491
|
+
- --lines-after-imports
|
492
|
+
|
493
|
+
## Lines Between Sections
|
494
|
+
|
495
|
+
**No Description**
|
496
|
+
|
497
|
+
**Type:** Int
|
498
|
+
**Default:** `1`
|
499
|
+
**Python & Config File Name:** lines_between_sections
|
500
|
+
**CLI Flags:** **Not Supported**
|
501
|
+
|
502
|
+
## Lines Between Types
|
503
|
+
|
504
|
+
**No Description**
|
505
|
+
|
506
|
+
**Type:** Int
|
507
|
+
**Default:** `0`
|
508
|
+
**Python & Config File Name:** lines_between_types
|
509
|
+
**CLI Flags:**
|
510
|
+
|
511
|
+
- --lbt
|
512
|
+
- --lines-between-types
|
513
|
+
|
514
|
+
## Combine As Imports
|
515
|
+
|
516
|
+
Combines as imports on the same line.
|
517
|
+
|
518
|
+
**Type:** Bool
|
519
|
+
**Default:** `False`
|
520
|
+
**Python & Config File Name:** combine_as_imports
|
521
|
+
**CLI Flags:**
|
522
|
+
|
523
|
+
- --ca
|
524
|
+
- --combine-as
|
525
|
+
|
526
|
+
## Combine Star
|
527
|
+
|
528
|
+
Ensures that if a star import is present, nothing else is imported from that namespace.
|
529
|
+
|
530
|
+
**Type:** Bool
|
531
|
+
**Default:** `False`
|
532
|
+
**Python & Config File Name:** combine_star
|
533
|
+
**CLI Flags:**
|
534
|
+
|
535
|
+
- --cs
|
536
|
+
- --combine-star
|
537
|
+
|
538
|
+
## Include Trailing Comma
|
539
|
+
|
540
|
+
Includes a trailing comma on multi line imports that include parentheses.
|
541
|
+
|
542
|
+
**Type:** Bool
|
543
|
+
**Default:** `False`
|
544
|
+
**Python & Config File Name:** include_trailing_comma
|
545
|
+
**CLI Flags:**
|
546
|
+
|
547
|
+
- --tc
|
548
|
+
- --trailing-comma
|
549
|
+
|
550
|
+
## From First
|
551
|
+
|
552
|
+
Switches the typical ordering preference, showing from imports first then straight ones.
|
553
|
+
|
554
|
+
**Type:** Bool
|
555
|
+
**Default:** `False`
|
556
|
+
**Python & Config File Name:** from_first
|
557
|
+
**CLI Flags:**
|
558
|
+
|
559
|
+
- --ff
|
560
|
+
- --from-first
|
561
|
+
|
562
|
+
## Verbose
|
563
|
+
|
564
|
+
Shows verbose output, such as when files are skipped or when a check is successful.
|
565
|
+
|
566
|
+
**Type:** Bool
|
567
|
+
**Default:** `False`
|
568
|
+
**Python & Config File Name:** verbose
|
569
|
+
**CLI Flags:**
|
570
|
+
|
571
|
+
- -v
|
572
|
+
- --verbose
|
573
|
+
|
574
|
+
## Quiet
|
575
|
+
|
576
|
+
Shows extra quiet output, only errors are outputted.
|
577
|
+
|
578
|
+
**Type:** Bool
|
579
|
+
**Default:** `False`
|
580
|
+
**Python & Config File Name:** quiet
|
581
|
+
**CLI Flags:**
|
582
|
+
|
583
|
+
- -q
|
584
|
+
- --quiet
|
585
|
+
|
586
|
+
## Force Adds
|
587
|
+
|
588
|
+
Forces import adds even if the original file is empty.
|
589
|
+
|
590
|
+
**Type:** Bool
|
591
|
+
**Default:** `False`
|
592
|
+
**Python & Config File Name:** force_adds
|
593
|
+
**CLI Flags:**
|
594
|
+
|
595
|
+
- --af
|
596
|
+
- --force-adds
|
597
|
+
|
598
|
+
## Force Alphabetical Sort Within Sections
|
599
|
+
|
600
|
+
Force all imports to be sorted alphabetically within a section
|
601
|
+
|
602
|
+
**Type:** Bool
|
603
|
+
**Default:** `False`
|
604
|
+
**Python & Config File Name:** force_alphabetical_sort_within_sections
|
605
|
+
**CLI Flags:**
|
606
|
+
|
607
|
+
- --fass
|
608
|
+
- --force-alphabetical-sort-within-sections
|
609
|
+
|
610
|
+
## Force Alphabetical Sort
|
611
|
+
|
612
|
+
Force all imports to be sorted as a single section
|
613
|
+
|
614
|
+
**Type:** Bool
|
615
|
+
**Default:** `False`
|
616
|
+
**Python & Config File Name:** force_alphabetical_sort
|
617
|
+
**CLI Flags:**
|
618
|
+
|
619
|
+
- --fas
|
620
|
+
- --force-alphabetical-sort
|
621
|
+
|
622
|
+
## Force Grid Wrap
|
623
|
+
|
624
|
+
Force number of from imports (defaults to 2 when passed as CLI flag without value)to be grid wrapped regardless of line length. If 0 is passed in (the global default) only line length is considered.
|
625
|
+
|
626
|
+
**Type:** Int
|
627
|
+
**Default:** `0`
|
628
|
+
**Python & Config File Name:** force_grid_wrap
|
629
|
+
**CLI Flags:**
|
630
|
+
|
631
|
+
- --fgw
|
632
|
+
- --force-grid-wrap
|
633
|
+
|
634
|
+
## Force Sort Within Sections
|
635
|
+
|
636
|
+
Don't sort straight-style imports (like import sys) before from-style imports (like from itertools import groupby). Instead, sort the imports by module, independent of import style.
|
637
|
+
|
638
|
+
**Type:** Bool
|
639
|
+
**Default:** `False`
|
640
|
+
**Python & Config File Name:** force_sort_within_sections
|
641
|
+
**CLI Flags:**
|
642
|
+
|
643
|
+
- --fss
|
644
|
+
- --force-sort-within-sections
|
645
|
+
|
646
|
+
## Lexicographical
|
647
|
+
|
648
|
+
**No Description**
|
649
|
+
|
650
|
+
**Type:** Bool
|
651
|
+
**Default:** `False`
|
652
|
+
**Python & Config File Name:** lexicographical
|
653
|
+
**CLI Flags:** **Not Supported**
|
654
|
+
|
655
|
+
## Group By Package
|
656
|
+
|
657
|
+
**No Description**
|
658
|
+
|
659
|
+
**Type:** Bool
|
660
|
+
**Default:** `False`
|
661
|
+
**Python & Config File Name:** group_by_package
|
662
|
+
**CLI Flags:** **Not Supported**
|
663
|
+
|
664
|
+
## Ignore Whitespace
|
665
|
+
|
666
|
+
Tells isort to ignore whitespace differences when --check-only is being used.
|
667
|
+
|
668
|
+
**Type:** Bool
|
669
|
+
**Default:** `False`
|
670
|
+
**Python & Config File Name:** ignore_whitespace
|
671
|
+
**CLI Flags:**
|
672
|
+
|
673
|
+
- --ws
|
674
|
+
- --ignore-whitespace
|
675
|
+
|
676
|
+
## No Lines Before
|
677
|
+
|
678
|
+
Sections which should not be split with previous by empty lines
|
679
|
+
|
680
|
+
**Type:** Frozenset
|
681
|
+
**Default:** `frozenset()`
|
682
|
+
**Python & Config File Name:** no_lines_before
|
683
|
+
**CLI Flags:**
|
684
|
+
|
685
|
+
- --nlb
|
686
|
+
- --no-lines-before
|
687
|
+
|
688
|
+
## No Inline Sort
|
689
|
+
|
690
|
+
Leaves `from` imports with multiple imports 'as-is' (e.g. `from foo import a, c ,b`).
|
691
|
+
|
692
|
+
**Type:** Bool
|
693
|
+
**Default:** `False`
|
694
|
+
**Python & Config File Name:** no_inline_sort
|
695
|
+
**CLI Flags:**
|
696
|
+
|
697
|
+
- --nis
|
698
|
+
- --no-inline-sort
|
699
|
+
|
700
|
+
## Ignore Comments
|
701
|
+
|
702
|
+
**No Description**
|
703
|
+
|
704
|
+
**Type:** Bool
|
705
|
+
**Default:** `False`
|
706
|
+
**Python & Config File Name:** ignore_comments
|
707
|
+
**CLI Flags:** **Not Supported**
|
708
|
+
|
709
|
+
## Case Sensitive
|
710
|
+
|
711
|
+
Tells isort to include casing when sorting module names
|
712
|
+
|
713
|
+
**Type:** Bool
|
714
|
+
**Default:** `False`
|
715
|
+
**Python & Config File Name:** case_sensitive
|
716
|
+
**CLI Flags:**
|
717
|
+
|
718
|
+
- --case-sensitive
|
719
|
+
|
720
|
+
## Sources
|
721
|
+
|
722
|
+
**No Description**
|
723
|
+
|
724
|
+
**Type:** Tuple
|
725
|
+
**Default:** `()`
|
726
|
+
**Python & Config File Name:** sources
|
727
|
+
**CLI Flags:** **Not Supported**
|
728
|
+
|
729
|
+
## Virtual Env
|
730
|
+
|
731
|
+
Virtual environment to use for determining whether a package is third-party
|
732
|
+
|
733
|
+
**Type:** String
|
734
|
+
**Default:** ``
|
735
|
+
**Python & Config File Name:** virtual_env
|
736
|
+
**CLI Flags:**
|
737
|
+
|
738
|
+
- --virtual-env
|
739
|
+
|
740
|
+
## Conda Env
|
741
|
+
|
742
|
+
Conda environment to use for determining whether a package is third-party
|
743
|
+
|
744
|
+
**Type:** String
|
745
|
+
**Default:** ``
|
746
|
+
**Python & Config File Name:** conda_env
|
747
|
+
**CLI Flags:**
|
748
|
+
|
749
|
+
- --conda-env
|
750
|
+
|
751
|
+
## Ensure Newline Before Comments
|
752
|
+
|
753
|
+
Inserts a blank line before a comment following an import.
|
754
|
+
|
755
|
+
**Type:** Bool
|
756
|
+
**Default:** `False`
|
757
|
+
**Python & Config File Name:** ensure_newline_before_comments
|
758
|
+
**CLI Flags:**
|
759
|
+
|
760
|
+
- -n
|
761
|
+
- --ensure-newline-before-comments
|
762
|
+
|
763
|
+
## Directory
|
764
|
+
|
765
|
+
**No Description**
|
766
|
+
|
767
|
+
**Type:** String
|
768
|
+
**Default:** ``
|
769
|
+
**Python & Config File Name:** directory
|
770
|
+
**CLI Flags:** **Not Supported**
|
771
|
+
|
772
|
+
## Profile
|
773
|
+
|
774
|
+
Base profile type to use for configuration. Profiles include: black, django, pycharm, google, open_stack, plone, attrs, hug, wemake. As well as any shared profiles.
|
775
|
+
|
776
|
+
**Type:** String
|
777
|
+
**Default:** ``
|
778
|
+
**Python & Config File Name:** profile
|
779
|
+
**CLI Flags:**
|
780
|
+
|
781
|
+
- --profile
|
782
|
+
|
783
|
+
## Honor Noqa
|
784
|
+
|
785
|
+
Tells isort to honor noqa comments to enforce skipping those comments.
|
786
|
+
|
787
|
+
**Type:** Bool
|
788
|
+
**Default:** `False`
|
789
|
+
**Python & Config File Name:** honor_noqa
|
790
|
+
**CLI Flags:**
|
791
|
+
|
792
|
+
- --honor-noqa
|
793
|
+
|
794
|
+
## Src Paths
|
795
|
+
|
796
|
+
Add an explicitly defined source path (modules within src paths have their imports automatically categorized as first_party).
|
797
|
+
|
798
|
+
**Type:** Tuple
|
799
|
+
**Default:** `()`
|
800
|
+
**Python & Config File Name:** src_paths
|
801
|
+
**CLI Flags:**
|
802
|
+
|
803
|
+
- --src
|
804
|
+
- --src-path
|
805
|
+
|
806
|
+
## Old Finders
|
807
|
+
|
808
|
+
Use the old deprecated finder logic that relies on environment introspection magic.
|
809
|
+
|
810
|
+
**Type:** Bool
|
811
|
+
**Default:** `False`
|
812
|
+
**Python & Config File Name:** old_finders
|
813
|
+
**CLI Flags:**
|
814
|
+
|
815
|
+
- --old-finders
|
816
|
+
- --magic-placement
|
817
|
+
|
818
|
+
## Remove Redundant Aliases
|
819
|
+
|
820
|
+
Tells isort to remove redundant aliases from imports, such as `import os as os`. This defaults to `False` simply because some projects use these seemingly useless aliases to signify intent and change behaviour.
|
821
|
+
|
822
|
+
**Type:** Bool
|
823
|
+
**Default:** `False`
|
824
|
+
**Python & Config File Name:** remove_redundant_aliases
|
825
|
+
**CLI Flags:**
|
826
|
+
|
827
|
+
- --remove-redundant-aliases
|
828
|
+
|
829
|
+
## Float To Top
|
830
|
+
|
831
|
+
Causes all non-indented imports to float to the top of the file having its imports sorted (immediately below the top of file comment).
|
832
|
+
This can be an excellent shortcut for collecting imports every once in a while when you place them in the middle of a file to avoid context switching.
|
833
|
+
|
834
|
+
*NOTE*: It currently doesn't work with cimports and introduces some extra over-head and a performance penalty.
|
835
|
+
|
836
|
+
**Type:** Bool
|
837
|
+
**Default:** `False`
|
838
|
+
**Python & Config File Name:** float_to_top
|
839
|
+
**CLI Flags:**
|
840
|
+
|
841
|
+
- --float-to-top
|
842
|
+
|
843
|
+
## Filter Files
|
844
|
+
|
845
|
+
Tells isort to filter files even when they are explicitly passed in as part of the CLI command.
|
846
|
+
|
847
|
+
**Type:** Bool
|
848
|
+
**Default:** `False`
|
849
|
+
**Python & Config File Name:** filter_files
|
850
|
+
**CLI Flags:**
|
851
|
+
|
852
|
+
- --filter-files
|
853
|
+
|
854
|
+
## Formatter
|
855
|
+
|
856
|
+
Specifies the name of a formatting plugin to use when producing output.
|
857
|
+
|
858
|
+
**Type:** String
|
859
|
+
**Default:** ``
|
860
|
+
**Python & Config File Name:** formatter
|
861
|
+
**CLI Flags:**
|
862
|
+
|
863
|
+
- --formatter
|
864
|
+
|
865
|
+
## Formatting Function
|
866
|
+
|
867
|
+
**No Description**
|
868
|
+
|
869
|
+
**Type:** Nonetype
|
870
|
+
**Default:** `None`
|
871
|
+
**Python & Config File Name:** formatting_function
|
872
|
+
**CLI Flags:** **Not Supported**
|
873
|
+
|
874
|
+
## Color Output
|
875
|
+
|
876
|
+
Tells isort to use color in terminal output.
|
877
|
+
|
878
|
+
**Type:** Bool
|
879
|
+
**Default:** `False`
|
880
|
+
**Python & Config File Name:** color_output
|
881
|
+
**CLI Flags:**
|
882
|
+
|
883
|
+
- --color
|
884
|
+
|
885
|
+
## Treat Comments As Code
|
886
|
+
|
887
|
+
Tells isort to treat the specified single line comment(s) as if they are code.
|
888
|
+
|
889
|
+
**Type:** Frozenset
|
890
|
+
**Default:** `frozenset()`
|
891
|
+
**Python & Config File Name:** treat_comments_as_code
|
892
|
+
**CLI Flags:**
|
893
|
+
|
894
|
+
- --treat-comment-as-code
|
895
|
+
|
896
|
+
## Treat All Comments As Code
|
897
|
+
|
898
|
+
Tells isort to treat all single line comments as if they are code.
|
899
|
+
|
900
|
+
**Type:** Bool
|
901
|
+
**Default:** `False`
|
902
|
+
**Python & Config File Name:** treat_all_comments_as_code
|
903
|
+
**CLI Flags:**
|
904
|
+
|
905
|
+
- --treat-all-comment-as-code
|
906
|
+
|
907
|
+
## Supported Extensions
|
908
|
+
|
909
|
+
Specifies what extensions isort can be ran against.
|
910
|
+
|
911
|
+
**Type:** Frozenset
|
912
|
+
**Default:** `('pxd', 'py', 'pyi', 'pyx')`
|
913
|
+
**Python & Config File Name:** supported_extensions
|
914
|
+
**CLI Flags:**
|
915
|
+
|
916
|
+
- --ext
|
917
|
+
- --extension
|
918
|
+
- --supported-extension
|
919
|
+
|
920
|
+
## Blocked Extensions
|
921
|
+
|
922
|
+
Specifies what extensions isort can never be ran against.
|
923
|
+
|
924
|
+
**Type:** Frozenset
|
925
|
+
**Default:** `('pex',)`
|
926
|
+
**Python & Config File Name:** blocked_extensions
|
927
|
+
**CLI Flags:**
|
928
|
+
|
929
|
+
- --blocked-extension
|
930
|
+
|
931
|
+
## Constants
|
932
|
+
|
933
|
+
**No Description**
|
934
|
+
|
935
|
+
**Type:** Frozenset
|
936
|
+
**Default:** `frozenset()`
|
937
|
+
**Python & Config File Name:** constants
|
938
|
+
**CLI Flags:** **Not Supported**
|
939
|
+
|
940
|
+
## Classes
|
941
|
+
|
942
|
+
**No Description**
|
943
|
+
|
944
|
+
**Type:** Frozenset
|
945
|
+
**Default:** `frozenset()`
|
946
|
+
**Python & Config File Name:** classes
|
947
|
+
**CLI Flags:** **Not Supported**
|
948
|
+
|
949
|
+
## Variables
|
950
|
+
|
951
|
+
**No Description**
|
952
|
+
|
953
|
+
**Type:** Frozenset
|
954
|
+
**Default:** `frozenset()`
|
955
|
+
**Python & Config File Name:** variables
|
956
|
+
**CLI Flags:** **Not Supported**
|
957
|
+
|
958
|
+
## Dedup Headings
|
959
|
+
|
960
|
+
Tells isort to only show an identical custom import heading comment once, even if there are multiple sections with the comment set.
|
961
|
+
|
962
|
+
**Type:** Bool
|
963
|
+
**Default:** `False`
|
964
|
+
**Python & Config File Name:** dedup_headings
|
965
|
+
**CLI Flags:**
|
966
|
+
|
967
|
+
- --dedup-headings
|
968
|
+
|
969
|
+
## Only Sections
|
970
|
+
|
971
|
+
Causes imports to be sorted based on their sections like STDLIB,THIRDPARTY etc. Within the sections, the imports are ordered by their import style and the imports with the same style maintain their relative positions.
|
972
|
+
**Type:** Bool
|
973
|
+
**Default:** `False`
|
974
|
+
**Python & Config File Name:** only_sections
|
975
|
+
**CLI Flags:**
|
976
|
+
|
977
|
+
- --only-sections
|
978
|
+
- --os
|
979
|
+
|
980
|
+
## Only Modified
|
981
|
+
|
982
|
+
Suppresses verbose output for non-modified files.
|
983
|
+
|
984
|
+
**Type:** Bool
|
985
|
+
**Default:** `False`
|
986
|
+
**Python & Config File Name:** only_modified
|
987
|
+
**CLI Flags:**
|
988
|
+
|
989
|
+
- --only-modified
|
990
|
+
- --om
|
991
|
+
|
992
|
+
## Combine Straight Imports
|
993
|
+
|
994
|
+
Combines all the bare straight imports of the same section in a single line. Won't work with sections which have 'as' imports
|
995
|
+
|
996
|
+
**Type:** Bool
|
997
|
+
**Default:** `False`
|
998
|
+
**Python & Config File Name:** combine_straight_imports
|
999
|
+
**CLI Flags:**
|
1000
|
+
|
1001
|
+
- --combine-straight-imports
|
1002
|
+
- --csi
|
1003
|
+
|
1004
|
+
## Auto Identify Namespace Packages
|
1005
|
+
|
1006
|
+
**No Description**
|
1007
|
+
|
1008
|
+
**Type:** Bool
|
1009
|
+
**Default:** `True`
|
1010
|
+
**Python & Config File Name:** auto_identify_namespace_packages
|
1011
|
+
**CLI Flags:** **Not Supported**
|
1012
|
+
|
1013
|
+
## Namespace Packages
|
1014
|
+
|
1015
|
+
**No Description**
|
1016
|
+
|
1017
|
+
**Type:** Frozenset
|
1018
|
+
**Default:** `frozenset()`
|
1019
|
+
**Python & Config File Name:** namespace_packages
|
1020
|
+
**CLI Flags:** **Not Supported**
|
1021
|
+
|
1022
|
+
## Follow Links
|
1023
|
+
|
1024
|
+
**No Description**
|
1025
|
+
|
1026
|
+
**Type:** Bool
|
1027
|
+
**Default:** `True`
|
1028
|
+
**Python & Config File Name:** follow_links
|
1029
|
+
**CLI Flags:** **Not Supported**
|
1030
|
+
|
1031
|
+
## Indented Import Headings
|
1032
|
+
|
1033
|
+
**No Description**
|
1034
|
+
|
1035
|
+
**Type:** Bool
|
1036
|
+
**Default:** `True`
|
1037
|
+
**Python & Config File Name:** indented_import_headings
|
1038
|
+
**CLI Flags:** **Not Supported**
|
1039
|
+
|
1040
|
+
## Honor Case In Force Sorted Sections
|
1041
|
+
|
1042
|
+
Honor `--case-sensitive` when `--force-sort-within-sections` is being used. Without this option set, `--order-by-type` decides module name ordering too.
|
1043
|
+
|
1044
|
+
**Type:** Bool
|
1045
|
+
**Default:** `False`
|
1046
|
+
**Python & Config File Name:** honor_case_in_force_sorted_sections
|
1047
|
+
**CLI Flags:**
|
1048
|
+
|
1049
|
+
- --hcss
|
1050
|
+
- --honor-case-in-force-sorted-sections
|
1051
|
+
|
1052
|
+
## Sort Relative In Force Sorted Sections
|
1053
|
+
|
1054
|
+
When using `--force-sort-within-sections`, sort relative imports the same way as they are sorted when not using that setting.
|
1055
|
+
|
1056
|
+
**Type:** Bool
|
1057
|
+
**Default:** `False`
|
1058
|
+
**Python & Config File Name:** sort_relative_in_force_sorted_sections
|
1059
|
+
**CLI Flags:**
|
1060
|
+
|
1061
|
+
- --srss
|
1062
|
+
- --sort-relative-in-force-sorted-sections
|
1063
|
+
|
1064
|
+
## Overwrite In Place
|
1065
|
+
|
1066
|
+
Tells isort to overwrite in place using the same file handle.Comes at a performance and memory usage penalty over it's standard approach but ensures all file flags and modes stay unchanged.
|
1067
|
+
|
1068
|
+
**Type:** Bool
|
1069
|
+
**Default:** `False`
|
1070
|
+
**Python & Config File Name:** overwrite_in_place
|
1071
|
+
**CLI Flags:**
|
1072
|
+
|
1073
|
+
- --overwrite-in-place
|
1074
|
+
|
1075
|
+
## Reverse Sort
|
1076
|
+
|
1077
|
+
Reverses the ordering of imports.
|
1078
|
+
|
1079
|
+
**Type:** Bool
|
1080
|
+
**Default:** `False`
|
1081
|
+
**Python & Config File Name:** reverse_sort
|
1082
|
+
**CLI Flags:**
|
1083
|
+
|
1084
|
+
- --reverse-sort
|
1085
|
+
|
1086
|
+
## Star First
|
1087
|
+
|
1088
|
+
Forces star imports above others to avoid overriding directly imported variables.
|
1089
|
+
|
1090
|
+
**Type:** Bool
|
1091
|
+
**Default:** `False`
|
1092
|
+
**Python & Config File Name:** star_first
|
1093
|
+
**CLI Flags:**
|
1094
|
+
|
1095
|
+
- --star-first
|
1096
|
+
|
1097
|
+
## Show Version
|
1098
|
+
|
1099
|
+
Displays the currently installed version of isort.
|
1100
|
+
|
1101
|
+
**Type:** Bool
|
1102
|
+
**Default:** `False`
|
1103
|
+
**Python & Config File Name:** **Not Supported**
|
1104
|
+
**CLI Flags:**
|
1105
|
+
|
1106
|
+
- -V
|
1107
|
+
- --version
|
1108
|
+
|
1109
|
+
**Examples:**
|
1110
|
+
|
1111
|
+
### Example cli usage
|
1112
|
+
|
1113
|
+
`isort --version`
|
1114
|
+
|
1115
|
+
## Version Number
|
1116
|
+
|
1117
|
+
Returns just the current version number without the logo
|
1118
|
+
|
1119
|
+
**Type:** String
|
1120
|
+
**Default:** `==SUPPRESS==`
|
1121
|
+
**Python & Config File Name:** **Not Supported**
|
1122
|
+
**CLI Flags:**
|
1123
|
+
|
1124
|
+
- --vn
|
1125
|
+
- --version-number
|
1126
|
+
|
1127
|
+
## Write To Stdout
|
1128
|
+
|
1129
|
+
Force resulting output to stdout, instead of in-place.
|
1130
|
+
|
1131
|
+
**Type:** Bool
|
1132
|
+
**Default:** `False`
|
1133
|
+
**Python & Config File Name:** **Not Supported**
|
1134
|
+
**CLI Flags:**
|
1135
|
+
|
1136
|
+
- -d
|
1137
|
+
- --stdout
|
1138
|
+
|
1139
|
+
## Show Config
|
1140
|
+
|
1141
|
+
See isort's determined config, as well as sources of config options.
|
1142
|
+
|
1143
|
+
**Type:** Bool
|
1144
|
+
**Default:** `False`
|
1145
|
+
**Python & Config File Name:** **Not Supported**
|
1146
|
+
**CLI Flags:**
|
1147
|
+
|
1148
|
+
- --show-config
|
1149
|
+
|
1150
|
+
## Show Files
|
1151
|
+
|
1152
|
+
See the files isort will be ran against with the current config options.
|
1153
|
+
|
1154
|
+
**Type:** Bool
|
1155
|
+
**Default:** `False`
|
1156
|
+
**Python & Config File Name:** **Not Supported**
|
1157
|
+
**CLI Flags:**
|
1158
|
+
|
1159
|
+
- --show-files
|
1160
|
+
|
1161
|
+
## Show Diff
|
1162
|
+
|
1163
|
+
Prints a diff of all the changes isort would make to a file, instead of changing it in place
|
1164
|
+
|
1165
|
+
**Type:** Bool
|
1166
|
+
**Default:** `False`
|
1167
|
+
**Python & Config File Name:** **Not Supported**
|
1168
|
+
**CLI Flags:**
|
1169
|
+
|
1170
|
+
- --df
|
1171
|
+
- --diff
|
1172
|
+
|
1173
|
+
## Check
|
1174
|
+
|
1175
|
+
Checks the file for unsorted / unformatted imports and prints them to the command line without modifying the file. Returns 0 when nothing would change and returns 1 when the file would be reformatted.
|
1176
|
+
|
1177
|
+
**Type:** Bool
|
1178
|
+
**Default:** `False`
|
1179
|
+
**Python & Config File Name:** **Not Supported**
|
1180
|
+
**CLI Flags:**
|
1181
|
+
|
1182
|
+
- -c
|
1183
|
+
- --check-only
|
1184
|
+
- --check
|
1185
|
+
|
1186
|
+
## Settings Path
|
1187
|
+
|
1188
|
+
Explicitly set the settings path or file instead of auto determining based on file location.
|
1189
|
+
|
1190
|
+
**Type:** String
|
1191
|
+
**Default:** `None`
|
1192
|
+
**Python & Config File Name:** **Not Supported**
|
1193
|
+
**CLI Flags:**
|
1194
|
+
|
1195
|
+
- --sp
|
1196
|
+
- --settings-path
|
1197
|
+
- --settings-file
|
1198
|
+
- --settings
|
1199
|
+
|
1200
|
+
## Jobs
|
1201
|
+
|
1202
|
+
Number of files to process in parallel.
|
1203
|
+
|
1204
|
+
**Type:** Int
|
1205
|
+
**Default:** `None`
|
1206
|
+
**Python & Config File Name:** **Not Supported**
|
1207
|
+
**CLI Flags:**
|
1208
|
+
|
1209
|
+
- -j
|
1210
|
+
- --jobs
|
1211
|
+
|
1212
|
+
## Ask To Apply
|
1213
|
+
|
1214
|
+
Tells isort to apply changes interactively.
|
1215
|
+
|
1216
|
+
**Type:** Bool
|
1217
|
+
**Default:** `False`
|
1218
|
+
**Python & Config File Name:** **Not Supported**
|
1219
|
+
**CLI Flags:**
|
1220
|
+
|
1221
|
+
- --interactive
|
1222
|
+
|
1223
|
+
## Files
|
1224
|
+
|
1225
|
+
One or more Python source files that need their imports sorted.
|
1226
|
+
|
1227
|
+
**Type:** String
|
1228
|
+
**Default:** `None`
|
1229
|
+
**Python & Config File Name:** **Not Supported**
|
1230
|
+
**CLI Flags:**
|
1231
|
+
|
1232
|
+
-
|
1233
|
+
|
1234
|
+
## Dont Follow Links
|
1235
|
+
|
1236
|
+
Tells isort not to follow symlinks that are encountered when running recursively.
|
1237
|
+
|
1238
|
+
**Type:** Bool
|
1239
|
+
**Default:** `False`
|
1240
|
+
**Python & Config File Name:** **Not Supported**
|
1241
|
+
**CLI Flags:**
|
1242
|
+
|
1243
|
+
- --dont-follow-links
|
1244
|
+
|
1245
|
+
## Filename
|
1246
|
+
|
1247
|
+
Provide the filename associated with a stream.
|
1248
|
+
|
1249
|
+
**Type:** String
|
1250
|
+
**Default:** `None`
|
1251
|
+
**Python & Config File Name:** **Not Supported**
|
1252
|
+
**CLI Flags:**
|
1253
|
+
|
1254
|
+
- --filename
|
1255
|
+
|
1256
|
+
## Allow Root
|
1257
|
+
|
1258
|
+
Tells isort not to treat / specially, allowing it to be ran against the root dir.
|
1259
|
+
|
1260
|
+
**Type:** Bool
|
1261
|
+
**Default:** `False`
|
1262
|
+
**Python & Config File Name:** **Not Supported**
|
1263
|
+
**CLI Flags:**
|
1264
|
+
|
1265
|
+
- --allow-root
|
1266
|
+
|
1267
|
+
## Dont Float To Top
|
1268
|
+
|
1269
|
+
Forces --float-to-top setting off. See --float-to-top for more information.
|
1270
|
+
|
1271
|
+
**Type:** Bool
|
1272
|
+
**Default:** `False`
|
1273
|
+
**Python & Config File Name:** **Not Supported**
|
1274
|
+
**CLI Flags:**
|
1275
|
+
|
1276
|
+
- --dont-float-to-top
|
1277
|
+
|
1278
|
+
## Dont Order By Type
|
1279
|
+
|
1280
|
+
Don't order imports by type, which is determined by case, in addition to alphabetically.
|
1281
|
+
|
1282
|
+
**NOTE**: type here refers to the implied type from the import name capitalization.
|
1283
|
+
isort does not do type introspection for the imports. These "types" are simply: CONSTANT_VARIABLE, CamelCaseClass, variable_or_function. If your project follows PEP8 or a related coding standard and has many imports this is a good default. You can turn this on from the CLI using `--order-by-type`.
|
1284
|
+
|
1285
|
+
**Type:** Bool
|
1286
|
+
**Default:** `False`
|
1287
|
+
**Python & Config File Name:** **Not Supported**
|
1288
|
+
**CLI Flags:**
|
1289
|
+
|
1290
|
+
- --dt
|
1291
|
+
- --dont-order-by-type
|
1292
|
+
|
1293
|
+
## Ext Format
|
1294
|
+
|
1295
|
+
Tells isort to format the given files according to an extensions formatting rules.
|
1296
|
+
|
1297
|
+
**Type:** String
|
1298
|
+
**Default:** `None`
|
1299
|
+
**Python & Config File Name:** **Not Supported**
|
1300
|
+
**CLI Flags:**
|
1301
|
+
|
1302
|
+
- --ext-format
|
1303
|
+
|
1304
|
+
## Deprecated Flags
|
1305
|
+
|
1306
|
+
==SUPPRESS==
|
1307
|
+
|
1308
|
+
**Type:** String
|
1309
|
+
**Default:** `None`
|
1310
|
+
**Python & Config File Name:** **Not Supported**
|
1311
|
+
**CLI Flags:**
|
1312
|
+
|
1313
|
+
- -k
|
1314
|
+
- --keep-direct-and-as
|