sphinx-contrib / sphinx-contrib/autoprogram
argparse after `__name__ == "__main__"`
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 48
- Forks
- 24
- Avg merge
- 2h 15m
- Merged PRs (30d)
- 1
Description
Dear autoprogram team,
If I have a code like this:
if __name__ == "__main__":
logger.setLevel("DEBUG")
parser = argparse.ArgumentParser(
description="""random"""
)
then the autoprogram is unable to see the parser object for that specific file. Moving parser up before the if works, but require all the add_argument to be above the if __name__ == "__main__".
I usually declare the parser only if this is executed as a script or with the -m option of python, and tend to avoid global objects otherwise.
Is there a way to make it work like this?
Thank you,
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the issue with the example where the ArgumentParser is created inside if __name__ == "__main__":, including execution with the -m option. Trace how autoprogram discovers the parser and its add_argument calls; done means it can recognize this parser without requiring those declarations above the guard.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- cli
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100