Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on Home Assistant
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://www.home-assistant.io/
https://github.com/home-assistant/core
GUI Automation Tools in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
pyautogui https://github.com/asweigart/pyautogui
autopy https://github.com/autopilot-rs/autopy
Python for Game Development
Handling Complicated Data Types in Python and PySpark
Tips and Traps¶
An element in a pandas DataFrame can be any (complicated) type in Python. To save a padnas DataFrame with arbitrary (complicated) types as it is, you have to use the pickle module . The method
pandas.DataFrame.to_pickle
(which is simply a wrapper overpickle.dump
) serialize the DataFrame to a pickle file while the methodpandas.read_pickle
Use Streamlit to Build a Web App Quickly Using Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://docs.streamlit.io/
https://github.com/streamlit/streamlit
https://towardsdatascience.com/coding-ml-tools-like-you-code-ml-models-ddba3357eace