diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-18 22:15:39 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-18 22:15:39 +0200 |
commit | 00e23cfd90336c88b0548eb63d4c184a93edfd12 (patch) | |
tree | 6b5c11b25db6999f7efcc556bf32b5af21af10dd | |
parent | new so fix (diff) | |
download | pyload-00e23cfd90336c88b0548eb63d4c184a93edfd12.tar.xz |
edited readme, save configs after start
-rw-r--r-- | README | 28 | ||||
-rwxr-xr-x | pyLoadCore.py | 2 |
2 files changed, 12 insertions, 18 deletions
@@ -36,42 +36,34 @@ pycrypto: RSDF/CCF/DLC support pycurl: lower memory footprint while downloading pyqt4: for the GUI django: for webinterface -tesseract, gocr, PIL: Captcha recognition +tesseract, PIL: Captcha recognition First start =========== First, run $ python pyLoadCore.py -to create initial config files. -You should now see a warning that there is no database for the webinterface, -so execute -$ python module/web/manage.py syncdb -and create the webinterface user. +Follow the instructions of the setup assistent. -Configuring +Configuration =========== -After the first start, you can edit the config. Just open the config files -"module/config/core.xml" and/or "module/config/plugin.xml" with your -favorite editor and edit the appropriate options. For a short description of +After the first start you can configurate pyLoad with the webinterface or the GUI. +Additionally you could simply edit the config files located in your pyLoad home dir(defaults to: ~/.pyload) +with your favorite editor and edit the appropriate options. For a short description of the options take a look at <http://pyload.org/configuration>. Adding downloads ================ -To add downloads to pyLoad, add your links to "links.txt". -If you have successfully installed the LinuxFileEvents hook, pyLoad should add -the files to the queue automatically. If not, you have to restart pyLoad or use -one of the interfaces. -To starte the CLI and connect to a local server, run +To start the CLI and connect to a local server, run $ python pyLoadCli.py -l -To connect to a remote server, run -$ python pyLoadCli.py -and fill in the connection details. + If you want to connect from graphical enviroment, you can also use the GUI: $ python pyLoadGui.py +Or access the address you setted for the webinterface with your webbrowser. + Notes ===== For more information, see diff --git a/pyLoadCore.py b/pyLoadCore.py index d39c919dc..e1c7331a7 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -227,6 +227,8 @@ class Core(object): #self.threadManager.start() self.hookManager.coreReady() + + self.config.save() #save so config files gets filled while True: |