-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
97 lines (61 loc) · 1.88 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
Introduction
============
Leolo is a RSS/Atom feed manager library. It allows you to:
- Add/Edit a list of feeds.
- Get any content from feeds:
- Feed title.
- Feed url.
- Feed's last update.
- Feed's new entries:
- Entry title.
- Entry link.
- Entry content.
- Entry enclosures.
- Entry links (included in content).
- Filter new entries.
Dependencies
============
- Python 2.6
- SQLAlchemy
- pysqlite
- pyparsing
- FeedParser
Installation
============
Install dependencies
--------------------
There is more than one way to do this:
In Debian/Ubuntu with root access
_________________________________
$ sudo apt-get install python-sqlalchemy python-pyparsing python-feedparser python-sqlite
With easy_install
_________________
If you have root access, then you can do:
$ sudo easy_install feedparser pyparsing pysqlite SQLAlchemy
If you haven't, make sure you set a valid --install-dir which is also in your
PYTHONPATH:
$ easy_install --install-dir=$HOME/lib/python feedparser pyparsing pysqlite SQLAlchemy
Manual installation
___________________
Visit each website and follow their instructions to install the software:
- http://www.sqlalchemy.org/
- http://code.google.com/p/pysqlite/
- http://pyparsing.wikispaces.com/
- http://www.feedparser.org/
Leolo installation
------------------
First, download the source code from the official page: http://github.com/Menda/Leolo
$ sudo python setup.py install
or
$ python setup.py install --home=$HOME
Uninstalling Leolo
------------------
Unfortunatelly, there isn't a ''python setup.py uninstall'', you have to do
it manually.
Go to the place where you installed the application - e.g. $HOME/lib/python -
and delete the .egg file(s) and the line which points at it in
''easy-install.pth''.
Usage
=====
Take a look to the examples directory to have an idea of how to
use this library.