Safely using destructors in Python (2009): https://eli.thegreenplace.net/2009/06/12/safely-using-destructors-in-python/
Using dask's multithreaded scheduler to speedup download of multiple files from s3: https://www.reddit.com/r/Python/comments/actnei/using_dasks_multithreaded_scheduler_to_speedup/
reddit
r/Python - Using dask's multithreaded scheduler to speedup download of multiple files from s3
1 vote and 0 comments so far on Reddit
I've created a library to to build pretty command line user prompts ✨. Thoughts/criticism appreciated: https://www.reddit.com/r/Python/comments/acu4uc/ive_created_a_library_to_to_build_pretty_command/
reddit
r/Python - I've created a library to to build pretty command line user prompts ✨. Thoughts/criticism appreciated
62 votes and 13 comments so far on Reddit
Top 10 Highest Grossing Hollywood Films (1975-2018) : A complete data viz project with a detailed overview of how Hollywood films fared at box office since 1975 and charts important parameters, like IMDb ratings and total worldwide gross, and analysed via statistics.: https://www.reddit.com/r/Python/comments/acukcz/top_10_highest_grossing_hollywood_films_19752018/
reddit
r/Python - Top 10 Highest Grossing Hollywood Films (1975-2018) : A complete data viz project with a detailed overview of how Hollywood…
1 vote and 0 comments so far on Reddit
My first open source python project - Permon, an extensible performance monitor: https://www.reddit.com/r/Python/comments/acu727/my_first_open_source_python_project_permon_an/
reddit
r/Python - My first open source python project - Permon, an extensible performance monitor
1 vote and 0 comments so far on Reddit
lambda vs. operator.attrgetter('xxx') as sort key function in Python: https://stackoverflow.com/questions/2705104/lambda-vs-operator-attrgetterxxx-as-sort-key-function-in-python
Stack Overflow
lambda vs. operator.attrgetter('xxx') as sort key function in Python
I am looking at some code that has a lot of sort calls using comparison functions, and it seems like it should be using key functions.
If you were to change seq.sort(lambda x,y: cmp(x.xxx, y.xxx)),
If you were to change seq.sort(lambda x,y: cmp(x.xxx, y.xxx)),
Concurrent access to DB when using Postgress, Celery and RabbitMQ- is it handled implicitly?: https://www.reddit.com/r/Python/comments/acv8ci/concurrent_access_to_db_when_using_postgress/
reddit
r/Python - Concurrent access to DB when using Postgress, Celery and RabbitMQ- is it handled implicitly?
1 vote and 0 comments so far on Reddit
PyCM 1.8 released: Machine learning library for confusion matrix statistical analysis: https://www.reddit.com/r/Python/comments/actrzv/pycm_18_released_machine_learning_library_for/
reddit
r/Python - PyCM 1.8 released: Machine learning library for confusion matrix statistical analysis
1 vote and 0 comments so far on Reddit
Custom Exception classes: <exception str() failed>: https://www.reddit.com/r/Python/comments/acvgvz/custom_exception_classes_exception_str_failed/
reddit
r/Python - Custom Exception classes:
1 vote and 0 comments so far on Reddit
argparse: Sub-parser "ambiguous option" error: https://www.reddit.com/r/Python/comments/acvorz/argparse_subparser_ambiguous_option_error/
reddit
r/Python - argparse: Sub-parser "ambiguous option" error
1 vote and 0 comments so far on Reddit
Easy ocr in python souce code link in video description: https://www.reddit.com/r/Python/comments/acvwy3/easy_ocr_in_python_souce_code_link_in_video/
reddit
r/Python - Easy ocr in python souce code link in video description
1 vote and 0 comments so far on Reddit
What’s the consensus on the quality of these books? The pen testing book interests me.: https://www.reddit.com/r/Python/comments/acwapq/whats_the_consensus_on_the_quality_of_these_books/
reddit
r/Python - What’s the consensus on the quality of these books? The pen testing book interests me.
1 vote and 0 comments so far on Reddit
Beginner Resources for Python as a DB Management and Data Analysis Tool?: https://www.reddit.com/r/Python/comments/acw71a/beginner_resources_for_python_as_a_db_management/
reddit
r/Python - Beginner Resources for Python as a DB Management and Data Analysis Tool?
1 vote and 0 comments so far on Reddit
Moving a Sprite towards player in Pygame (using pygame vectors): https://stackoverflow.com/questions/53987323/moving-a-sprite-towards-player-in-pygame-using-pygame-vectors
Stack Overflow
Moving a Sprite towards player in Pygame (using pygame vectors)
I'm making a game and an opponent is supposed to shoot bullets at the player.
I want the bullets to go in the direction of where the player is when the bullet shoots (the player may move but the b...
I want the bullets to go in the direction of where the player is when the bullet shoots (the player may move but the b...