Cerca

Heus ací els resultats de la cerca.

1.1 SQLite
87 Resultats, Darrera modificació:
our account data, consisting of email address, login, and password, and when you add new posts you sen... visible to other users. Sent data should be saved in some place that can be easily accessed. This plac... e, which is a set of information stored on a disk in a computer system. Access to the database is poss... le Database, Microsoft SQL Server, IBM DB2 Later in this course, we'll focus mainly on the SQLite sys
2.1 File processing - XML files
64 Resultats, Darrera modificació:
2.1 File processing - XML files == XML processing in Python Python is commonly used to process various... rammer, you'll have to read or create a data file in the XML format. Soon, doing that will be a piece ... ferent, because it's parsed into a tree structure in which each node is an object. * **xml.sax** – S... nym for “Simple API for XML”. SAX is an interface in Python for event-driven XML document analysis. Un
4.1 Logging in Python
61 Resultats, Darrera modificació:
= 4.1 Logging in Python == Logging in Python The Python Standard Library provides a useful module called ''logging'' to log events occurring in the application. Logs are most often used to find... something goes wrong, you'll be able to determine in which browsers the problem is occurring. In Pyth
3.1 The CSV module in Python
45 Resultats, Darrera modificació:
= 3.1 The CSV module in Python == The CSV module in Python The CSV (Comma Separated Values) format is one of the most popular... nd the popular Excel offer data import and export in this format. The CSV file is a plain text file with the .csv extension. A typical file contains comm
5.1 The configparser module
35 Resultats, Darrera modificació:
y popular services provide an API that we can use in our applications. Integration with these services requires authentication using data such as a login and password, or simply an access token. Each se... nt data for authentication, 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