![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Lethargy was born out of frustration. It gets out of your way as soon as possible to let you get on with the actual logic. No bullshit, no magic, no objects to understand, you just call a function.
I write a lot of small scripts to get my job done faster, and manually working with options is a pain. Existing libraries are extremely verbose or just don't feel good to use. Lethargy is designed to make writing scripts easier and faster, and to reduce effort needed to maintain them.
Lethargy is completely imperative and is not a framework. If you are building a complete CLI or want automatic help commands, you're better off using Click — a fantastic, declarative CLI framework.
You can use pip to install lethargy. It's tiny and only depends on the standard library.
pip install lethargy
import lethargy
# Accepts the option '--bytes <int>'. Show the error nicely if it goes wrong.
with lethargy.show_errors():
n_bytes = lethargy.take_opt('bytes', 1, int) or 8
# Now the option and value have been removed from lethargy.argv
with lethargy.expect(IndexError, reason='Missing required argument: [DIR]'):
directory = lethargy.argv[1]
...
This is both a tutorial and the documentation. All examples assume you've got import lethargy
at the top.
Options can be flags. True
if present, False
if not.
# --debug
debug = lethargy.take_opt('debug')
print(debug)
$ python example.py --debug
True
$ python example.py
False
Options can have more than one name. Instead of a string, use a list of strings. Names are case-sensitive.
# -v|--verbose
verbose = lethargy.take_opt(['v', 'verbose'])
print(verbose)
$ python example.py -v
True
$ python example.py --verbose
True
💡 |
Names are created automatically (POSIX style) if the given names start with a letter or number. Names like '-test' and '/f' are treated as literal because of the first character.
|
Options can take arguments, too. They can take any amount, and values are always space-separated.
# -o|--output <value>
output = lethargy.take_opt(['o', 'output'], 1)
print(output)
$ python example.py -o out.txt
out.txt
$ python example.py
None
💡 |
If there are fewer values than what the option takes, it'll raise lethargy.ArgsError . See Error Handling for how to present error messages nicely.
|
Options can be variadic (greedy). Use ...
instead of a number to take every value following the option.
# -i|--ignore [value]...
ignored = lethargy.take_opt(['i', 'ignore'], ...)
for pattern in ignored:
print(pattern)
$ python example.py --ignore .git .vscode .DS_Store
.git
.vscode
.DS_Store
$ python example.py --ignore experiments
experiments
$ python example.py
$ ▏
💡 | Variadic options are greedy and will take every argument that follows them, including values that look like other options. You should always try and take these last (after taking the fixed-count options). |
Unpack multiple values into separate variables. If the option wasn't present, they'll all be None
.
# --name <value> <value> <value>
first, middle, last = lethargy.take_opt('name', 3)
print(f'Hi, {first}!')
$ python example.py --name Dwight Kurt Schrute
Hi, Dwight!
$ python example.py
Hi, None!
Set sensible defaults. Use the or
keyword and your default value(s).
# -h|--set-hours <value> <value>
start, finish = lethargy.take_opt(['set hours', 'h'], 2) or '9AM', '5PM'
print(f'Employee now works {start} to {finish}')
$ python example.py
Employee works 9AM to 5PM
$ python example.py --set-hours 8AM 4PM
Employee works 8AM to 4PM
💡 |
You should use defaults unless your option explicitly sets required=True . You'll thank yourself when you need to change something 6 months from now!
|
Convert your option's values. Use a function or type as the final argument. Defaults aren't converted.
# --date-ymd <int> <int> <int>
y, m, d = lethargy.take_opt('date ymd', 3, int) or 1970, 1, 1
from datetime import datetime
date = datetime(y, m, d)
delta = datetime.today() - date
print(f'it has been {delta.days} days since {date}')
$ python example.py --date-ymd 1999 10 9
it has been 7500 days since 1999-10-09 00:00:00
Give clear error messages. Lethargy makes this easy with simple context managers.
with lethargy.show_errors():
x, y = lethargy.take_opt(['p', 'pos'], 2, int) or 0, 0
$ python example.py --pos 20
Expected 2 arguments for option '-p|--pos <int> <int>', but found 1 ('20')
$ python example.py -p 20, 0
Option '-p|--pos <int> <int>' received an invalid value: '20,'
Use fail()
to exit with status code 1. You can optionally give it a message.
Lethargy provides two context managers for easier error handling. These share similar behaviour, but are separate to make intent clearer.
with
lethargy.expect(*errors: Exception, reason: Optional[str] = None)
When one of the given exceptions is raised, it calls fail()
to exit and print the message.
with
lethargy.show_errors()
Same behaviour as expect
, but specifically for handling options. Exceptions raised during value conversions will also be caught by show_errors()
, with a useful message.
💡 |
You can access the original exception that caused a TransformError with the __cause__ attribute (see the Python Built-in Exceptions docs).
|
Any and all contributions are absolutely welcome. Feel free to open an issue or just jump straight to a PR. Let's discuss and make this the best it can be! 😄
Lethargy is released under the MIT license.
FAQs
A minimal library to make your option-parsing easier.
We found that lethargy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.