Cerca
Heus ací els resultats de la cerca.
Resultats de text complet:
- 1.1 SQLite
- content. You’ve surely noticed that the data sent to those applications are still available after a fe... ata are all kinds of information that we can send to the application. During registration, you send th... d new posts you send content that will be visible to other users. Sent data should be saved in some pl... ace is a database, which is a set of information stored on a disk in a computer system. Access to the
- 2.1 File processing - XML files
- XML processing in Python Python is commonly used to process various types of data. Perhaps, while working as a programmer, you'll have to read or create a data file in the XML format. Soo... t Object Model (DOM). Using the DOM, the approach to an XML document is slightly different, because it's parsed into a tree structure in which each node is an object.
- 4.1 Logging in Python
- brary provides a useful module called ''logging'' to log events occurring in the application. Logs are most often used to find the cause of an error. By default, Python an... the causes of errors. However, it's good practice to create your own logs that may be useful to you or other programmers. An example of using your own lo
- 3.1 The CSV module in Python
- rmat is one of the most popular file formats used to store and transfer data between different programs. Currently, many database management tools and the popular Excel offer data import and ex... contains comma-separated values, but other separators such as semicolon or tab are also allowed. It s
- 5.1 The configparser module
- = 5.1 The configparser module == Introduction to the configparser module Currently, many popular servi... such as a login and password, or simply an access token. Each service may require different data for ... uthentication, but one thing is certain – we need to store it somewhere in our application. It's not a good idea to hardcode them directly in the code. A