No description
  • Python 99.2%
  • Shell 0.3%
  • Perl 0.3%
  • Batchfile 0.1%
Find a file
Florent 935fa16c19 ing: fix bad login with cookie cache
Description of the problem: we are loading an expired cookie. We go to
the login page (redirected by the website, or because of the url stored
in storage. It does not matter).
Next step: we call do_logout, it clear the cookies
Next step: stay_or_go do nothing
Next step: we do a post, without any cookie. The request fail

Solution: force the "go()" after cookie cleaning
2015-03-20 22:23:18 +01:00
contrib Be consistent in enable state: use human readable values 2015-03-17 22:16:15 +01:00
desktop add keywords in .desktop files (closes #1356) 2014-05-17 16:09:37 +02:00
docs Account() constructor does not take an id 2014-11-24 20:21:24 +01:00
icons Add boobsize icon 2014-01-14 11:04:54 +01:00
man Weboob 1.0 released 2014-10-17 14:10:14 +02:00
modules ing: fix bad login with cookie cache 2015-03-20 22:23:18 +01:00
scripts Fix permissions, encoding and copyrights 2015-02-21 23:37:41 +01:00
tools tools/local_run.sh: ignore $HOME/.local 2015-02-27 17:32:24 +01:00
weboob Browser: move load/dump_state to LoginBrowser 2015-03-20 22:23:09 +01:00
.gitignore Fix local_run with empty localconfig 2013-03-25 11:10:38 +01:00
.mailmap add an alias for bdelpey 2014-12-09 08:13:35 +01:00
AUTHORS introduce Matthieu Weber 2015-02-08 15:53:01 +01:00
build.mk add missing references to build qhandjoob 2013-07-14 19:08:17 +02:00
ChangeLog Trailing whitespace 2014-10-22 19:10:13 +02:00
COPYING change license to AGPLv3+ 2011-04-08 12:48:07 +02:00
INSTALL Better README/INSTALL 2013-06-26 23:20:52 +02:00
MANIFEST.in fix included path 2012-03-16 15:03:06 +01:00
MANIFEST.in.modules add --modules to install modules 2013-08-18 20:21:57 +02:00
README Upgrade documentation with s/ICap/Cap 2014-07-07 16:32:54 +02:00
release.sh Exclude contrib by version rewriting 2014-09-03 17:12:55 +02:00
setup.cfg browser tests: More Pythonic names 2014-10-19 00:28:44 +02:00
setup.py bump to 1.1 2014-10-17 14:10:38 +02:00

Weboob is a project which provides a core library, modules and applications.

Overview
--------

The core library defines capabilities: features common to various websites.
For example, http://www.youtube.com/ and http://www.dailymotion.com/ both
provide videos; Weboob defines the "CapVideo" capability for them.

Each module interfaces with a website and implements one or many of these
capabilities. Modules can be configured (becoming a "backend"), which means
that the end-user can provide personal information to access the underlying
website, like a login and password.

Applications allow the end-user to work with many modules in parallel,
in a multi-threaded way. For example, one could search a video on
many websites at once. Applications are toolkit-agnostic. They can use GTK+,
Qt or be text-only. The latter can be used either in an interactive way
or in pipes.

The core library provides base classes which help developers write
modules and applications.

Weboob is written in Python and is distributed under the AGPLv3+ license.


For more information, please go to the official website at http://weboob.org/

Installation is described on the website or in the INSTALL file.