Tips and tricks from my Telegram-channel @pythonetc, December 2018: https://www.reddit.com/r/Python/comments/ahwikv/tips_and_tricks_from_my_telegramchannel_pythonetc/
reddit
r/Python - Tips and tricks from my Telegram-channel @pythonetc, December 2018
1 vote and 0 comments so far on Reddit
How much time you spend on programming related activities daily?: https://www.reddit.com/r/Python/comments/ahwpoe/how_much_time_you_spend_on_programming_related/
reddit
r/Python - How much time you spend on programming related activities daily?
0 votes and 0 comments so far on Reddit
Extract selected files from a large zip file using python: https://www.reddit.com/r/Python/comments/ahwv6u/extract_selected_files_from_a_large_zip_file/
reddit
r/Python - Extract selected files from a large zip file using python
3 votes and 0 comments so far on Reddit
Hi! I want to write a websocket server using python, but I don’t know how. I didn’t find a lot of useful information in google, so I’m wondering are there any guides/videos that explain how to do it?: https://www.reddit.com/r/Python/comments/ahx56t/hi_i_want_to_write_a_websocket_server_using/
reddit
r/Python - Hi! I want to write a websocket server using python, but I don’t know how. I didn’t find a lot of useful information…
0 votes and 6 comments so far on Reddit
Created a web app to 1-click edit your text in input with different functions: https://www.reddit.com/r/Python/comments/ahxeek/created_a_web_app_to_1click_edit_your_text_in/
reddit
r/Python - Created a web app to 1-click edit your text in input with different functions
0 votes and 2 comments so far on Reddit
The Python Master Class Bundle - This 10-Course, 58-Hour Bundle Is Your A-Z Guide to Learning One of Today's Most Foundational Coding Languages: https://www.reddit.com/r/Python/comments/ahyf1c/the_python_master_class_bundle_this_10course/
reddit
r/Python - The Python Master Class Bundle - This 10-Course, 58-Hour Bundle Is Your A-Z Guide to Learning One of Today's Most Foundational…
1 vote and 0 comments so far on Reddit
Looking for a place to start with accreditation, would this course from edx.org be good?: https://www.reddit.com/r/Python/comments/ahykqo/looking_for_a_place_to_start_with_accreditation/
reddit
r/Python - Looking for a place to start with accreditation, would this course from edx.org be good?
1 vote and 0 comments so far on Reddit
Creating a variable in a Pandas Data frame that is 10^ Variable: https://www.reddit.com/r/Python/comments/ahz5us/creating_a_variable_in_a_pandas_data_frame_that/
reddit
r/Python - Creating a variable in a Pandas Data frame that is 10^ Variable
1 vote and 0 comments so far on Reddit
[Blog post] Multiple heads in alembic migrations - what to do: https://www.reddit.com/r/Python/comments/ahzf82/blog_post_multiple_heads_in_alembic_migrations/
reddit
r/Python - [Blog post] Multiple heads in alembic migrations - what to do
1 vote and 0 comments so far on Reddit
Show HN: Drymail – A minimalist but complete email framework for Python: https://github.com/SkullTech/drymail
GitHub
GitHub - SkullTech/drymail: Makes sending emails easy and DRY — For Python 3.
Makes sending emails easy and DRY — For Python 3. Contribute to SkullTech/drymail development by creating an account on GitHub.
What is the difference between MLP implementation from scratch and in PyTorch?: https://stackoverflow.com/questions/54247143/what-is-the-difference-between-mlp-implementation-from-scratch-and-in-pytorch
Stack Overflow
What is the difference between MLP implementation from scratch and in PyTorch?
Following up the question from How to update the learning rate in a two layered multi-layered perceptron?
Given the XOR problem:
X = xor_input = np.array([[0,0], [0,1], [1,0], [1,1]])
Y = xor_out...
Given the XOR problem:
X = xor_input = np.array([[0,0], [0,1], [1,0], [1,1]])
Y = xor_out...
I’m learning Python. Having trouble using my source code in Terminal. The prompt appears, but it is only accepting numbers instead of numbers. Any ideas?: https://www.reddit.com/r/Python/comments/ahzx6w/im_learning_python_having_trouble_using_my_source/
reddit
r/Python - I’m learning Python. Having trouble using my source code in Terminal. The prompt appears, but it is only accepting numbers…
1 vote and 3 comments so far on Reddit
Best event based networking library for python?: https://www.reddit.com/r/Python/comments/ahzs34/best_event_based_networking_library_for_python/
reddit
r/Python - Best event based networking library for python?
1 vote and 1 comment so far on Reddit
Using my python skills I built a bot that automatically swipes right on Dating apps. Modern Problems Requires Modern Solutions: https://www.reddit.com/r/Python/comments/ai0e72/using_my_python_skills_i_built_a_bot_that/
reddit
Using my python skills I built a bot that automatically swipes...
Posted in r/Python by u/tycooperaow • 323 points and 78 comments
Running flask as package in production: https://stackoverflow.com/questions/47757167/running-flask-as-package-in-production
Stack Overflow
Running flask as package in production
I am trying to deploy my flask app. Usually I would have an app.py and put all code in it.
app.py
templates/
|
|--index.html
for my really small projects. But then I have a slightly larger app and
app.py
templates/
|
|--index.html
for my really small projects. But then I have a slightly larger app and