Skip to content

Commit 9be0b44

Browse files
committed
Update to v0.1.0
1 parent 6bda566 commit 9be0b44

File tree

3 files changed

+37
-36
lines changed

3 files changed

+37
-36
lines changed

README.md

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -12,48 +12,49 @@ You can install the Real Python Feed Reader from [PyPI](https://pypi.org/project
1212

1313
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:
1414

15-
$ realpython
15+
$ realpython
1616
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
3737

3838
To read one particular tutorial, call the program with the numerical ID of the tutorial as a parameter:
3939

4040
$ realpython 0
41-
# Logging in Python
41+
# Splitting, Concatenating, and Joining Strings in Python
4242

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.
4647

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 ...]
5354

5455
You can also call the Real Python Feed Reader in your own Python code, by importing from the `reader` package:
5556

5657
>>> from reader import feed
5758
>>> feed.get_titles()
58-
['Logging in Python', 'The Best Python Books', ...]
59-
59+
['Splitting, Concatenating, and Joining Strings in Python', ...]
60+

reader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
See https://github.com/realpython/reader/ for more information
1010
"""
1111
# Version of realpython-reader package
12-
__version__ = "0.0.1"
12+
__version__ = "0.1.0"
1313

1414
# URL of Real Python feed
1515
URL = "https://realpython.com/atom.xml"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# This call to setup() does all the work
1414
setup(
1515
name="realpython-reader",
16-
version="0.0.1",
17-
description="Read Real Python Tutorials",
16+
version="0.1.0",
17+
description="Read Real Python tutorials",
1818
long_description=README,
1919
long_description_content_type="text/markdown",
2020
url="https://github.com/realpython/reader",

0 commit comments

Comments
 (0)