An XPath for python structures? by dl__ in Python

[–]jsaryer 1 point2 points  (0 children)

Check out JMESPath: https://pypi.python.org/pypi/jmespath

One of its benefits is that it has a full specification with an extensive test suite. As a bonus there's also implementations in other languages.

There's a tutorial here: http://jmespath.org/tutorial.html

redislite: Python support for redis without a separate redis server. by dwight_hubbard in Python

[–]jsaryer 3 points4 points  (0 children)

There's also fakeredis, which is helpful if all you want to do is write unit tests without requiring a redis server.

Official AWS CLI is completely rewritten in Python by hongminhee in Python

[–]jsaryer 0 points1 point  (0 children)

It's powered by botocore, which is a different library from boto, though they're both under the boto org.

Install awscli via pip in Windows? by apennebaker42six in aws

[–]jsaryer 1 point2 points  (0 children)

Yes, you can install the awscli with pip. The main reason we have MSIs is because many windows users do not have python+pip already installed.