[ANNOUNCE] reqman,a postman killer ;-): https://www.reddit.com/r/Python/comments/7v1djq/announce_reqmana_postman_killer/
reddit
[ANNOUNCE] reqman,a postman killer ;-) • r/Python
Just a post to present you : reqman ( https://github.com/manatlan/reqman ). It's like postman, with no gui ;-). All is in yaml files (easily...
I'm trying to build an SMS survey with branch responses. Would it be wetter to work with an existing solution, or roll my own keyword engine?: https://www.reddit.com/r/Python/comments/7v1f8q/im_trying_to_build_an_sms_survey_with_branch/
reddit
I'm trying to build an SMS survey with branch... • r/Python
I'm mostly doing this to learn, but if it turns into a viable business strategy, then I'll pursue it.
Best way to get started with Python: https://www.reddit.com/r/Python/comments/7uysdv/best_way_to_get_started_with_python/
reddit
Best way to get started with Python • r/Python
Hi, I'd like to learn python. I currently know vb.net, html and css (not great languages, but I am familiar programming atleast). I also have...
REST API for scrapping web page?: https://www.reddit.com/r/Python/comments/7v1ugj/rest_api_for_scrapping_web_page/
reddit
REST API for scrapping web page? • r/Python
Hi I've built a REST API using flask that scrapes a website and returns the the data to the user. It takes around 1.2-2.5 seconds to do this for a...
I need big time help with regex and pattern detection: https://www.reddit.com/r/Python/comments/7v1v7f/i_need_big_time_help_with_regex_and_pattern/
reddit
I need big time help with regex and pattern detection • r/Python
So I have the following code that I tried inserting into Asciitable.read which didn't work, not sure why... but what I need to do is use...
How to monitor python's concurrent.futures.ProcessPoolExecutor?: https://stackoverflow.com/questions/48572648/how-to-monitor-pythons-concurrent-futures-processpoolexecutor
Stack Overflow
How to monitor python's concurrent.futures.ProcessPoolExecutor?
We are using the ProcessPoolExecutor from concurrent.futures in a service that asynchronously receives requests, and does the actual, synchronous processing in the process pool.
Once we ran into the
Once we ran into the
Where can I get improvement suggestions?: https://www.reddit.com/r/Python/comments/7v2uij/where_can_i_get_improvement_suggestions/
reddit
Where can I get improvement suggestions? • r/Python
Is there a site that I can post my code and people will offer suggestions on how to improve? I am relatively new and I am probably writing code...
Why do people claim that mypy is ready?: https://www.reddit.com/r/Python/comments/7v2zqd/why_do_people_claim_that_mypy_is_ready/
reddit
Why do people claim that mypy is ready? • r/Python
I checked out mypy, and it did not catch this relatively basic error: from typing import Any def f(x : int) -> None: assert...
How to upgrade python from 3.5.2 to 3.6.4 on Ubuntu 16.04?: https://www.reddit.com/r/Python/comments/7v3amy/how_to_upgrade_python_from_352_to_364_on_ubuntu/
reddit
How to upgrade python from 3.5.2 to 3.6.4 on Ubuntu 16.04? • r/Python
1 points and 2 comments so far on reddit
Can we talk dataclasses and numerical python??: https://www.reddit.com/r/Python/comments/7v3gyg/can_we_talk_dataclasses_and_numerical_python/
reddit
Can we talk dataclasses and numerical python?? • r/Python
Wanted to start a discussion here about dataclasses, and where/how they might become integrated into more numerical applications. On the dev...
Python Swift Bridge: https://stackoverflow.com/questions/48242870/python-swift-bridge
Stackoverflow
Python Swift Bridge
Are there any Python Swift bridges so that you can use python in swift?
If I have to create a program to more or less bridge, how would I do it?
As @Alexander said, I should use the PyObjC to bri...
If I have to create a program to more or less bridge, how would I do it?
As @Alexander said, I should use the PyObjC to bri...
Creating a download manager in Python ?: https://www.reddit.com/r/Python/comments/7v3p19/creating_a_download_manager_in_python/
reddit
Creating a download manager in Python ? • r/Python
I have been using JDownloader for downloading and although it is pretty useful, it lacks some features (queues, better download grouping etc.) I...
How would I print out key value pairs in a dictionary?: https://www.reddit.com/r/Python/comments/7v4ft7/how_would_i_print_out_key_value_pairs_in_a/
reddit
How would I print out key value pairs in a dictionary? • r/Python
This is what I have so far. Thanks. def dictComp(): userInput = input("Which number would you like to cube up to? ") return {x...
Video classification using many to many LSTM in TensorFlow: https://stackoverflow.com/questions/48570146/video-classification-using-many-to-many-lstm-in-tensorflow
Stack Overflow
Video classification using many to many LSTM in TensorFlow
I have to build a binary classifier to predict whether the input video contains an action or not.
The input to the model will be of shape: [batch, frames, height, width, channel]
Here, batch is num...
The input to the model will be of shape: [batch, frames, height, width, channel]
Here, batch is num...
How can I call a function on an instance?: https://www.reddit.com/r/Python/comments/7v4xzx/how_can_i_call_a_function_on_an_instance/
reddit
How can I call a function on an instance? • r/Python
I am very new to Python. I want to be able to grab an instance's attribute and edit it. This is what I have so far but it throws an error "User...