Help for instagram automation tool: https://www.reddit.com/r/Python/comments/7yh7ro/help_for_instagram_automation_tool/
reddit
Help for instagram automation tool • r/Python
Hi, i'm trying to create a telegram bot that control if all the members of my telegram like-exchanging group respect the rules when post their...
Is it possible to create a steady database with python?: https://www.reddit.com/r/Python/comments/7yha8s/is_it_possible_to_create_a_steady_database_with/
reddit
Is it possible to create a steady database with python? • r/Python
I wonder if I could create a steady website database with python and maybe connect it with mySQL, if so then I guess it's a good alternate of php...
Visual Studio Code is now shipping with Anaconda!: https://www.reddit.com/r/Python/comments/7ygvfq/visual_studio_code_is_now_shipping_with_anaconda/
reddit
Visual Studio Code is now shipping with Anaconda! • r/Python
107 points and 29 comments so far on reddit
How to incorporate data from two distrinct sources (that don't have a RDBMS relationship) in a single serializer?: https://stackoverflow.com/questions/48804687/how-to-incorporate-data-from-two-distrinct-sources-that-dont-have-a-rdbms-rela
Stackoverflow
How to incorporate data from two distrinct sources (that don't have a RDBMS relationship) in a single serializer?
I'm trying to serialize some objects whose data is stored in 2 databases, linked by common UUIDs. The second database DB2 stores personal data, so is run as a segregated microservice to comply with
Angular and Django: How do I make a password from one `input` match another as I type?: https://www.reddit.com/r/Python/comments/7yhobk/angular_and_django_how_do_i_make_a_password_from/
reddit
Angular and Django: How do I make a password from one... • r/Python
1 points and 0 comments so far on reddit
Predicting Musical Genre Using Lyrics (with d3.js dashboard): https://www.reddit.com/r/Python/comments/7yhs7u/predicting_musical_genre_using_lyrics_with_d3js/
reddit
Predicting Musical Genre Using Lyrics (with d3.js... • r/Python
1 points and 0 comments so far on reddit
Displaying text in random positions on blank screen. What should I use: Tkinter, Canvas, ____?: https://www.reddit.com/r/Python/comments/7yi0or/displaying_text_in_random_positions_on_blank/
reddit
Displaying text in random positions on blank screen.... • r/Python
I'm wanting to essentially make a slideshow where I can display text somewhat like a flashcard. Which avenue should be used? Imagine having a...
A startup made me make this toy django-channels chat app and then told me they didn't have money to hire me! Now it's yours internet!: https://www.reddit.com/r/Python/comments/7yi51a/a_startup_made_me_make_this_toy_djangochannels/
reddit
A startup made me make this toy django-channels chat... • r/Python
2 points and 2 comments so far on reddit
Weird python behaviour - list comprehension: https://www.reddit.com/r/Python/comments/7yi68s/weird_python_behaviour_list_comprehension/
reddit
Weird python behaviour - list comprehension • r/Python
Hi, I'm not sure I've found a bug or if this is an unexpected but explainable behaviour, well known to more proficient pythonistas: I'm trying...
Soft margin in linear support vector machine using python: https://stackoverflow.com/questions/48804198/soft-margin-in-linear-support-vector-machine-using-python
Stack Overflow
Soft margin in linear support vector machine using python
I'm learning support vector machine and trying to come up with a simple python implementation (I'm aware of the sklearn package, just to help understand the concepts better) that does simple linear
Vigenere cipher --return answer is invalid syntax?: https://www.reddit.com/r/Python/comments/7yj7al/vigenere_cipher_return_answer_is_invalid_syntax/
reddit
Vigenere cipher --return answer is invalid syntax? • r/Python
def caesar(s, k): upcased = s.upper() alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' n = 26 newstring = '' for i in range(len(s)): ...
How would I get Python to detect if there's a word on a webpage?: https://www.reddit.com/r/Python/comments/7yjbx4/how_would_i_get_python_to_detect_if_theres_a_word/
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Building a Simple Web App With Bottle, SQLAlchemy, and the Twitter API – Real Python: https://www.reddit.com/r/Python/comments/7yjm98/building_a_simple_web_app_with_bottle_sqlalchemy/
reddit
Building a Simple Web App With Bottle, SQLAlchemy, and... • r/Python
2 points and 0 comments so far on reddit
How to print to stderr in Python?: https://stackoverflow.com/questions/5574702/how-to-print-to-stderr-in-python
Stack Overflow
How to print to stderr in Python?
There are several ways to write to stderr:
print >> sys.stderr, "spam" # Python 2 only.
sys.stderr.write("spam\n")
os.write(2, b"spam\n")
from __future__ imp...
print >> sys.stderr, "spam" # Python 2 only.
sys.stderr.write("spam\n")
os.write(2, b"spam\n")
from __future__ imp...
django-taggit - display all tags based on date vlog published: https://stackoverflow.com/questions/48178814/django-taggit-display-all-tags-based-on-date-vlog-published
Stackoverflow
django-taggit - display all tags based on date vlog published
Using django-taggit-templatetags2, I can display all the tags associated for a test vlog in a template page.
I have vlogs stored in the db that are not yet released to the public (only displayed a...
I have vlogs stored in the db that are not yet released to the public (only displayed a...
Visual Studio Code does not see wget: https://stackoverflow.com/questions/48800589/visual-studio-code-does-not-see-wget
Stackoverflow
Visual Studio Code does not see wget
I have Python 2.7 installed on my machine. I use it in Visual Studio Code (VSC) (MacOS distribution) without issue, but I'm having difficulty getting Visual Studio Code to "see" wget.
In my VSC, I...
In my VSC, I...
Seeking feedback on Python Dash app prior to new release: https://www.reddit.com/r/Python/comments/7ykgyx/seeking_feedback_on_python_dash_app_prior_to_new/
reddit
Seeking feedback on Python Dash app prior to new release • r/Python
Hey all, I'm the main author of a new Python Dash app that serves as a trading utility for crypto-currency traders. I've come here with questions...