├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── MANIFEST.in ├── Makefile ├── README.md ├── absl_migration ├── migrate.py └── migration_guidelines.md ├── debian ├── README ├── changelog ├── compat ├── control ├── copyright ├── docs └── rules ├── examples ├── basic_usage.py ├── command_flags.py ├── libbar.py ├── libfoo.py ├── myscript.py ├── use_before_parse_broken.py ├── use_before_parse_reset_broken.py ├── use_before_parse_variable_broken.py ├── use_before_parse_variable_fixed.py └── validator.py ├── gflags ├── __init__.py ├── _helpers.py ├── _helpers_test.py ├── argument_parser.py ├── exceptions.py ├── flag.py ├── flags_formatting_test.py ├── flags_modules_for_testing │ ├── __init__.py │ ├── module_bar.py │ ├── module_baz.py │ └── module_foo.py ├── flags_unicode_literals_test.py ├── flagvalues.py ├── third_party │ ├── __init__.py │ └── pep257 │ │ ├── LICENSE │ │ └── __init__.py └── validators.py ├── gflags2man.py └── setup.py /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/ChangeLog -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/README.md -------------------------------------------------------------------------------- /absl_migration/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/absl_migration/migrate.py -------------------------------------------------------------------------------- /absl_migration/migration_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/absl_migration/migration_guidelines.md -------------------------------------------------------------------------------- /debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/debian/README -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | README 3 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/debian/rules -------------------------------------------------------------------------------- /examples/basic_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/basic_usage.py -------------------------------------------------------------------------------- /examples/command_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/command_flags.py -------------------------------------------------------------------------------- /examples/libbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/libbar.py -------------------------------------------------------------------------------- /examples/libfoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/libfoo.py -------------------------------------------------------------------------------- /examples/myscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/myscript.py -------------------------------------------------------------------------------- /examples/use_before_parse_broken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/use_before_parse_broken.py -------------------------------------------------------------------------------- /examples/use_before_parse_reset_broken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/use_before_parse_reset_broken.py -------------------------------------------------------------------------------- /examples/use_before_parse_variable_broken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/use_before_parse_variable_broken.py -------------------------------------------------------------------------------- /examples/use_before_parse_variable_fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/use_before_parse_variable_fixed.py -------------------------------------------------------------------------------- /examples/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/examples/validator.py -------------------------------------------------------------------------------- /gflags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/__init__.py -------------------------------------------------------------------------------- /gflags/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/_helpers.py -------------------------------------------------------------------------------- /gflags/_helpers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/_helpers_test.py -------------------------------------------------------------------------------- /gflags/argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/argument_parser.py -------------------------------------------------------------------------------- /gflags/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/exceptions.py -------------------------------------------------------------------------------- /gflags/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/flag.py -------------------------------------------------------------------------------- /gflags/flags_formatting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/flags_formatting_test.py -------------------------------------------------------------------------------- /gflags/flags_modules_for_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gflags/flags_modules_for_testing/module_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/flags_modules_for_testing/module_bar.py -------------------------------------------------------------------------------- /gflags/flags_modules_for_testing/module_baz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/flags_modules_for_testing/module_baz.py -------------------------------------------------------------------------------- /gflags/flags_modules_for_testing/module_foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/flags_modules_for_testing/module_foo.py -------------------------------------------------------------------------------- /gflags/flags_unicode_literals_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/flags_unicode_literals_test.py -------------------------------------------------------------------------------- /gflags/flagvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/flagvalues.py -------------------------------------------------------------------------------- /gflags/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gflags/third_party/pep257/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/third_party/pep257/LICENSE -------------------------------------------------------------------------------- /gflags/third_party/pep257/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/third_party/pep257/__init__.py -------------------------------------------------------------------------------- /gflags/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags/validators.py -------------------------------------------------------------------------------- /gflags2man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/gflags2man.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/python-gflags/HEAD/setup.py --------------------------------------------------------------------------------