Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-launchpadlib /
docs /
Delete
Unzip
Name
Size
Permission
Date
Action
files
[ DIR ]
drwxr-xr-x
2024-02-17 03:49
CONTRIBUTING.rst
1.27
KB
-rw-r--r--
2021-11-04 09:42
Makefile
609
B
-rw-r--r--
2021-10-26 21:15
command-line.rst
1.08
KB
-rw-r--r--
2021-11-17 10:30
conf.py.gz
2.12
KB
-rw-r--r--
2021-11-06 07:40
hosted-files.rst
2.86
KB
-rw-r--r--
2021-10-26 21:15
index.rst
917
B
-rw-r--r--
2021-11-04 09:42
introduction.rst.gz
3.51
KB
-rw-r--r--
2021-10-26 21:15
operations.rst
858
B
-rw-r--r--
2021-10-26 21:15
people.rst.gz
1.97
KB
-rw-r--r--
2021-10-26 21:15
toplevel.rst
3.27
KB
-rw-r--r--
2021-10-26 21:15
Save
Rename
******************** Command-line scripts ******************** Launchpad includes one command-line script to make Launchpad integration easier for third-party libraries that aren't written in Python. This file tests the workflow underlying the command-line script as best it can. RequestTokenApp =============== This class is called by the command-line script launchpad-request-token. It creates a request token on a given Launchpad installation, and returns a JSON description of the request token and the available access levels. >>> import json >>> from launchpadlib.apps import RequestTokenApp >>> web_root = "http://launchpad.test:8085/" >>> consumer_name = "consumer" >>> token_app = RequestTokenApp(web_root, consumer_name, "context") >>> token_json = json.loads(token_app.run()) >>> for param in sorted(token_json.keys()): ... print(param) access_levels lp.context oauth_token oauth_token_consumer oauth_token_secret >>> print token_json['lp.context'] context >>> print token_json['oauth_token_consumer'] consumer