sending out reminders to clients about appointments. (both after making them and the day of the appointment): https://www.reddit.com/r/Python/comments/aa5n89/sending_out_reminders_to_clients_about/
reddit
r/Python - sending out reminders to clients about appointments. (both after making them and the day of the appointment)
1 vote and 0 comments so far on Reddit
A pong game I made in a few hours to get to know pygame: https://www.reddit.com/r/Python/comments/aa67c1/a_pong_game_i_made_in_a_few_hours_to_get_to_know/
reddit
r/Python - A pong game I made in a few hours to get to know pygame
2 votes and 0 comments so far on Reddit
Building my own API - need direction or is this use case possible?: https://www.reddit.com/r/Python/comments/aa5vhl/building_my_own_api_need_direction_or_is_this_use/
reddit
r/Python - Building my own API - need direction or is this use case possible?
1 vote and 0 comments so far on Reddit
Self is not passed to the class method in Python: https://stackoverflow.com/questions/53925807/self-is-not-passed-to-the-class-method-in-python
Stack Overflow
Self is not passed to the class method in Python
I am trying the following python code:
import sqlite3
class database:
def __init__(self):
self.conn = sqlite3.connect("warehousedb.db")
self.cursor = self.conn.cursor()
...
import sqlite3
class database:
def __init__(self):
self.conn = sqlite3.connect("warehousedb.db")
self.cursor = self.conn.cursor()
...
Access SaltStack remotely via API (X-Post on Saltstack): https://www.reddit.com/r/Python/comments/aa79ov/access_saltstack_remotely_via_api_xpost_on/
reddit
r/Python - Access SaltStack remotely via API (X-Post on Saltstack)
1 vote and 0 comments so far on Reddit
I wrote a free book about TDD and clean architecture in Python: https://news.ycombinator.com/item?id=18775349
python data types, interactive help, and built-in functions | pytorials.com: https://www.reddit.com/r/Python/comments/aa7qna/python_data_types_interactive_help_and_builtin/
reddit
r/Python - python data types, interactive help, and built-in functions | pytorials.com
1 vote and 0 comments so far on Reddit
Learn backprop the hard way: build your neural network from scratch using Numpy only: https://www.reddit.com/r/Python/comments/aa9fst/learn_backprop_the_hard_way_build_your_neural/
reddit
r/Python - Learn backprop the hard way: build your neural network from scratch using Numpy only
1 vote and 0 comments so far on Reddit
How to deal with SettingWithCopyWarning in Pandas?: https://stackoverflow.com/questions/20625582/how-to-deal-with-settingwithcopywarning-in-pandas
Stack Overflow
How to deal with SettingWithCopyWarning in Pandas
I just upgraded my Pandas from 0.11 to 0.13.0rc1. Now, the application is popping out many new warnings. One of them like this:
E:\FinReporter\FM_EXT.py:449: SettingWithCopyWarning: A value is tryi...
E:\FinReporter\FM_EXT.py:449: SettingWithCopyWarning: A value is tryi...