Skip to content

jmgilman/beancount-stubs

Repository files navigation

beancount-stubs

A package containing stub files for the beancount package.

Usage

Install the package:

$> pip install beancount-stubs

Run mypy:

$> mypy .

The mypy binary will automatically detect the stubs included in the installed package and use them when asserting against the beancount package. Note that many of the subpackages in the beancount package do not have stubs and mypy will complain about the missing stubs. To disable this error on an unsupported package, use the following syntax:

from beancount.ops import validation  # type: ignore

Support

The following subpackages/modules are currently supported:

  • beancount.loader
  • beancount.core.*
  • beancount.query.numberify
  • beancount.query.query
  • beancount.query.query_compile
  • beancount.query.query_execute

Contributing

Check out the issues for items needing attention or submit your own and then:

  1. Fork the repo
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

About

Stub files for the beancount package

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages