Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
- 1.1 Python Professional Course Series: RESTful APIs
- 1.2 How to use sockets in Python
- 1.3 JSON – our new friend
- 1.4 Talking to JSON in Python
- 1.5 What is XML and why do we prefer to use JSON?
- 1.6 Making life easier with the requests module
- 1.7 Four magic letters: CRUD
- 2.1 Python Professional Course Series: Lab & Assessment
Resultats de text complet:
- 1.1 Python Professional Course Series: RESTful APIs
- going to convince you to take a rest? Not at all. On the contrary, we want to encourage you to start t... ary computer systems, especially those which work on the Internet; moreover, which cannot work without... est question that can be put now. REST is focused on a very specific kind of data - the data which ref... ine that the object is stored somewhere else, not on your computer, but on a server located over the h
- 1.2 How to use sockets in Python
- to handle connection-oriented transmissions based on TCP; - **connect the socket to the HTTP server*... mentioned before, we aren't and won't be focusing on network programming. We want to show you how the ... a disk isn't) Such a socket is prepared to work on top of TCP protocol - it's the default socket con... ly. == Connecting to a server If we use a socket on the client's side, we are ready to make use of it
- 1.6 Making life easier with the requests module
- d open package named ''json-server'', implemented on top of the ''Node.js'' environment. ''Node.js'' i... First of all, we need to have Node.js installed on our computer. The steps you should take depend on the OS you use. So... * ...if you're a Windows u... un the installer. Whole process looks the same as on Windows® - just accept all the default settings a
- 1.7 Four magic letters: CRUD
- u already know how HTTP works, how it’ is mounted on top of the TCP stack and how the HTTP server is a... relational database residing in a single file, or on the contrary, a huge, distributed cloud of cooper... ch makes it really special. Let's shed some light on it. == C means Create If you are able to “create... data stored in a collection, e.g., reading posts on somebody's blog, viewing pictures in a gallery, s
- 1.3 JSON – our new friend
- computer technology development is in fact based on TLA. What is TLA? It's simple – it's a Three-Lett... multiple lines** – each string must fit entirely on one line (of course, there may be more than one string on the same line). **Boolean values** are represen... h contains an object which contains a list and so on. Any JSON object property may contain (or carry)
- 1.5 What is XML and why do we prefer to use JSON?
- is possible to build a real programming language on top of XML, it wasn't (and still isn't) its nativ... dentifier – a string which uniquely names the DTD on the scale of the universe) and its location (a UR... Does it remind you of something? A directory tree on your computer's disk, for example? Okay. It defi... rint(' =', prop.text) </code> Let’s comment on the code: * line 1: ''import'' – nothing speci
- 1.4 Talking to JSON in Python
- ncode_who)) </code> The second approach is based on the fact that the serialization is actually done ... er object approach is also possible, and is based on redefining the ''JSONDecoder'' class. Unfortunate... that we’ve now gathered enough knowledge to move on to the next level. We’re going to return to some