Python post-Guido: https://lwn.net/SubscriberLink/759756/931b0f4617723184/
lwn.net
Python post-Guido
The recent announcement by Guido van Rossum
that he was stepping away from
his "benevolent dictator for life" (BDFL) role for Python was met with some
surprise, but not much shock, at least in the core-developer community.
Van Rossum has been telegraphing…
that he was stepping away from
his "benevolent dictator for life" (BDFL) role for Python was met with some
surprise, but not much shock, at least in the core-developer community.
Van Rossum has been telegraphing…
Flask application cannot be exposed on droplet: https://stackoverflow.com/questions/51199475/flask-application-cannot-be-exposed-on-droplet
Stack Overflow
Flask application cannot be exposed on droplet
I'm deploying a flask server to a Digital Ocean droplet.
from flask import Flask
app = Flask(__name__)
@app.route("/a/<string:b>")
def deploy(b):
return "Response"
Using the following
from flask import Flask
app = Flask(__name__)
@app.route("/a/<string:b>")
def deploy(b):
return "Response"
Using the following
The Happy Medium: Distinguished Service Award Winner Tim Peters: https://www.reddit.com/r/Python/comments/9059lg/the_happy_medium_distinguished_service_award/
reddit
r/Python - The Happy Medium: Distinguished Service Award Winner Tim Peters
2 votes and 0 comments so far on Reddit
A Beginners Guide to Kaggle Competitions – Cambridge Spark: https://www.reddit.com/r/Python/comments/9060qc/a_beginners_guide_to_kaggle_competitions/
reddit
r/Python - A Beginners Guide to Kaggle Competitions – Cambridge Spark
1 vote and 0 comments so far on Reddit
TOML Kit - A v0.5.0-compliant, style-preserving TOML library for Python: https://www.reddit.com/r/Python/comments/906ivo/toml_kit_a_v050compliant_stylepreserving_toml/
reddit
r/Python - TOML Kit - A v0.5.0-compliant, style-preserving TOML library for Python
1 vote and 1 comment so far on Reddit
Python Weekly - Issue 356 : https://mailchi.mp/pythonweekly/python-weekly-issue-356
How did you migrate your big codebase from 2 to 3?: https://www.reddit.com/r/Python/comments/906qj1/how_did_you_migrate_your_big_codebase_from_2_to_3/
reddit
r/Python - How did you migrate your big codebase from 2 to 3?
2 votes and 1 comment so far on Reddit
Best data structure for project with large amounts of data?: https://www.reddit.com/r/Python/comments/9079s1/best_data_structure_for_project_with_large/
reddit
r/Python - Best data structure for project with large amounts of data?
1 vote and 2 comments so far on Reddit
Unpacking NumPy and Pandas: The Book Is Coming Soon!: https://www.reddit.com/r/Python/comments/9083mz/unpacking_numpy_and_pandas_the_book_is_coming_soon/
reddit
r/Python - Unpacking NumPy and Pandas: The Book Is Coming Soon!
0 votes and 0 comments so far on Reddit
Making a Python Chatbot accessible to be evaluated?: https://www.reddit.com/r/Python/comments/9084gu/making_a_python_chatbot_accessible_to_be_evaluated/
reddit
r/Python - Making a Python Chatbot accessible to be evaluated?
1 vote and 2 comments so far on Reddit
Event Triggered Customer Segmentation with Wallaroo: https://www.reddit.com/r/Python/comments/90755k/event_triggered_customer_segmentation_with/
reddit
r/Python - Event Triggered Customer Segmentation with Wallaroo
10 votes and 1 comment so far on Reddit
2-Dimensional Motion capture with identification of key joints: https://www.reddit.com/r/Python/comments/908pf4/2dimensional_motion_capture_with_identification/
reddit
r/Python - 2-Dimensional Motion capture with identification of key joints
1 vote and 0 comments so far on Reddit
Getting data from hidden html (popup) using BS4: https://stackoverflow.com/questions/51382162/getting-data-from-hidden-html-popup-using-bs4
Stack Overflow
Getting data from hidden html (popup) using BS4
I am trying to scrape the name of a link in a popup in wikipedia. So when you hover a link in wikipedia, it brings up a little snippet from the intro to that link. I need to scrape that information...