O'Reilly offers "Functional Programming in Python" by David Mertz as free eBook.: https://www.reddit.com/r/Python/comments/553s3g/oreilly_offers_functional_programming_in_python/
reddit
O'Reilly offers "Functional Programming in Python" by... • /r/Python
837 points and 69 comments so far on reddit
Getting Song Lyrics from Genius using their API Scraping: https://www.reddit.com/r/Python/comments/554nve/getting_song_lyrics_from_genius_using_their_api/
reddit
Getting Song Lyrics from Genius using their API + Scraping • /r/Python
1 points and 0 comments so far on reddit
serialization and deserialization of python objects-part-2: https://www.reddit.com/r/Python/comments/554ovi/serialization_and_deserialization_of_python/
reddit
serialization and deserialization of python objects-part-2 • /r/Python
1 points and 0 comments so far on reddit
Do you have any favorite functions for data exploration ?: https://www.reddit.com/r/Python/comments/554qqf/do_you_have_any_favorite_functions_for_data/
reddit
Do you have any favorite functions for data exploration ? • /r/Python
I am into machine learning and a very impotant part is getting to know your data. I have been searching for functions for creating histograms...
Help a fellow python dev. I need to look for a new job asap, but I can’t risk my boss or anyone finding out.: https://www.reddit.com/r/Python/comments/554x81/help_a_fellow_python_dev_i_need_to_look_for_a_new/
reddit
Help a fellow python dev. I need to look for a new job... • /r/Python
Bummed: Found out that the startup where I’ve been working for almost a year is on the verge of folding (can’t quit, long story).
How to import other scripts into a script: https://www.reddit.com/r/Python/comments/5551en/how_to_import_other_scripts_into_a_script/
reddit
How to import other scripts into a script • /r/Python
I have two scripts: python.py perl.prl Python.py is the main script that will later call perl.prl I want to distribute python.py to all...
An overview of Continuous Integration for Python projects: https://www.reddit.com/r/Python/comments/555c4j/an_overview_of_continuous_integration_for_python/
reddit
An overview of Continuous Integration for Python projects • /r/Python
2 points and 0 comments so far on reddit
What is the most "pythonic" way to iterate over a list in chunks?: http://stackoverflow.com/questions/434287/what-is-the-most-pythonic-way-to-iterate-over-a-list-in-chunks
Stack Overflow
How to iterate over a list in chunks
I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it passed in as a l...
Getting "TypeError: 'NoneType' object is not callable" w/o A Specific Line: https://www.reddit.com/r/Python/comments/55610m/getting_typeerror_nonetype_object_is_not_callable/
reddit
Getting "TypeError: 'NoneType' object is not callable"... • /r/Python
Hi! When I run my script: from selenium import webdriver # from selenium.webdriver.firefox.firefox_binary import FirefoxBinary from...
social network broadcast message algorithm improvement for advice: http://stackoverflow.com/questions/39682141/social-network-broadcast-message-algorithm-improvement-for-advice
Stackoverflow
social network broadcast message algorithm improvement for advice
Working on below problem and post problem and my current code. My idea is always iterate from minimal in-degree node, which has not been visited before. Then based on this node to do a BFS. I am no...
How would I be able to create a double dictionary class?: https://www.reddit.com/r/Python/comments/556n2z/how_would_i_be_able_to_create_a_double_dictionary/
reddit
How would I be able to create a double dictionary class? • /r/Python
I want to create a class that acts as a dictionary with one key and two associated values. I don't know if this is the best idea but I thought of...
How to read whether or not a socket buffer is empty?: https://www.reddit.com/r/Python/comments/556odf/how_to_read_whether_or_not_a_socket_buffer_is/
reddit
How to read whether or not a socket buffer is empty? • /r/Python
I need one python script to send datagrams to another using UDP sockets. The basic functionality is up and running, but I have the problem that I...
Scraping ticket prices, event names, tickets remaining from Stubhub?: https://www.reddit.com/r/Python/comments/556p3h/scraping_ticket_prices_event_names_tickets/
reddit
Scraping ticket prices, event names, tickets remaining... • /r/Python
Does anyone know a way that I can take every event within a given day, nationwide, in a given category (concerts, sports, theatre), with a given...
Write a function or loop to add multiple audio files in python: https://www.reddit.com/r/Python/comments/556qhe/write_a_function_or_loop_to_add_multiple_audio/
reddit
Write a function or loop to add multiple audio files... • /r/Python
i am using pydub to merge multiple audio files. >sound1 = AudioSegment.from_wav("path/to/file1.wav") >sound2 =...