Search Results

1
vote
2answers
228 views

HTTPS log in with urllib2

I currently have a little script that downloads a webpage and extracta somw data I'm interested in. Nothing fancy. Currently I'm downloading the page like so: import command …
4
votes

Lambda function for classes in python?

There's no need for lambda at all. lambda is just syntatic sugar to define a function and use it at the same time. Just like any lambda call can be replaced with an explicit def, we can solve your …