Chris Mildebrandt

Results 47 comments of Chris Mildebrandt

Thanks for your PR. Let me think a bit about the best way to handle this. Maybe instead of passing the encoding through several layers of functions, we could introduce...

I'm a little hesitant to add support for environment variables in the schema. We'd like to keep the schema as static as possible. Feel free to create your own validator,...

That's correct, there is no current way to load custom validators from the command line. We would be open to having that feature, and it has been brought up before:...

That's interesting. We recently patched a hole that allowed arbitrary code to be executed via schema loading and need to be careful around this area: https://github.com/23andMe/Yamale/pull/165 If we were to...

Go for it! :) Looking at the above, how will you determine what is loadable code and what isn't? I don't mind having a reserved key to determine this....something like...

Thanks for your interest in Yamale. I agree, the line number would be helpful. To be complete, we'd probably want to update the error class to hold the line numbers...

No, we'll leave it open as a reminder that people would like to have a line number in the output.

@mechie That would be very welcome....it seems there is interest and we haven't been working towards this feature internally.

Thanks for your interest in Yamale. For now, you should be able to do this: ``` yamale.make_data(content=sys.stdin.read()) ``` Supporting stdin will need a bit more thought since we've renamed the...

Thanks for the suggestion! I think this would be a good addition. We do accept pull requests if you'd like to implement this feature.