<< < 30 31 32 33 34 35 36 37 38 39 40 > >>   Sort: Rank

re.findall() - Find All Matches
How to find all matches of a regular expression using re.findall()? The re.findall() function allows you to find all matches of a given regular expression in a target string. import re l = re.findall(pattern, string, flags=0) Where: pattern is the regular expression string is the target string l is ...
2018-10-19, 1898🔥, 0💬

re.sub() - Substitute Matches with String
How to substitutes matches of a regular expression in a target string with another string using re.sub()? The re.sub() function allows you to substitute (or replace) matches of a given regular expression in match the beginning part of a target string with of a given regular expression. import re f =...
2018-10-19, 1664🔥, 0💬

re.match() - Match from String Beginning
How to match the beginning part of a target string with a regular expression using re.match()? The re.match() function allows you to match the beginning part of a target string with of a given regular expression. import re m = re.match(pattern, string, flags=0) Where: pattern is the regular expressi...
2018-10-19, 1606🔥, 0💬

What Is Python Module 're'
What Is Python module "re"? "re" is a Python internal module that provides regular expression matching and replacement operations similar to those found in Perl. Here are some important properties and functions provided by the "re" module: &gt;&gt;&gt; import re &gt;&gt;&gt; ...
2018-10-19, 1337🔥, 0💬

json.dumps() - Dumping Object into JSON
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.dumps() function allows you to dump (or encode, serialize) Python objects into JSON strings: json.dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=...
2018-10-13, 3115🔥, 0💬

Use Match Group \g&lt;n&gt; in Replacement
How to how to use matched string and groups in replacements with re.sub()? When calling the re.sub() function, you can use matched string and groups in replacements with the following escape sequences: \g&lt;0&gt; # represents the matched string \g&lt;1&gt; # represents the first gro...
2018-10-13, 2268🔥, 0💬

re.split() - Splits with Regular Expression
How to split a given string with a regular expression as the delimiter using re.split()? The re.split() function allows you to split a given target string using matches of a given regular expression as the delimiter. import re l = re.split(pattern, string, maxsplit=0, flags=0) Where: pattern is the ...
2018-10-13, 1778🔥, 0💬

'json' Module - JSON Encoder and Decoder
Where to find tutorials on Python "json" Module? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Python "json" Module. What Is Python Module 'json' json.dumps() - Dumping Object into JSON Generating JSON Strings in Pretty Format Dumping JSON Ou...
2018-10-13, 1350🔥, 0💬

What Is Python Module 'json'
What Is Python module "json"? "json" is a Python internal module that allows to encode and code JSON strings. Here are some important properties and functions provided by the "json" module: &gt;&gt;&gt; import json &gt;&gt;&gt; json.dumps() # serializes a given object into a ...
2018-10-13, 1176🔥, 0💬

Extending json.JSONEncoder Class
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encode your own data types to JSON strings, you need to extend the json.JSONEncoder class and override the default() function. The following Python example shows you how to extend json.JSONEncoder class to...
2018-10-08, 3940🔥, 0💬

json.loads() - Loading JSON into Object
How to load (or decode, deserialize) a JSON string into a Python object using json.loads()? The json.loads() function allows you to load (or decode, deserialize) JSON strings (str, bytes or bytearray types) into Pythong objects: json.loads(s, *, encoding=None, cls=None, object_hook=None, parse_float...
2018-10-08, 2505🔥, 0💬

What Is json.JSONEncoder Class
What Is json.JSONEncoder Class? json.JSONEncoder class is the underlying class that supports json.dumps() functions. The following Python example shows you how to use json.JSONEncoder class to perform the same JSON encoding job as json.dumps function: &gt;&gt;&gt; import json &gt;&am...
2018-10-08, 2022🔥, 0💬

Dumping JSON Output to File
How to dump (or encode, serialize) a Python object into file or an output stream as a JSON string using json.dump()? json.dump(o,fp,...) function performs the same job as json.dumps(o,...) except that it directs the JSON string to the output stream of a given file pointer. Here is a Python example t...
2018-10-08, 1373🔥, 0💬

Generating JSON Strings in Pretty Format
How to generate JSON strings in pretty format using json.dumps()? You can control the JSON output string format with "indent", "separators" and "sort_keys" arguments of the json.dumps() function: Here is a Python example that generates a pretty formatted JSON string with property keys sorted: &g...
2018-10-08, 1321🔥, 0💬

http.client.HTTPResponse Objects
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http.client.HTTPResponse object from a urlopen() function call, you should be able use the following properties and functions: &gt;&gt;&gt; r = urllib.request.urlopen('http:/ /httpbin.org/get')...
2018-09-24, 10760🔥, 0💬

json.tool - JSON Pretty-Print Tool
What is json.tool? Can I use it to convert a JSON string a pretty-print format? json.tool is a special internal executable module - a module with main() so you can run it as Python script. When you run json.tool, (or json.module.main()), it will read a JSON string from the stand input and write the ...
2018-09-24, 2333🔥, 0💬

Sending an HTTP Request with 'urllib.request'
How to send an HTTP request using the "urllib.request" module? To send an HTTP request to the Internet, you can use the urllib.request.urlopen() function as described below: r = urllib.request.urlopen(url, data=None, [timeout, ]*, cafile=None, capath=None, cadefault=False, context=None) where: url c...
2018-09-24, 1818🔥, 0💬

What Is Python Module 'urllib'
What Is Python module "urllib"? "urllib" is a Python internal module that allows you to communicate with Internet resources that are represented by URLs. Two main Internet protocols are supported: HTTP and FTP. The current version of "urllib" module is divided into 4 sub-modules: urllib.request - fo...
2018-09-24, 1627🔥, 0💬

'urllib' Module - Internet Communication
Where to find tutorials on Python "urllib" Module? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Python "urllib" Module. What Is Python Module 'urllib' Sending an HTTP Request with 'urllib.request' http.client.HTTPResponse Objects HTTP POST w...
2018-09-24, 1276🔥, 0💬

Using urllib.parse.urlencode()
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special characters. If your form data has spaces, equal signs, and other special characters, you need to call urllib.parse.urlencode() to encode it before passing it to the urlopen() function. The urlencode() fun...
2018-09-13, 5388🔥, 0💬

Using urllib.request.Request Object
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request.urlopen() function can take a urllib.request.Request object to let you building more complex HTTP requests. You can use the Request() constructor to build a Request object: q = urllib.request.Request(...
2018-09-13, 4703🔥, 0💬

HTTP POST with urllib.request
How to send an HTTP POST request with urllib.request? I want to submit a form to a Website. To submit a form to a Website, you can use the urllib.request.urlopen() function with two arguments: r = urllib.request.urlopen(url, data) where: url can be a URL string or Request object data is request body...
2018-09-13, 2300🔥, 0💬

urllib.request.Request Properties and Functions
What properties and functions are supported on urllib.request.Request objects? urllib.request.Request objects support the following properties and functions: &gt;&gt;&gt; q = urllib.request.Request(url) host # represents the host name of the url. type # represents the internet protocol t...
2018-09-13, 1978🔥, 0💬

Installing 'requests' Module
How to install "requests" module? I am getting the "ModuleNotFoundError: No module named 'requests'" error. If you are getting the following error when running "import requests", you need to follow this tutorial to install the "requests" module. C:\fyicenter&gt;python Python 3.6.2 (v3.6.2:5fd33b...
2018-09-01, 2041🔥, 0💬

<< < 30 31 32 33 34 35 36 37 38 39 40 > >>   Sort: Rank