1<form autocomplete="on|off">
2
3Example:
4
5<!-- All Input -->
6<form action="/action_page.php" method="get" autocomplete="on">
7 <label for="fname">First name:</label>
8 <input type="text" id="fname" name="fname"><br><br>
9 <label for="email">Email:</label>
10 <input type="text" id="email" name="email"><br><br>
11 <input type="submit">
12</form>
13
14<!-- Single Input -->
15<input type="text" name="fname" autocomplete="off" />
1# Pip install
2$ pip install auto-py-to-exe
3$ auto-py-to-exe
4
5# clone install
6$ git clone https://github.com/brentvollebregt/auto-py-to-exe.git
7$ python -m pip install -r requirements.txt
8$ cd auto-py-to-exe
9$ python setup.py install
10
11$ auto-py-to-exe
1<!doctype html>
2<html lang="en">
3<head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>jQuery UI Autocomplete - Default functionality</title>
7 <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
8 <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
9 <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
10 <script>
11 $( function() {
12 var availableTags = [
13 "ActionScript",
14 "AppleScript",
15 "Asp",
16 "BASIC",
17 "C",
18 "C++",
19 "Clojure",
20 "COBOL",
21 "ColdFusion",
22 "Erlang",
23 "Fortran",
24 "Groovy",
25 "Haskell",
26 "Java",
27 "JavaScript",
28 "Lisp",
29 "Perl",
30 "PHP",
31 "Python",
32 "Ruby",
33 "Scala",
34 "Scheme"
35 ];
36 $( "#tags" ).autocomplete({
37 source: availableTags
38 });
39 } );
40 </script>
41</head>
42<body>
43
44<div class="ui-widget">
45 <label for="tags">Tags: </label>
46 <input id="tags">
47</div>
48
49
50</body>
51</html>
52