pyter

Results 25 comments of pyter
trafficstars

From https://docs.aiohttp.org/en/stable/client_advanced.html?highlight=proxy#proxy-support: > Contrary to the requests library, it won’t read environment variables by default. But you can do so by passing trust_env=True into [aiohttp.ClientSession](https://docs.aiohttp.org/en/stable/client_reference.html#aiohttp.ClientSession) constructor for extracting proxy configuration...

@fishy the return type of the function should now always be `str` in Python 2 and 3, so it is consistent to the current behavior in Python2 while also fixing...

You're right, `ensure_str` it is. Python 3: ``` >>> cr = b"abc" >>> "Basic " + six.ensure_str(cr) 'Basic abc' ``` Python 2: ``` >>> cr = "abc" >>> "Basic "...

I mean, you could also "automagically" detect it from the date format string: 1. If the day (%d) comes before the month and the year goes last -> day_first ==...

Hey @wren While #694 fixed part of the issue, it still doesn't work when composing entries. This issue was meant as a more broad feature request for full support of...

Using dateutil.parser to parse the dates from the saved journal breaks a lot of custom date formats (i.e. the German format %d.%m.%Y) because it will parse them incorrectly (i.e. the...

> This policy severely decreases the project's chances to improve in the future. No, it makes sure only issues people care about stay open, so that maintainers and other contributors...

Upgrading fails for me too. After some debugging I noticed that the new Journal class seems to completely ignore the config["dateformat"] and thus parses the old dates wrong. That's why...

pyfzf hasn't been updated in 2 years. I'd avoid using it. There's a lot of interactive prompt packages out there, but I'd be careful jumping on one too quickly. A...

How about instead of putting that in the init, add a `fit_from_directory` and `fit_from_dataframe`, similar to the flows?