阅读z lmbr

lmbr-reader的Python项目详细描述


真正的Python提要阅读器

真正的Python提要阅读器是一个基本的web feed阅读器,可以从Real Python feed下载最新的Real Python教程。在

有关更多信息,请参阅教程How to Publish an Open-Source Python Package to PyPI关于Real Python。在

安装

您可以从PyPI安装真正的Python提要读取器:

pip install realpython-reader

python2.7和python3.4及更高版本都支持该阅读器。在

如何使用

真正的Python提要阅读器是一个命令行应用程序,名为realpython。要查看latest Real Python tutorials的列表,只需调用程序:

^{pr2}$

要阅读某个特定教程,请使用教程的数字ID作为参数调用该程序:

$ realpython 0
# How to Publish an Open-Source Python Package to PyPI

Python is famous for coming with batteries included. Sophisticated
capabilities are available in the standard library. You can find modules for
working with sockets, parsing CSV, JSON, and XML files, and working with
files and file paths.

However great the packages included with Python are, there are many
fantastic projects available outside the standard library. These are most
often hosted at the Python Packaging Index (PyPI), historically known as the
Cheese Shop. At PyPI, you can find everything from Hello World to advanced
deep learning libraries.

[... The full text of the article ...]

也可以通过从reader包导入,在自己的Python代码中调用真正的Python提要读取器:

>>> from reader import feed
>>> feed.get_titles()
['How to Publish an Open-Source Python Package to PyPI', ...]

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
Java泛型和基类   ProcessBuilder或DefaultExecutor启动的“RunAs”子进程的java读取标准输出   java应用程序在尝试登录时突然停止   Java:神秘的Java未捕获异常处理程序[带代码]   java JavaFX NumberAxis自动范围无限循环   最新版本和旧版本冲突的java双Maven依赖关系   java如何导入带有部署变量类名的静态函数?   编译器构造不同的JDK更新会产生不同的Java字节码吗?   java无法在struts 1.1中上载任何超过250 MB大小的文件   java调整jcombobox下拉菜单的宽度   java如何在某些情况下忽略@SQLDelete注释   在Eclipse for Java EE developers edition中禁用HTML警告   java HttpUrlConnection重置请求属性   java@Provider资源未在rest应用程序中注册   java TOP N使用JPA连接   java在使用反射调用方法时区分int和Integer参数