Skip to main content

Wrapper for Python's argparse to also read arguments from a file

Project description

ARGPARSE-FROM-FILE

PyPi AUR

argparse-from-file is a lightweight wrapper for Python's standard argparse module. It allows your program to read default arguments from a configuration file, which are prepended to arguments provided on the command line.

The latest version of this document and code is available at https://github.com/bulletmark/argparse-from-file.

Features

  • Drop-in replacement: Simply change import argparse to import argparse_from_file as argparse. No other code changes are needed for basic functionality.
  • Automatic configuration: By default, it loads arguments from <program_name>-flags.conf in the user's configuration directory (e.g., ~/.config/ on Linux). The exact path is determined using the platformdirs library to respect OS conventions.
  • Custom configuration file: Specify a custom file path with the from_file argument to ArgumentParser().
  • Simple file format: The configuration file is a simple text file with options specified on one or more lines. Blank lines and lines starting with # are ignored.
  • Informative help text: The program's help message is automatically updated to show the path to the configuration file.

Usage

To get started, replace the standard argparse import in your project:

# import argparse
import argparse_from_file as argparse

That's it! Your application will now automatically look for a default configuration file and use the default arguments provided therein.

To specify a custom configuration file, use the from_file keyword argument, which is the only addition to the standard ArgumentParser() API:

# Use a specific () file path
parser = argparse.ArgumentParser(from_file='/path/to/myprog.conf', ..)

# Use a file relative to the user's config directory
parser = argparse.ArgumentParser(from_file='myprog.conf', ..)

The from_file argument accepts a string or a pathlib.Path. Relative paths are resolved relative to the user's configuration directory as determined by platformdirs.

Configuration File Format

Arguments in the configuration file are best specified one per line so they can easily be commented out. It is also recommended to use long-form options for clarity.

Example ~/.config/myprog-flags.conf:

# Always run with foo set to 123
--foo 123

# Default to verbose output
--verbose

Customizing the Help Message

argparse-from-file automatically adds an epilog to the help message indicating the configuration file path. If you instead provide a custom epilog (or usage or description), you can embed a #FROM_FILE_PATH# placeholder, and it will be replaced with the actual path used.

Example

Here is a simple example program (myprog.py):

#!/usr/bin/python3
import argparse_from_file as argparse

parser = argparse.ArgumentParser()
parser.add_argument('--foo', type=int, default=42, help='foo help')
opts = parser.parse_args()

print(f"foo is: {opts.foo}")

If ~/.config/myprog-flags.conf contains --foo=123, the output is:

$ python myprog.py
foo is: 123

The help text (epilog) is also automatically added as seen below:

$ python myprog.py -h
usage: myprog.py [-h] [--foo FOO]

options:
  -h, --help  show this help message and exit
  --foo FOO   foo help

Note you can set default starting options in ~/.config/myprog-flags.conf.

Installation

Arch Linux users can install python-argparse-from-file from the AUR.

Alternatively, argparse-from-file is available on PyPI and can be installed with pip:

pip install argparse-from-file

License

Copyright (C) 2025 Mark Blakeney. This program is distributed under the terms of the GNU General Public License. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License at https://opensource.org/license/gpl-3-0 for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

argparse_from_file-1.8.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

argparse_from_file-1.8-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file argparse_from_file-1.8.tar.gz.

File metadata

  • Download URL: argparse_from_file-1.8.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for argparse_from_file-1.8.tar.gz
Algorithm Hash digest
SHA256 2c2e98e22cd2757f1b998559691c78cc4827e578774b6cad92e5e7bb3a0d02ce
MD5 f89d87596dae58cb4fb4525eba375a50
BLAKE2b-256 2fb00d627b8fcd85b18d1dc0b2f4f7ceb75ccb12d7b45d6806bddbdbbb88f218

See more details on using hashes here.

File details

Details for the file argparse_from_file-1.8-py3-none-any.whl.

File metadata

  • Download URL: argparse_from_file-1.8-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for argparse_from_file-1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 2121e0cbc00c846aacc92378afc62d427919f015eff71056df720d723643f304
MD5 0861fa24a3cb69608720d768395e252f
BLAKE2b-256 07ec6cc47161f6be401b7e6b21488a10419d77068ac5e49f904ae51f7e97e122

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page