Iterating / advancing an iteration?: https://www.reddit.com/r/Python/comments/5kzhhf/iterating_advancing_an_iteration/
reddit
Iterating / advancing an iteration? • /r/Python
Environment is Python 2.7. I have a text string, `s` I am iterating through the string and doing... stuff. Parsing. Basically this: for c...
What are best (or at least good) practices for maintaining project metadata?: https://www.reddit.com/r/Python/comments/5kzk7l/what_are_best_or_at_least_good_practices_for/
reddit
What are best (or at least good) practices for... • /r/Python
I've seen a lot of different patterns for keeping the project metadata. I'll use project version as the primary concern for this discussion I've...
Be Careful with Python's New-Style String Format: https://www.reddit.com/r/Python/comments/5kzhnn/be_careful_with_pythons_newstyle_string_format/
reddit
Be Careful with Python's New-Style String Format • r/Python
84 points and 35 comments so far on reddit
Script that sends you an email with your new IP address when It changes.: https://www.reddit.com/r/Python/comments/5kzpec/script_that_sends_you_an_email_with_your_new_ip/
reddit
Script that sends you an email with your new IP... • /r/Python
2 points and 1 comments so far on reddit
The Iterator Protocol: How for Loops Work in Python: https://www.reddit.com/r/Python/comments/5kzopj/the_iterator_protocol_how_for_loops_work_in_python/
reddit
The Iterator Protocol: How for Loops Work in Python • /r/Python
33 points and 0 comments so far on reddit
So...I should learn Python, but...: https://www.reddit.com/r/Python/comments/5kzyb1/soi_should_learn_python_but/
reddit
So...I should learn Python, but... • /r/Python
I have no real use for it right now. I don't work in a job that requires any programming, but it seems potential employers in my field would like...
Python library to add text to video?: https://www.reddit.com/r/Python/comments/5l0dyq/python_library_to_add_text_to_video/
reddit
Python library to add text to video? • /r/Python
I'm really struggling to find a library that can help me generate videos with formatted-text over it. The NowThis news channel does a great job...
In how few lines of code can you create different sorting algorithms?: https://www.reddit.com/r/Python/comments/5l0im7/in_how_few_lines_of_code_can_you_create_different/
reddit
In how few lines of code can you create different... • /r/Python
Just curious! How few lines of code can you create sorting algorithms like bubble-sort for example. ( Sorted() and .sort() don't count!)
I wrote a subreddit image download utility in python: https://www.reddit.com/r/Python/comments/5l0m3h/i_wrote_a_subreddit_image_download_utility_in/
reddit
I wrote a subreddit image download utility in python • /r/Python
0 points and 0 comments so far on reddit
Which book after Python Crash Course: https://www.reddit.com/r/Python/comments/5l0xp4/which_book_after_python_crash_course/
reddit
Which book after Python Crash Course • /r/Python
Hi, I'm wondering which book to start next after Python Crash Course. Where my aim for further python Dev is in webscraping, Data Mining. I want...
A really nice Pandas cheat sheet, made by the Pandas guys themselves: https://www.reddit.com/r/Python/comments/5l0tsd/a_really_nice_pandas_cheat_sheet_made_by_the/
reddit
A really nice Pandas cheat sheet, made by the Pandas... • /r/Python
6 points and 0 comments so far on reddit
Question about running Django site: https://www.reddit.com/r/Python/comments/5l1czg/question_about_running_django_site/
reddit
Question about running Django site • /r/Python
Howdy reddit. I'm an experienced developer, but I've never touched Django before. A friend asked me to migrate a Django site to a new host as his...
pure python web server that supports python "pages"?: https://www.reddit.com/r/Python/comments/5l1d8q/pure_python_web_server_that_supports_python_pages/
reddit
pure python web server that supports python "pages"? • /r/Python
'sup /r/python!? I'm looking for a python web server that supports executing python code from pages its serving up... I've done the usual...
Make a gofundme page to erect a statue of John Cleese in Silicon ValleY?: https://www.reddit.com/r/Python/comments/5l1eyr/make_a_gofundme_page_to_erect_a_statue_of_john/
reddit
Make a gofundme page to erect a statue of John Cleese... • /r/Python
Title says it all. John Cleese is an attribute of the Monty Python class. Monty Python is a method for the __name___ing of the Eponymous...
Small lib for logging objects in human-readable form.: https://www.reddit.com/r/Python/comments/5l2huz/small_lib_for_logging_objects_in_humanreadable/
reddit
Small lib for logging objects in human-readable form. • /r/Python
1 points and 0 comments so far on reddit
Add module from RPM as a requirement: http://stackoverflow.com/questions/41359091/add-module-from-rpm-as-a-requirement
Stackoverflow
Add module from RPM as a requirement
So I have this project with many dependencies that are being installed from pip and are documented in requirements.txt
I need to add another dependency now that doesn't exist on pip and I have it ...
I need to add another dependency now that doesn't exist on pip and I have it ...
Why is always a with statement needed for working with files?: https://www.reddit.com/r/Python/comments/5l2ld9/why_is_always_a_with_statement_needed_for_working/
reddit
Why is always a with statement needed for working with... • /r/Python
I have a very basic query about python. I've seen most examples use the `with` statement to read from or write to a file, something like...