Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
3 votes
1 answer
380 views

Delete older EBS Volume snapshots except few with certain tags using Python, Lambda

I am learning Python and managed to accomplish the above. But my script doesn't seem optimal. Could someone help to take a review and suggest for betterment? ...
Vidarbha Yalagadde's user avatar
4 votes
2 answers
144 views

Extension on Python Lambda capability

I asked for assistance creating a Python Lambda function capable of assignments and multi-line lambdas in this post. Following @l0b0's suggestions, I realized that it was better constructed as a ...
John 9631's user avatar
  • 205
5 votes
1 answer
99 views

A less limited Python Lambda

I've often wanted an anonymous function that would do more than return the result of an expression. So I developed one around the exec function that supports assignments and multiline lambdas but ...
John 9631's user avatar
  • 205
2 votes
0 answers
181 views

Handling IndexError using lambda function within scrapy

I've written a script using python's scrapy library to parse some fields from craigslist. The spider I've created here is way normal than what usually gets considered ideal to be reviewed. However, I'...
SIM's user avatar
  • 2,501
3 votes
3 answers
489 views

Quicksort implementation using filter() to perform partitioning

...
lifebalance's user avatar