Rom DuPlain

Results 33 comments of Rom DuPlain

Good point. The configuration for this could point to paths for the Python executables within the virtualenvs, as to decouple virtualenv management from the config itself. ``` path/to/virtualenv/bin/python ```

Ah. I'm thinking about something similar to `virtualenv -p path/to/python`.

That makes sense. It'd be great to at least discuss in docs how to configure this. It might be as simple as making sure the `$PATH` is correct in finding...

I prefer `streamparse.python.path` or `streamparse.python.executable` to allow referencing any Python implementation. If we do want `streamparse.python.version`, then it would help to expose the mapping of versions to command-line invocation to...

Sounds interesting. However we do it, I'm advocating that we support "Bring Your Own Python." If we do `streamparse.python.version`, a user will look for a way to extend the mapping...

Just to weigh in: a callback is interesting, and +1 to having a single callback that gets intuitive parameters for whether the message was successful.

Current discussion on #pocoo irc: no harm in making it iterable, but at that point you might just use .offset().limit() on the SQLAlchemy query interface. If Pagination is used generally,...

Somehow I don't see a notification for this issue. Apologies for letting this lapse. This is good feedback. Indeed, jeni provides dependency injection and inversion of control for Python. I'll...

Archiving this project as no further development is planned.

Hello! If you run the example code in [the README](https://github.com/janet-lang/argparse/blob/9f572fec6cdd159c65cd88e13a8d65459ba111f7/README.md): ```janet # ... "thing" {:kind :option :help "Some option?" :default "123"}] ``` ... the usage includes: ``` --thing VALUE=123 Some...