{"id":9490,"date":"2023-11-06T20:03:20","date_gmt":"2023-11-06T14:33:20","guid":{"rendered":"https:\/\/python-programs.com\/?p=9490"},"modified":"2023-11-10T12:19:52","modified_gmt":"2023-11-10T06:49:52","slug":"python-data-persistence","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-data-persistence\/","title":{"rendered":"Python Data Persistence – A Quick Guide"},"content":{"rendered":"

Almost every other computer application, whether it is a web based application, a standalone data logger, a mobile app or a desktop application with or without GUI, stores and retrieves data from some persistent storage device such as hard disk or a flash drive. Such storage device may either be connected to computer or it may be available on a network. Without this ability to recurrently access, update and retrieve stored data, most computer applications would have been reduced to programmable calculators!<\/p>\n

Python Data Persistence – A Quick Guide<\/h2>\n

Data storage format depends on the logical structure of data and on the processing logic. Data may be stored in flat computer files, in tables of relational databases or different store formats of NOSQL databases. You will know more about these terms in subsequent chapters of this Page.<\/p>\n

Back-end process of a computer application stores, modifies and retrieves data in response to front-end user’s requirements. Almost every programming language offers tools to interact with files\/databases. This book aims to familiarize the reader with Python’s functions and modules that handle persistent data processing.<\/p>\n

Python Data Persistence – Getting Started<\/strong><\/p>\n