• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..12-Feb-2020-

boobank_indicator/H12-Feb-2020-195152

CHANGELOG.mdH A D12-Feb-2020145 85

MANIFEST.inH A D12-Feb-2020261 66

README.mdH A D12-Feb-20201.7 KiB6544

__init__.pyH A D12-Feb-20200 10

setup.pyH A D12-Feb-2020856 2119

README.md

1Weboob
2==========
3
4Weboob is a project which provides a core library, modules and applications
5such as boobank.
6
7Overview
8--------
9
10The core library defines capabilities: features common to various websites.
11
12Each module interfaces with a website and implements one or many of these
13capabilities. Modules can be configured (becoming a "backend"), which means
14that the end-user can provide personal information to access the underlying
15website, like a login and password.
16
17Applications allow the end-user to work with many modules in parallel,
18in a multi-threaded way.
19
20The core library provides base classes which help developers write
21modules and applications.
22
23Weboob is written in Python and is distributed under the LGPLv3+ license.
24
25For more information, please go to the official website at http://weboob.org/
26
27
28##Installation
29boobank_indicator is distributed as a python package. Do the following to install:
30
31``` sh
32sudo pip install boobank_indicator
33OR
34sudo easy_install boobank_indicator
35OR
36#Download Source and cd to it
37sudo python setup.py install
38```
39
40After that, you can run `boobank_indicator` from anywhere and it will run. You can
41now add it to your OS dependent session autostart method. In Ubuntu, you can
42access it via:
43
441. System > Preferences > Sessions
45(OR)
462. System > Preferences > Startup Applications
47
48depending on your Ubuntu Version. Or put it in `~/.config/openbox/autostart`
49
50###Dependencies
51
52  - weboob >= 1.0
53  - gir1.2-appindicator3 >= 0.1
54  - gir1.2-notify >= 0.7
55
56###Troubleshooting
57
58If the app indicator fails to show in Ubuntu versions, consider installing
59python-appindicator with
60
61`sudo apt-get install python-appindicator` weboob gir1.2-appindicator3 gir1.2-notify`
62
63##Author Information
64- Bezleputh (<bezleputh@gmail.com>)
65