You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-33Lines changed: 34 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -12,48 +12,49 @@ You can install the Real Python Feed Reader from [PyPI](https://pypi.org/project
12
12
13
13
The Real Python Feed Reader is a command line application. To see a list of the [latest Real Python tutorials](https://realpython.com/) simply call the program:
14
14
15
-
$ realpython
15
+
$ realpython
16
16
The latest tutorials from Real Python (https://realpython.com/)
17
-
0 Logging in Python
18
-
1 The Best Python Books
19
-
2 Conditional Statements in Python
20
-
3 Structuring Python Programs
21
-
4 We're Celebrating 1 Million Page Views per Month!
22
-
5 Python Pandas: Tricks & Features You May Not Know
23
-
6 Python Community Interview With Mariatta Wijaya
24
-
7 Primer on Python Decorators
25
-
8 Sets in Python
26
-
9 The Ultimate Guide to Django Redirects
27
-
10 Advanced Git Tips for Python Developers
28
-
11 Python Community Interview With Mike Driscoll
29
-
12 Dictionaries in Python
30
-
13 Socket Programming in Python (Guide)
31
-
14 Python Code Quality: Tools & Best Practices
32
-
15 Documenting Python Code: A Complete Guide
33
-
16 Fast, Flexible, Easy and Intuitive: How to Speed Up Your Pandas Projects
34
-
17 Lists and Tuples in Python
35
-
18 Reading and Writing CSV Files in Python
36
-
19 Generating Random Data in Python (Guide)
17
+
0 Splitting, Concatenating, and Joining Strings in Python
18
+
1 Image Segmentation Using Color Spaces in OpenCV + Python
19
+
2 Python Community Interview With Mahdi Yusuf
20
+
3 Absolute vs Relative Imports in Python
21
+
4 Top 10 Must-Watch PyCon Talks
22
+
5 Logging in Python
23
+
6 The Best Python Books
24
+
7 Conditional Statements in Python
25
+
8 Structuring Python Programs
26
+
9 We're Celebrating 1 Million Page Views per Month!
27
+
10 Python Pandas: Tricks & Features You May Not Know
28
+
11 Python Community Interview With Mariatta Wijaya
29
+
12 Primer on Python Decorators
30
+
13 Sets in Python
31
+
14 The Ultimate Guide to Django Redirects
32
+
15 Advanced Git Tips for Python Developers
33
+
16 Python Community Interview With Mike Driscoll
34
+
17 Dictionaries in Python
35
+
18 Socket Programming in Python (Guide)
36
+
19 Python Code Quality: Tools & Best Practices
37
37
38
38
To read one particular tutorial, call the program with the numerical ID of the tutorial as a parameter:
39
39
40
40
$ realpython 0
41
-
# Logging in Python
41
+
# Splitting, Concatenating, and Joining Strings in Python
42
42
43
-
Logging is a very useful tool in a programmer's toolbox. It can help you
44
-
develop a better understanding of the flow of a program and discover scenarios
45
-
that you might not even have thought of while developing.
43
+
There are few guarantees in life: death, taxes, and programmers needing to
44
+
deal with strings. Strings can come in many forms. They could be unstructured
45
+
text, usernames, product descriptions, database column names, or really
46
+
anything else that we describe using language.
46
47
47
-
Logs provide developers with an extra set of eyes that are constantly looking
48
-
at the flow that an application is going through. They can store information,
49
-
like which user or IP accessed the application. If an error occurs, then they
50
-
can provide more insights than a stack trace by telling you what the state of
51
-
the program was before it arrived at the line of code where the error
52
-
occurred.
48
+
With the near-ubiquity of string data, it's important to master the tools of
49
+
the trade when it comes to strings. Luckily, Python makes string manipulation
50
+
very simple, especially when compared to other languages and even older
51
+
versions of Python.
52
+
53
+
[... The full text of the article ...]
53
54
54
55
You can also call the Real Python Feed Reader in your own Python code, by importing from the `reader` package:
55
56
56
57
>>> from reader import feed
57
58
>>> feed.get_titles()
58
-
['Logging in Python', 'The Best Python Books', ...]
59
-
59
+
['Splitting, Concatenating, and Joining Strings in Python', ...]
0 commit comments