├── LICENSE ├── Python App ├── Ardunio.png ├── C++.jpeg ├── C.png ├── Go.jpeg ├── HTML.jpeg ├── JAVA.jpeg ├── Kotlin.png ├── PHP.jpeg ├── PYTHON.jpeg ├── Perl.jpeg ├── Presplash.png ├── Rust.jpg ├── TERMUX.png ├── images (2) (11).jpeg ├── main.py ├── new logo.png └── tumblr_0d721771474a58bed4f508d1b35e17dd_e71a1cf6_540.gif ├── README.md └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Python App/Ardunio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/Ardunio.png -------------------------------------------------------------------------------- /Python App/C++.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/C++.jpeg -------------------------------------------------------------------------------- /Python App/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/C.png -------------------------------------------------------------------------------- /Python App/Go.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/Go.jpeg -------------------------------------------------------------------------------- /Python App/HTML.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/HTML.jpeg -------------------------------------------------------------------------------- /Python App/JAVA.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/JAVA.jpeg -------------------------------------------------------------------------------- /Python App/Kotlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/Kotlin.png -------------------------------------------------------------------------------- /Python App/PHP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/PHP.jpeg -------------------------------------------------------------------------------- /Python App/PYTHON.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/PYTHON.jpeg -------------------------------------------------------------------------------- /Python App/Perl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/Perl.jpeg -------------------------------------------------------------------------------- /Python App/Presplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/Presplash.png -------------------------------------------------------------------------------- /Python App/Rust.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/Rust.jpg -------------------------------------------------------------------------------- /Python App/TERMUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/TERMUX.png -------------------------------------------------------------------------------- /Python App/images (2) (11).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/images (2) (11).jpeg -------------------------------------------------------------------------------- /Python App/main.py: -------------------------------------------------------------------------------- 1 | from kivymd.app import MDApp 2 | from kivy.lang.builder import Builder 3 | from kivy.uix.screenmanager import ScreenManager, Screen 4 | import colorama 5 | import webbrowser 6 | from kivy.core.window import Window 7 | 8 | Window.size = (450, 700) 9 | 10 | colorama.init() 11 | 12 | screen_helper = """ 13 | ScreenManager: 14 | MenuScreen: 15 | StartScreen: 16 | LoginScreen: 17 | InfoScreen: 18 | NextScreen: 19 | AccountScreen: 20 | ClipboardScreen: 21 | TermuxScreen: 22 | PythonScreen: 23 | CScreen: 24 | CplusScreen: 25 | JavaScreen: 26 | HtmlScreen: 27 | ArdunioScreen: 28 | RustScreen: 29 | KotlinScreen: 30 | PerlScreen: 31 | GoScreen: 32 | PhpScreen: 33 | TermsScreen: 34 | AboutScreen: 35 | HelpScreen: 36 | 37 | : 38 | name: 'menu' 39 | MDLabel: 40 | text: 'WELCOME !' 41 | halign: 'center' 42 | font_style : 'H6' 43 | MDLabel: 44 | text: 'Press Start To Continue' 45 | pos_hint: {'center_x' :0.5, 'center_y' :0.45} 46 | halign:'center' 47 | theme_text_color: "Custom" 48 | text_color: 136/255,136/255,136/255,1 49 | font_style : 'Button' 50 | Image: 51 | source: "new logo.png" 52 | size_hint: 0.80,0.80 53 | pos_hint: {'center_x' :0.5, 'center_y' :0.75} 54 | Image: 55 | source: "images (2) (11).jpeg" 56 | size_hint: 0.70,0.70 57 | pos_hint: {'center_x' :0.82, 'center_y' :0.09} 58 | MDRaisedButton: 59 | text: 'Start' 60 | pos_hint:{'center_x' :0.5, 'center_y' :0.3} 61 | on_press: root.manager.current = 'Start' 62 | : 63 | name: 'Start' 64 | MDRaisedButton: 65 | text: 'Back' 66 | pos_hint:{'center_x' :0.5, 'center_y' :0.2} 67 | font_style: 'Button' 68 | on_press: root.manager.current = 'menu' 69 | MDLabel: 70 | text: 'Login' 71 | font_style: 'H4' 72 | halign: 'center' 73 | pos_hint: {'center_x' :0.5, 'center_y' :0.8} 74 | theme_text_color: "Custom" 75 | text_color: 1,0,0,1 76 | size_hint: 0.7,1 77 | MDLabel: 78 | text: 'Username:' 79 | font_style: 'Button' 80 | halign : 'center' 81 | pos_hint: {'center_x' :0.35, 'center_y' :0.65} 82 | theme_text_color: "Custom" 83 | text_color: 0,0,0,1 84 | MDTextField: 85 | id:username 86 | hint_text: "Enter Username" 87 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 88 | icon_right: "account-circle" 89 | theme_text_color: "Custom" 90 | text_color: 0,0,0,1 91 | size_hint_x: None 92 | width: 200 93 | MDLabel: 94 | text: 'Password:' 95 | font_style: 'Button' 96 | halign : 'center' 97 | pos_hint: {'center_x' :0.35, 'center_y' :0.49} 98 | theme_text_color: "Custom" 99 | text_color: 0,0,0,1 100 | MDTextField: 101 | id:password 102 | hint_text: "Enter Password" 103 | pos_hint: {'center_x' :0.5, 'center_y' :0.42} 104 | icon_right: "lock" 105 | theme_text_color: "Custom" 106 | text_color: 0,0,0,1 107 | size_hint_x: None 108 | width: 200 109 | password: True 110 | MDRaisedButton: 111 | text: 'Login' 112 | pos_hint:{'center_x' :0.5, 'center_y' :0.3} 113 | on_press:app.handle_login(root.manager,username,password) 114 | MDTextButton: 115 | text: 'Get Your Username And Password' 116 | pos_hint:{'center_x' :0.5, 'center_y' :0.1} 117 | font_style: 'Caption' 118 | theme_text_color: "Custom" 119 | text_color: 136/255,136/255,136/255,1 120 | on_press: root.manager.current = 'info' 121 | : 122 | name: 'info' 123 | MDLabel: 124 | text: 'Username : tech_machine' 125 | halign: 'center' 126 | font_style: 'Button' 127 | MDLabel: 128 | text: 'Password : 1234' 129 | halign: 'center' 130 | pos_hint: {'center_x' :0.5, 'center_y' :0.4} 131 | font_style: 'Button' 132 | Image: 133 | source: "new logo.png" 134 | size_hint: 0.80,0.80 135 | pos_hint: {'center_x' :0.5, 'center_y' :0.75} 136 | MDRaisedButton: 137 | text: 'Back' 138 | pos_hint:{'center_x' :0.5, 'center_y' :0.2} 139 | font_style: 'Button' 140 | on_press: root.manager.current = 'Start' 141 | : 142 | name: 'login' 143 | MDBoxLayout: 144 | orientation: 'vertical' 145 | MDToolbar: 146 | md_bg_color: app.theme_cls.accent_color 147 | md_bg_color: 0,0,0,1 148 | MDIconButton: 149 | icon: 'home' 150 | pos_hint:{'center_x' :0.08, 'center_y' :0.05} 151 | theme_text_color: 'Custom' 152 | text_color: app.theme_cls.accent_color 153 | text_color: 1,1,1,1 154 | on_press: root.manager.current = 'login' 155 | MDIconButton: 156 | icon: 'account' 157 | pos_hint:{'center_x' :0.9, 'center_y' :0.05} 158 | theme_text_color: 'Custom' 159 | text_color: app.theme_cls.accent_color 160 | text_color: 1,1,1,1 161 | on_press: root.manager.current = 'account' 162 | MDIconButton: 163 | icon: 'clipboard-text-outline' 164 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 165 | theme_text_color: 'Custom' 166 | text_color: app.theme_cls.accent_color 167 | text_color: 1,1,1,1 168 | on_press: root.manager.current = 'clipboard' 169 | Image: 170 | source: "tumblr_0d721771474a58bed4f508d1b35e17dd_e71a1cf6_540.gif" 171 | allow_stretch: True 172 | keep_ratio: False 173 | pos_hint: {'center_x' :0.5, 'center_y' :0.7} 174 | MDRaisedButton: 175 | text: 'Next' 176 | pos_hint:{'center_x' :0.5, 'center_y' :0.15} 177 | font_style: 'Button' 178 | on_press: root.manager.current = 'next' 179 | MDRaisedButton: 180 | md_bg_color: 0,0,0,1 181 | pos_hint:{'center_x' :0.2, 'center_y' :0.87} 182 | font_style: 'Button' 183 | size_hint: 0.3,0.2 184 | on_press: root.manager.current = 'termux' 185 | Image: 186 | source: "TERMUX.png" 187 | size_hint: 1,2 188 | pos_hint: {'center_x' :0.2, 'center_y' :0.87} 189 | MDRaisedButton: 190 | md_bg_color: 0,0,0,1 191 | pos_hint:{'center_x' :0.8, 'center_y' :0.87} 192 | font_style: 'Button' 193 | size_hint: 0.3,0.2 194 | on_press: root.manager.current = 'python' 195 | Image: 196 | source: "PYTHON.jpeg" 197 | size_hint: 1,2 198 | pos_hint: {'center_x' :0.8, 'center_y' :0.87} 199 | MDRaisedButton: 200 | md_bg_color: 0,0,0,1 201 | pos_hint:{'center_x' :0.2, 'center_y' :0.63} 202 | font_style: 'Button' 203 | size_hint: 0.3,0.2 204 | on_press: root.manager.current = 'c' 205 | Image: 206 | source: "C.png" 207 | size_hint: 1,2 208 | pos_hint: {'center_x' :0.2, 'center_y' :0.63} 209 | MDRaisedButton: 210 | md_bg_color: 0,0,0,1 211 | pos_hint:{'center_x' :0.8, 'center_y' :0.63} 212 | font_style: 'Button' 213 | size_hint: 0.3,0.2 214 | on_press: root.manager.current = 'c++' 215 | Image: 216 | source: "C++.jpeg" 217 | size_hint: 1,2 218 | pos_hint: {'center_x' :0.8, 'center_y' :0.63} 219 | MDRaisedButton: 220 | md_bg_color: 0,0,0,1 221 | pos_hint:{'center_x' :0.2, 'center_y' :0.39} 222 | font_style: 'Button' 223 | size_hint: 0.3,0.2 224 | on_press: root.manager.current = 'java' 225 | Image: 226 | source: "JAVA.jpeg" 227 | size_hint: 1,2 228 | pos_hint: {'center_x' :0.2, 'center_y' :0.39} 229 | MDRaisedButton: 230 | md_bg_color: 0,0,0,1 231 | pos_hint:{'center_x' :0.8, 'center_y' :0.39} 232 | font_style: 'Button' 233 | size_hint: 0.3,0.2 234 | on_press: root.manager.current = 'html' 235 | Image: 236 | source: "HTML.jpeg" 237 | size_hint: 1,2 238 | pos_hint: {'center_x' :0.8, 'center_y' :0.39} 239 | : 240 | name: 'next' 241 | MDBoxLayout: 242 | orientation: 'vertical' 243 | MDToolbar: 244 | md_bg_color: app.theme_cls.accent_color 245 | md_bg_color: 0,0,0,1 246 | MDIconButton: 247 | icon: 'home' 248 | pos_hint:{'center_x' :0.08, 'center_y' :0.05} 249 | theme_text_color: 'Custom' 250 | text_color: app.theme_cls.accent_color 251 | text_color: 1,1,1,1 252 | on_press: root.manager.current = 'login' 253 | MDIconButton: 254 | icon: 'account' 255 | pos_hint:{'center_x' :0.9, 'center_y' :0.05} 256 | theme_text_color: 'Custom' 257 | text_color: app.theme_cls.accent_color 258 | text_color: 1,1,1,1 259 | on_press: root.manager.current = 'account' 260 | MDIconButton: 261 | icon: 'clipboard-text-outline' 262 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 263 | theme_text_color: 'Custom' 264 | text_color: app.theme_cls.accent_color 265 | text_color: 1,1,1,1 266 | on_press: root.manager.current = 'clipboard' 267 | Image: 268 | source: "tumblr_0d721771474a58bed4f508d1b35e17dd_e71a1cf6_540.gif" 269 | allow_stretch: True 270 | keep_ratio: False 271 | pos_hint: {'center_x' :0.5, 'center_y' :0.7} 272 | MDRaisedButton: 273 | text: 'Back' 274 | pos_hint:{'center_x' :0.5, 'center_y' :0.15} 275 | font_style: 'Button' 276 | on_press: root.manager.current = 'login' 277 | MDRaisedButton: 278 | md_bg_color: 0,0,0,1 279 | pos_hint:{'center_x' :0.2, 'center_y' :0.87} 280 | font_style: 'Button' 281 | size_hint: 0.3,0.2 282 | on_press: root.manager.current = 'ardunio' 283 | Image: 284 | source: "Ardunio.png" 285 | size_hint: 1,2 286 | pos_hint: {'center_x' :0.2, 'center_y' :0.87} 287 | MDRaisedButton: 288 | md_bg_color: 0,0,0,1 289 | pos_hint:{'center_x' :0.8, 'center_y' :0.87} 290 | font_style: 'Button' 291 | size_hint: 0.3,0.2 292 | on_press: root.manager.current = 'rust' 293 | Image: 294 | source: "Rust.jpg" 295 | size_hint: 1,2 296 | pos_hint: {'center_x' :0.8, 'center_y' :0.87} 297 | MDRaisedButton: 298 | md_bg_color: 0,0,0,1 299 | pos_hint:{'center_x' :0.2, 'center_y' :0.63} 300 | font_style: 'Button' 301 | size_hint: 0.3,0.2 302 | on_press: root.manager.current = 'kotlin' 303 | Image: 304 | source: "Kotlin.png" 305 | size_hint: 1,2 306 | pos_hint: {'center_x' :0.2, 'center_y' :0.63} 307 | MDRaisedButton: 308 | md_bg_color: 0,0,0,1 309 | pos_hint:{'center_x' :0.8, 'center_y' :0.63} 310 | font_style: 'Button' 311 | size_hint: 0.3,0.2 312 | on_press: root.manager.current = 'perl' 313 | Image: 314 | source: "Perl.jpeg" 315 | size_hint: 1,2 316 | pos_hint: {'center_x' :0.8, 'center_y' :0.63} 317 | MDRaisedButton: 318 | md_bg_color: 0,0,0,1 319 | pos_hint:{'center_x' :0.2, 'center_y' :0.39} 320 | font_style: 'Button' 321 | size_hint: 0.3,0.2 322 | on_press: root.manager.current = 'go' 323 | Image: 324 | source: "Go.jpeg" 325 | size_hint: 1,2 326 | pos_hint: {'center_x' :0.2, 'center_y' :0.39} 327 | MDRaisedButton: 328 | md_bg_color: 0,0,0,1 329 | pos_hint:{'center_x' :0.8, 'center_y' :0.39} 330 | font_style: 'Button' 331 | size_hint: 0.3,0.2 332 | on_press: root.manager.current = 'php' 333 | Image: 334 | source: "PHP.jpeg" 335 | size_hint: 1,2 336 | pos_hint: {'center_x' :0.8, 'center_y' :0.39} 337 | : 338 | name: 'account' 339 | Image: 340 | source: "new logo.png" 341 | size_hint: 0.70,0.70 342 | pos_hint: {'center_x' :0.5, 'center_y' :0.82} 343 | MDLabel: 344 | text: 'TECH_MACHINE' 345 | halign: 'center' 346 | bold: True 347 | font_style : 'Button' 348 | pos_hint: {'center_x' :0.5, 'center_y' :0.63} 349 | MDBoxLayout: 350 | orientation: 'vertical' 351 | MDToolbar: 352 | md_bg_color: app.theme_cls.accent_color 353 | md_bg_color: 0,0,0,1 354 | MDRaisedButton: 355 | text: 'Terms And Condition' 356 | md_bg_color: [44/255,45/255,47/255,1] 357 | pos_hint: {'center_x' :0.5, 'center_y' :0.55} 358 | size_hint: 1,0.09 359 | line_color: 0,0,0,1 360 | on_press: root.manager.current = 'terms' 361 | MDRaisedButton: 362 | text: 'Follow Us' 363 | md_bg_color: [44/255,45/255,47/255,1] 364 | pos_hint: {'center_x' :0.5, 'center_y' :0.44} 365 | size_hint: 1,0.09 366 | line_color: 0,0,0,1 367 | on_press: root.manager.current = 'about' 368 | MDRaisedButton: 369 | text: 'Help' 370 | md_bg_color: [44/255,45/255,47/255,1] 371 | pos_hint: {'center_x' :0.5, 'center_y' :0.33} 372 | size_hint: 1,0.09 373 | line_color: 0,0,0,1 374 | on_press: root.manager.current = 'help' 375 | MDRaisedButton: 376 | text: 'LogOut' 377 | md_bg_color: [44/255,45/255,47/255,1] 378 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 379 | size_hint: 1,0.09 380 | line_color: 0,0,0,1 381 | on_press: root.manager.current = 'Start' 382 | MDIconButton: 383 | icon: 'home' 384 | pos_hint:{'center_x' :0.08, 'center_y' :0.05} 385 | theme_text_color: 'Custom' 386 | text_color: app.theme_cls.accent_color 387 | text_color: 1,1,1,1 388 | on_press: root.manager.current = 'login' 389 | MDIconButton: 390 | icon: 'account' 391 | pos_hint:{'center_x' :0.9, 'center_y' :0.05} 392 | theme_text_color: 'Custom' 393 | text_color: app.theme_cls.accent_color 394 | text_color: 1,1,1,1 395 | on_press: root.manager.current = 'account' 396 | MDIconButton: 397 | icon: 'clipboard-text-outline' 398 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 399 | theme_text_color: 'Custom' 400 | text_color: app.theme_cls.accent_color 401 | text_color: 1,1,1,1 402 | on_press: root.manager.current = 'clipboard' 403 | 404 | name: 'clipboard' 405 | MDBoxLayout: 406 | orientation: 'vertical' 407 | MDToolbar: 408 | md_bg_color: app.theme_cls.accent_color 409 | md_bg_color: 0,0,0,1 410 | MDIconButton: 411 | icon: 'home' 412 | pos_hint:{'center_x' :0.08, 'center_y' :0.05} 413 | theme_text_color: 'Custom' 414 | text_color: app.theme_cls.accent_color 415 | text_color: 1,1,1,1 416 | on_press: root.manager.current = 'login' 417 | MDIconButton: 418 | icon: 'account' 419 | pos_hint:{'center_x' :0.9, 'center_y' :0.05} 420 | theme_text_color: 'Custom' 421 | text_color: app.theme_cls.accent_color 422 | text_color: 1,1,1,1 423 | on_press: root.manager.current = 'account' 424 | MDIconButton: 425 | icon: 'clipboard-text-outline' 426 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 427 | theme_text_color: 'Custom' 428 | text_color: app.theme_cls.accent_color 429 | text_color: 1,1,1,1 430 | on_press: root.manager.current = 'clipboard' 431 | MDLabel: 432 | text: 'COURSE' 433 | halign: 'center' 434 | font_style : 'H6' 435 | pos_hint: {'center_x' :0.5, 'center_y' :0.98} 436 | theme_text_color: "Custom" 437 | text_color: 1,0,0,1 438 | MDRaisedButton: 439 | text: 'Termux' 440 | md_bg_color: [44/255,45/255,47/255,1] 441 | pos_hint: {'center_x' :0.5, 'center_y' :0.92} 442 | size_hint: 1,0.05 443 | line_color: 0,0,0,1 444 | on_press: root.manager.current = 'termux' 445 | MDRaisedButton: 446 | text: 'Python' 447 | md_bg_color: [44/255,45/255,47/255,1] 448 | pos_hint: {'center_x' :0.5, 'center_y' :0.85} 449 | size_hint: 1,0.05 450 | line_color: 0,0,0,1 451 | on_press: root.manager.current = 'python' 452 | MDRaisedButton: 453 | text: 'C' 454 | md_bg_color: [44/255,45/255,47/255,1] 455 | pos_hint: {'center_x' :0.5, 'center_y' :0.78} 456 | size_hint: 1,0.05 457 | line_color: 0,0,0,1 458 | on_press: root.manager.current = 'c' 459 | MDRaisedButton: 460 | text: 'C++' 461 | md_bg_color: [44/255,45/255,47/255,1] 462 | pos_hint: {'center_x' :0.5, 'center_y' :0.71} 463 | size_hint: 1,0.05 464 | line_color: 0,0,0,1 465 | on_press: root.manager.current = 'c++' 466 | MDRaisedButton: 467 | text: 'Java' 468 | md_bg_color: [44/255,45/255,47/255,1] 469 | pos_hint: {'center_x' :0.5, 'center_y' :0.64} 470 | size_hint: 1,0.05 471 | line_color: 0,0,0,1 472 | on_press: root.manager.current = 'java' 473 | MDRaisedButton: 474 | text: 'HTML' 475 | md_bg_color: [44/255,45/255,47/255,1] 476 | pos_hint: {'center_x' :0.5, 'center_y' :0.57} 477 | size_hint: 1,0.05 478 | line_color: 0,0,0,1 479 | on_press: root.manager.current = 'html' 480 | MDRaisedButton: 481 | text: 'Arduino' 482 | md_bg_color: [44/255,45/255,47/255,1] 483 | pos_hint: {'center_x' :0.5, 'center_y' :0.5} 484 | size_hint: 1,0.05 485 | line_color: 0,0,0,1 486 | on_press: root.manager.current = 'ardunio' 487 | MDRaisedButton: 488 | text: 'Rust' 489 | md_bg_color: [44/255,45/255,47/255,1] 490 | pos_hint: {'center_x' :0.5, 'center_y' :0.43} 491 | size_hint: 1,0.05 492 | line_color: 0,0,0,1 493 | on_press: root.manager.current = 'rust' 494 | MDRaisedButton: 495 | text: 'Kotlin' 496 | md_bg_color: [44/255,45/255,47/255,1] 497 | pos_hint: {'center_x' :0.5, 'center_y' :0.36} 498 | size_hint: 1,0.05 499 | line_color: 0,0,0,1 500 | on_press: root.manager.current = 'kotlin' 501 | MDRaisedButton: 502 | text: 'Perl' 503 | md_bg_color: [44/255,45/255,47/255,1] 504 | pos_hint: {'center_x' :0.5, 'center_y' :0.29} 505 | size_hint: 1,0.05 506 | line_color: 0,0,0,1 507 | on_press: root.manager.current = 'perl' 508 | MDRaisedButton: 509 | text: 'Go' 510 | md_bg_color: [44/255,45/255,47/255,1] 511 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 512 | size_hint: 1,0.05 513 | line_color: 0,0,0,1 514 | on_press: root.manager.current = 'go' 515 | MDRaisedButton: 516 | text: 'PHP' 517 | md_bg_color: [44/255,45/255,47/255,1] 518 | pos_hint: {'center_x' :0.5, 'center_y' :0.15} 519 | size_hint: 1,0.05 520 | line_color: 0,0,0,1 521 | on_press: root.manager.current = 'php' 522 | : 523 | name: 'termux' 524 | Image: 525 | source: "TERMUX.png" 526 | size_hint: 0.70,0.70 527 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 528 | MDRaisedButton: 529 | text: 'Back' 530 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 531 | on_press: root.manager.current = 'login' 532 | MDRaisedButton: 533 | text: 'Introduction' 534 | md_bg_color: [44/255,45/255,47/255,1] 535 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 536 | size_hint: 1,0.09 537 | line_color: 0,0,0,1 538 | on_release: app.launch_link(0) 539 | MDRaisedButton: 540 | text: 'Different Commands' 541 | md_bg_color: [44/255,45/255,47/255,1] 542 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 543 | size_hint: 1,0.09 544 | line_color: 0,0,0,1 545 | on_release: app.launch_link(1) 546 | MDRaisedButton: 547 | text: 'Hacking Tools' 548 | md_bg_color: [44/255,45/255,47/255,1] 549 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 550 | size_hint: 1,0.09 551 | line_color: 0,0,0,1 552 | on_release: app.launch_link(2) 553 | : 554 | name: 'python' 555 | Image: 556 | source: "PYTHON.jpeg" 557 | size_hint: 0.70,0.70 558 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 559 | MDRaisedButton: 560 | text: 'Back' 561 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 562 | on_press: root.manager.current = 'login' 563 | MDRaisedButton: 564 | text: 'History Of Python' 565 | md_bg_color: [44/255,45/255,47/255,1] 566 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 567 | size_hint: 1,0.09 568 | line_color: 0,0,0,1 569 | on_release: app.launch_link(3) 570 | MDRaisedButton: 571 | text: 'Introduction' 572 | md_bg_color: [44/255,45/255,47/255,1] 573 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 574 | size_hint: 1,0.09 575 | line_color: 0,0,0,1 576 | on_release: app.launch_link(4) 577 | MDRaisedButton: 578 | text: 'Basics Of Python' 579 | md_bg_color: [44/255,45/255,47/255,1] 580 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 581 | size_hint: 1,0.09 582 | line_color: 0,0,0,1 583 | on_release: app.launch_link(5) 584 | MDRaisedButton: 585 | text: 'Different Applications Of Python' 586 | md_bg_color: [44/255,45/255,47/255,1] 587 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 588 | size_hint: 1,0.09 589 | line_color: 0,0,0,1 590 | on_release: app.launch_link(6) 591 | : 592 | name: 'c' 593 | Image: 594 | source: "C.png" 595 | size_hint: 0.70,0.70 596 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 597 | MDRaisedButton: 598 | text: 'Back' 599 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 600 | on_press: root.manager.current = 'login' 601 | MDRaisedButton: 602 | text: 'History Of C' 603 | md_bg_color: [44/255,45/255,47/255,1] 604 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 605 | size_hint: 1,0.09 606 | line_color: 0,0,0,1 607 | on_release: app.launch_link(7) 608 | MDRaisedButton: 609 | text: 'Introduction' 610 | md_bg_color: [44/255,45/255,47/255,1] 611 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 612 | size_hint: 1,0.09 613 | line_color: 0,0,0,1 614 | on_release: app.launch_link(8) 615 | MDRaisedButton: 616 | text: 'Basics Of C' 617 | md_bg_color: [44/255,45/255,47/255,1] 618 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 619 | size_hint: 1,0.09 620 | line_color: 0,0,0,1 621 | on_release: app.launch_link(9) 622 | MDRaisedButton: 623 | text: 'Different Applications Of C' 624 | md_bg_color: [44/255,45/255,47/255,1] 625 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 626 | size_hint: 1,0.09 627 | line_color: 0,0,0,1 628 | on_release: app.launch_link(10) 629 | : 630 | name: 'c++' 631 | Image: 632 | source: "C++.jpeg" 633 | size_hint: 0.70,0.70 634 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 635 | MDRaisedButton: 636 | text: 'Back' 637 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 638 | on_press: root.manager.current = 'login' 639 | MDRaisedButton: 640 | text: 'History Of C++' 641 | md_bg_color: [44/255,45/255,47/255,1] 642 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 643 | size_hint: 1,0.09 644 | line_color: 0,0,0,1 645 | on_release: app.launch_link(11) 646 | MDRaisedButton: 647 | text: 'Introduction' 648 | md_bg_color: [44/255,45/255,47/255,1] 649 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 650 | size_hint: 1,0.09 651 | line_color: 0,0,0,1 652 | on_release: app.launch_link(12) 653 | MDRaisedButton: 654 | text: 'Basics Of C++' 655 | md_bg_color: [44/255,45/255,47/255,1] 656 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 657 | size_hint: 1,0.09 658 | line_color: 0,0,0,1 659 | on_release: app.launch_link(13) 660 | MDRaisedButton: 661 | text: 'Different Applications Of C++' 662 | md_bg_color: [44/255,45/255,47/255,1] 663 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 664 | size_hint: 1,0.09 665 | line_color: 0,0,0,1 666 | on_release: app.launch_link(14) 667 | : 668 | name: 'java' 669 | Image: 670 | source: "JAVA.jpeg" 671 | size_hint: 0.70,0.70 672 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 673 | MDRaisedButton: 674 | text: 'Back' 675 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 676 | on_press: root.manager.current = 'login' 677 | MDRaisedButton: 678 | text: 'History Of JAVA' 679 | md_bg_color: [44/255,45/255,47/255,1] 680 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 681 | size_hint: 1,0.09 682 | line_color: 0,0,0,1 683 | on_release: app.launch_link(15) 684 | MDRaisedButton: 685 | text: 'Introduction' 686 | md_bg_color: [44/255,45/255,47/255,1] 687 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 688 | size_hint: 1,0.09 689 | line_color: 0,0,0,1 690 | on_release: app.launch_link(16) 691 | MDRaisedButton: 692 | text: 'Basics Of JAVA' 693 | md_bg_color: [44/255,45/255,47/255,1] 694 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 695 | size_hint: 1,0.09 696 | line_color: 0,0,0,1 697 | on_release: app.launch_link(17) 698 | MDRaisedButton: 699 | text: 'Different Applications Of JAVA' 700 | md_bg_color: [44/255,45/255,47/255,1] 701 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 702 | size_hint: 1,0.09 703 | line_color: 0,0,0,1 704 | on_release: app.launch_link(18) 705 | : 706 | name: 'html' 707 | Image: 708 | source: "HTML.jpeg" 709 | size_hint: 0.70,0.70 710 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 711 | MDRaisedButton: 712 | text: 'Back' 713 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 714 | on_press: root.manager.current = 'login' 715 | MDRaisedButton: 716 | text: 'History Of HTML' 717 | md_bg_color: [44/255,45/255,47/255,1] 718 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 719 | size_hint: 1,0.09 720 | line_color: 0,0,0,1 721 | on_release: app.launch_link(19) 722 | MDRaisedButton: 723 | text: 'Introduction' 724 | md_bg_color: [44/255,45/255,47/255,1] 725 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 726 | size_hint: 1,0.09 727 | line_color: 0,0,0,1 728 | on_release: app.launch_link(20) 729 | MDRaisedButton: 730 | text: 'Basics Of HTML' 731 | md_bg_color: [44/255,45/255,47/255,1] 732 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 733 | size_hint: 1,0.09 734 | line_color: 0,0,0,1 735 | on_release: app.launch_link(21) 736 | MDRaisedButton: 737 | text: 'Different Applications Of HTML' 738 | md_bg_color: [44/255,45/255,47/255,1] 739 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 740 | size_hint: 1,0.09 741 | line_color: 0,0,0,1 742 | on_release: app.launch_link(22) 743 | : 744 | name: 'ardunio' 745 | Image: 746 | source: "Ardunio.png" 747 | size_hint: 0.70,0.70 748 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 749 | MDRaisedButton: 750 | text: 'Back' 751 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 752 | on_press: root.manager.current = 'next' 753 | MDRaisedButton: 754 | text: 'History Of Arduino' 755 | md_bg_color: [44/255,45/255,47/255,1] 756 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 757 | size_hint: 1,0.09 758 | line_color: 0,0,0,1 759 | on_release: app.launch_link(23) 760 | MDRaisedButton: 761 | text: 'Introduction' 762 | md_bg_color: [44/255,45/255,47/255,1] 763 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 764 | size_hint: 1,0.09 765 | line_color: 0,0,0,1 766 | on_release: app.launch_link(24) 767 | MDRaisedButton: 768 | text: 'Basics Of Arduino' 769 | md_bg_color: [44/255,45/255,47/255,1] 770 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 771 | size_hint: 1,0.09 772 | line_color: 0,0,0,1 773 | on_release: app.launch_link(25) 774 | MDRaisedButton: 775 | text: 'Different Applications Of Arduino' 776 | md_bg_color: [44/255,45/255,47/255,1] 777 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 778 | size_hint: 1,0.09 779 | line_color: 0,0,0,1 780 | on_release: app.launch_link(26) 781 | : 782 | name: 'rust' 783 | Image: 784 | source: "Rust.jpg" 785 | size_hint: 0.70,0.70 786 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 787 | MDRaisedButton: 788 | text: 'Back' 789 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 790 | on_press: root.manager.current = 'next' 791 | MDRaisedButton: 792 | text: 'History Of Rust' 793 | md_bg_color: [44/255,45/255,47/255,1] 794 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 795 | size_hint: 1,0.09 796 | line_color: 0,0,0,1 797 | on_release: app.launch_link(27) 798 | MDRaisedButton: 799 | text: 'Introduction' 800 | md_bg_color: [44/255,45/255,47/255,1] 801 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 802 | size_hint: 1,0.09 803 | line_color: 0,0,0,1 804 | on_release: app.launch_link(28) 805 | MDRaisedButton: 806 | text: 'Basics Of Rust' 807 | md_bg_color: [44/255,45/255,47/255,1] 808 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 809 | size_hint: 1,0.09 810 | line_color: 0,0,0,1 811 | on_release: app.launch_link(29) 812 | MDRaisedButton: 813 | text: 'Different Applications Of Rust' 814 | md_bg_color: [44/255,45/255,47/255,1] 815 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 816 | size_hint: 1,0.09 817 | line_color: 0,0,0,1 818 | on_release: app.launch_link(30) 819 | : 820 | name: 'kotlin' 821 | Image: 822 | source: "Kotlin.png" 823 | size_hint: 0.70,0.70 824 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 825 | MDRaisedButton: 826 | text: 'Back' 827 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 828 | on_press: root.manager.current = 'next' 829 | MDRaisedButton: 830 | text: 'History Of Kotlin' 831 | md_bg_color: [44/255,45/255,47/255,1] 832 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 833 | size_hint: 1,0.09 834 | line_color: 0,0,0,1 835 | on_release: app.launch_link(31) 836 | MDRaisedButton: 837 | text: 'Introduction' 838 | md_bg_color: [44/255,45/255,47/255,1] 839 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 840 | size_hint: 1,0.09 841 | line_color: 0,0,0,1 842 | on_release: app.launch_link(32) 843 | MDRaisedButton: 844 | text: 'Basics Of Kotlin' 845 | md_bg_color: [44/255,45/255,47/255,1] 846 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 847 | size_hint: 1,0.09 848 | line_color: 0,0,0,1 849 | on_release: app.launch_link(33) 850 | MDRaisedButton: 851 | text: 'Different Applications Of Kotlin' 852 | md_bg_color: [44/255,45/255,47/255,1] 853 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 854 | size_hint: 1,0.09 855 | line_color: 0,0,0,1 856 | on_release: app.launch_link(34) 857 | : 858 | name: 'perl' 859 | Image: 860 | source: "Perl.jpeg" 861 | size_hint: 0.70,0.70 862 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 863 | MDRaisedButton: 864 | text: 'Back' 865 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 866 | on_press: root.manager.current = 'next' 867 | MDRaisedButton: 868 | text: 'History Of Perl' 869 | md_bg_color: [44/255,45/255,47/255,1] 870 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 871 | size_hint: 1,0.09 872 | line_color: 0,0,0,1 873 | on_release: app.launch_link(35) 874 | MDRaisedButton: 875 | text: 'Introduction' 876 | md_bg_color: [44/255,45/255,47/255,1] 877 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 878 | size_hint: 1,0.09 879 | line_color: 0,0,0,1 880 | on_release: app.launch_link(36) 881 | MDRaisedButton: 882 | text: 'Basics Of Perl' 883 | md_bg_color: [44/255,45/255,47/255,1] 884 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 885 | size_hint: 1,0.09 886 | line_color: 0,0,0,1 887 | on_release: app.launch_link(37) 888 | MDRaisedButton: 889 | text: 'Different Applications Of Perl' 890 | md_bg_color: [44/255,45/255,47/255,1] 891 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 892 | size_hint: 1,0.09 893 | line_color: 0,0,0,1 894 | on_release: app.launch_link(38) 895 | : 896 | name: 'go' 897 | Image: 898 | source: "Go.jpeg" 899 | size_hint: 0.70,0.70 900 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 901 | MDRaisedButton: 902 | text: 'Back' 903 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 904 | on_press: root.manager.current = 'next' 905 | MDRaisedButton: 906 | text: 'History Of GO' 907 | md_bg_color: [44/255,45/255,47/255,1] 908 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 909 | size_hint: 1,0.09 910 | line_color: 0,0,0,1 911 | on_release: app.launch_link(39) 912 | MDRaisedButton: 913 | text: 'Introduction' 914 | md_bg_color: [44/255,45/255,47/255,1] 915 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 916 | size_hint: 1,0.09 917 | line_color: 0,0,0,1 918 | on_release: app.launch_link(40) 919 | MDRaisedButton: 920 | text: 'Basics Of GO' 921 | md_bg_color: [44/255,45/255,47/255,1] 922 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 923 | size_hint: 1,0.09 924 | line_color: 0,0,0,1 925 | on_release: app.launch_link(41) 926 | MDRaisedButton: 927 | text: 'Different Applications Of GO' 928 | md_bg_color: [44/255,45/255,47/255,1] 929 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 930 | size_hint: 1,0.09 931 | line_color: 0,0,0,1 932 | on_release: app.launch_link(42) 933 | : 934 | name: 'php' 935 | Image: 936 | source: "PHP.jpeg" 937 | size_hint: 0.70,0.70 938 | pos_hint: {'center_x' :0.5, 'center_y' :0.86} 939 | MDRaisedButton: 940 | text: 'Back' 941 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 942 | on_press: root.manager.current = 'next' 943 | MDRaisedButton: 944 | text: 'History Of PHP' 945 | md_bg_color: [44/255,45/255,47/255,1] 946 | pos_hint: {'center_x' :0.5, 'center_y' :0.58} 947 | size_hint: 1,0.09 948 | line_color: 0,0,0,1 949 | on_release: app.launch_link(43) 950 | MDRaisedButton: 951 | text: 'Introduction' 952 | md_bg_color: [44/255,45/255,47/255,1] 953 | pos_hint: {'center_x' :0.5, 'center_y' :0.46} 954 | size_hint: 1,0.09 955 | line_color: 0,0,0,1 956 | on_release: app.launch_link(44) 957 | MDRaisedButton: 958 | text: 'Basics Of PHP' 959 | md_bg_color: [44/255,45/255,47/255,1] 960 | pos_hint: {'center_x' :0.5, 'center_y' :0.34} 961 | size_hint: 1,0.09 962 | line_color: 0,0,0,1 963 | on_release: app.launch_link(45) 964 | MDRaisedButton: 965 | text: 'Different Applications Of PHP' 966 | md_bg_color: [44/255,45/255,47/255,1] 967 | pos_hint: {'center_x' :0.5, 'center_y' :0.22} 968 | size_hint: 1,0.09 969 | line_color: 0,0,0,1 970 | on_release: app.launch_link(46) 971 | 972 | name: 'terms' 973 | MDLabel: 974 | text: 'TERMS AND CONDITIONS' 975 | pos_hint: {'center_x' :0.5, 'center_y' :0.95} 976 | halign:'center' 977 | theme_text_color: "Custom" 978 | text_color: 0,0,0,1 979 | font_style : 'H6' 980 | MDLabel: 981 | text: 'WELCOME! First of all we are not responsible for any misuse of any information. The information is only for educational purpose. You can contact through my e-mail for any help, unwanted e-mails are not acceptable. This application will not access user storage, data, files, photos. The user need not login through his name, the name and password is already given so that user need not revel their identity. User are not allowed to modify or make any changes in application. No guide is requried to use this application, user friendly etc. User are not allowed to violate the rules, if rules are violated that user is not allowed to use this app again. If yes click and continue.' 982 | pos_hint: {'center_x' :0.5, 'center_y' :0.75} 983 | halign:'center' 984 | theme_text_color: "Custom" 985 | text_color: 0,0,0,1 986 | font_style : 'Body2' 987 | MDCheckbox: 988 | pos_hint: {'center_x' :0.23, 'center_y' :0.51} 989 | on_press: root.manager.current = 'login' 990 | MDLabel: 991 | text: 'i agree to terms and conditions' 992 | pos_hint: {'center_x' :0.5, 'center_y' :0.55} 993 | halign:'center' 994 | theme_text_color: "Custom" 995 | text_color: 0,0,0,1 996 | font_style : 'Button' 997 | MDLabel: 998 | text: '"To continue click the box"' 999 | pos_hint: {'center_x' :0.51, 'center_y' :0.51} 1000 | halign:'center' 1001 | theme_text_color: "Custom" 1002 | text_color: 136/255,136/255,136/255,1 1003 | font_style : 'Body2' 1004 | Image: 1005 | source: "new logo.png" 1006 | size_hint: 0.70,0.70 1007 | pos_hint: {'center_x' :0.5, 'center_y' :0.3} 1008 | 1009 | name: 'about' 1010 | MDRaisedButton: 1011 | text: 'Back' 1012 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 1013 | on_press: root.manager.current = 'account' 1014 | MDIconButton: 1015 | icon: 'github' 1016 | pos_hint:{'center_x' :0.25, 'center_y' :0.85} 1017 | theme_text_color: 'Custom' 1018 | text_color: app.theme_cls.accent_color 1019 | text_color: 1,1,1,1 1020 | user_font_size: "110sp" 1021 | md_bg_color: 0,0,0,1 1022 | on_release: app.launch_link(47) 1023 | MDLabel: 1024 | text: 'GitHub' 1025 | pos_hint: {'center_x' :0.25, 'center_y' :0.72} 1026 | halign:'center' 1027 | theme_text_color: "Custom" 1028 | text_color: 0,0,0,1 1029 | font_style : 'Button' 1030 | MDIconButton: 1031 | icon: 'web' 1032 | pos_hint:{'center_x' :0.75, 'center_y' :0.85} 1033 | theme_text_color: 'Custom' 1034 | text_color: app.theme_cls.accent_color 1035 | text_color: 1,1,1,1 1036 | user_font_size: "110sp" 1037 | md_bg_color: 0,0,0,1 1038 | on_release: app.launch_link(48) 1039 | MDLabel: 1040 | text: 'WEBSITE' 1041 | pos_hint: {'center_x' :0.75, 'center_y' :0.72} 1042 | halign:'center' 1043 | theme_text_color: "Custom" 1044 | text_color: 0,0,0,1 1045 | font_style : 'Button' 1046 | MDIconButton: 1047 | icon: 'youtube' 1048 | pos_hint:{'center_x' :0.25, 'center_y' :0.58} 1049 | theme_text_color: 'Custom' 1050 | text_color: app.theme_cls.accent_color 1051 | text_color: 1,1,1,1 1052 | user_font_size: "110sp" 1053 | md_bg_color: 0,0,0,1 1054 | on_release: app.launch_link(49) 1055 | MDLabel: 1056 | text: 'youtube' 1057 | pos_hint: {'center_x' :0.25, 'center_y' :0.45} 1058 | halign:'center' 1059 | theme_text_color: "Custom" 1060 | text_color: 0,0,0,1 1061 | font_style : 'Button' 1062 | MDIconButton: 1063 | icon: 'gmail' 1064 | pos_hint:{'center_x' :0.75, 'center_y' :0.58} 1065 | theme_text_color: 'Custom' 1066 | text_color: app.theme_cls.accent_color 1067 | text_color: 1,1,1,1 1068 | user_font_size: "110sp" 1069 | md_bg_color: 0,0,0,1 1070 | on_release: app.launch_link(50) 1071 | MDLabel: 1072 | text: 'g-mail' 1073 | pos_hint: {'center_x' :0.75, 'center_y' :0.45} 1074 | halign:'center' 1075 | theme_text_color: "Custom" 1076 | text_color: 0,0,0,1 1077 | font_style : 'Button' 1078 | MDLabel: 1079 | text: 'TECH_MACHINE' 1080 | pos_hint: {'center_x' :0.5, 'center_y' :0.28} 1081 | halign:'center' 1082 | theme_text_color: "Custom" 1083 | text_color: 0,0,0,1 1084 | font_style : 'Button' 1085 | : 1086 | name: 'help' 1087 | MDRaisedButton: 1088 | text: 'Back' 1089 | pos_hint:{'center_x' :0.5, 'center_y' :0.05} 1090 | on_press: root.manager.current = 'account' 1091 | MDIconButton: 1092 | icon: 'gmail' 1093 | pos_hint:{'center_x' :0.5, 'center_y' :0.65} 1094 | theme_text_color: 'Custom' 1095 | text_color: app.theme_cls.accent_color 1096 | text_color: 1,1,1,1 1097 | user_font_size: "100sp" 1098 | md_bg_color: 0,0,0,1 1099 | on_release: app.launch_link(50) 1100 | MDLabel: 1101 | text: 'For Any Help Contact Through My G-Mail' 1102 | pos_hint: {'center_x' :0.5, 'center_y' :0.8} 1103 | halign:'center' 1104 | theme_text_color: "Custom" 1105 | text_color: 0,0,0,1 1106 | font_style : 'H6' 1107 | MDLabel: 1108 | text: 'TECH_MACHINE' 1109 | pos_hint: {'center_x' :0.5, 'center_y' :0.5} 1110 | halign:'center' 1111 | theme_text_color: "Custom" 1112 | text_color: 0,0,0,1 1113 | font_style : 'Button' 1114 | MDLabel: 1115 | text: 'NOTE : The Content In This App Is Only For Educational Purposes Only. We Are Not Responsible For Any Misuse Of Information' 1116 | pos_hint: {'center_x' :0.5, 'center_y' :0.4} 1117 | halign:'center' 1118 | theme_text_color: "Custom" 1119 | text_color: 0,0,0,1 1120 | font_style : 'Button' 1121 | """ 1122 | 1123 | 1124 | class MenuScreen(Screen): 1125 | pass 1126 | 1127 | class StartScreen(Screen): 1128 | pass 1129 | 1130 | class LoginScreen(Screen): 1131 | pass 1132 | 1133 | class InfoScreen(Screen): 1134 | pass 1135 | 1136 | class NextScreen(Screen): 1137 | pass 1138 | 1139 | class AccountScreen(Screen): 1140 | pass 1141 | 1142 | class ClipboardScreen(Screen): 1143 | pass 1144 | 1145 | class TermuxScreen(Screen): 1146 | pass 1147 | 1148 | class PythonScreen(Screen): 1149 | pass 1150 | 1151 | class CScreen(Screen): 1152 | pass 1153 | 1154 | class CplusScreen(Screen): 1155 | pass 1156 | 1157 | class JavaScreen(Screen): 1158 | pass 1159 | 1160 | class HtmlScreen(Screen): 1161 | pass 1162 | 1163 | class ArdunioScreen(Screen): 1164 | pass 1165 | 1166 | class RustScreen(Screen): 1167 | pass 1168 | 1169 | class KotlinScreen(Screen): 1170 | pass 1171 | 1172 | class PerlScreen(Screen): 1173 | pass 1174 | 1175 | class GoScreen(Screen): 1176 | pass 1177 | 1178 | class PhpScreen(Screen): 1179 | pass 1180 | 1181 | class TermsScreen(Screen): 1182 | pass 1183 | 1184 | class AboutScreen(Screen): 1185 | pass 1186 | 1187 | class HelpScreen(Screen): 1188 | pass 1189 | 1190 | sm = ScreenManager() 1191 | sm.add_widget(MenuScreen(name='menu')) 1192 | sm.add_widget(MenuScreen(name='start')) 1193 | sm.add_widget(MenuScreen(name='login')) 1194 | sm.add_widget(MenuScreen(name='info')) 1195 | sm.add_widget(MenuScreen(name='next')) 1196 | sm.add_widget(MenuScreen(name='account')) 1197 | sm.add_widget(MenuScreen(name='clipboard')) 1198 | sm.add_widget(MenuScreen(name='termux')) 1199 | sm.add_widget(MenuScreen(name='python')) 1200 | sm.add_widget(MenuScreen(name='c')) 1201 | sm.add_widget(MenuScreen(name='c++')) 1202 | sm.add_widget(MenuScreen(name='java')) 1203 | sm.add_widget(MenuScreen(name='html')) 1204 | sm.add_widget(MenuScreen(name='ardunio')) 1205 | sm.add_widget(MenuScreen(name='rust')) 1206 | sm.add_widget(MenuScreen(name='kotlin')) 1207 | sm.add_widget(MenuScreen(name='perl')) 1208 | sm.add_widget(MenuScreen(name='go')) 1209 | sm.add_widget(MenuScreen(name='php')) 1210 | sm.add_widget(MenuScreen(name='terms')) 1211 | sm.add_widget(MenuScreen(name='about')) 1212 | sm.add_widget(MenuScreen(name='help')) 1213 | 1214 | class Tech_MachineApp(MDApp): 1215 | username = "TECH_MACHINE" 1216 | password = "1234" 1217 | 1218 | def build(self): 1219 | screen = Builder.load_string(screen_helper) 1220 | self.icon = "new logo.png" 1221 | self.presplash = "Presplash.png" 1222 | return screen 1223 | 1224 | def launch_link(self, index): 1225 | link = '' 1226 | if index == 0: 1227 | link = 'https://drive.google.com/file/d/1-Mz5maCSo5TpQ6Mw8PaAahz9IuLqB680/view?usp=drivesdk' 1228 | elif index == 1: 1229 | link = 'https://drive.google.com/file/d/1-dYuGXrI4MmYMGUiM31EN_pFsHiRjmwU/view?usp=drivesdk' 1230 | elif index == 2: 1231 | link = 'https://drive.google.com/file/d/10LKfAT1x4hHWkC6J5wLGrHc5MEH6WO2N/view?usp=drivesdk' 1232 | elif index == 3: 1233 | link = 'https://drive.google.com/file/d/1wSwDF61ky6vfRTIZOYbSyd0QQwChp9cf/view?usp=drivesdk' 1234 | elif index == 4: 1235 | link = 'https://drive.google.com/file/d/1wTt0-lrV34TATopQQOQ234dJbOaYw9qY/view?usp=drivesdk' 1236 | elif index == 5: 1237 | link = 'https://drive.google.com/file/d/1wW3okNeUeba2gqQPIWrz75QZXCopNxc9/view?usp=drivesdk' 1238 | elif index == 6: 1239 | link = 'https://drive.google.com/file/d/1wYk57KSWO6U2TetHMxkNaVGPwPQPeVhS/view?usp=drivesdk' 1240 | elif index == 7: 1241 | link = 'https://drive.google.com/file/d/116SX8xNXrh3nbYUW0aTKU3HboGvp7kAN/view?usp=drivesdk' 1242 | elif index == 8: 1243 | link = 'https://drive.google.com/file/d/19hhmY8Nxq7RnZGw89M0wfAcLs1Ar8mvr/view?usp=drivesdk' 1244 | elif index == 9: 1245 | link = 'https://drive.google.com/file/d/11z61ZDjlx5RxaY0AyM1I5GEdU0zNyc4b/view?usp=drivesdk' 1246 | elif index == 10: 1247 | link = 'https://drive.google.com/file/d/19p7MyrmcCc4HuyZQd4azc7SwwpeX_0gV/view?usp=drivesdk' 1248 | elif index == 11: 1249 | link = 'https://drive.google.com/file/d/1AHDDVIDARCVRTs0PFgrFqxRc9Apbgy-B/view?usp=drivesdk' 1250 | elif index == 12: 1251 | link = 'https://drive.google.com/file/d/1APHLq_Xc8Io8TRjuuBpzoUzpJenONp9d/view?usp=drivesdk' 1252 | elif index == 13: 1253 | link = 'https://drive.google.com/file/d/1AWYn6PVvzFJq9-xK7WUF5tdUZqy2iuHW/view?usp=drivesdk' 1254 | elif index == 14: 1255 | link = 'https://drive.google.com/file/d/1AhxeRpkLThCZzIbAEWWjD7iUeBM9H2wH/view?usp=drivesdk' 1256 | elif index == 15: 1257 | link = 'https://drive.google.com/file/d/1a3tfyUXIptjBIo3qo1MIZudPw-6jgBLx/view?usp=drivesdk' 1258 | elif index == 16: 1259 | link = 'https://drive.google.com/file/d/1a7KdDmikIwijVCLmtG48Q29-p-ckh83P/view?usp=drivesdk' 1260 | elif index == 17: 1261 | link = 'https://drive.google.com/file/d/1_whPDF51gQIqe_CWyciPDNiS47FBGGI-/view?usp=drivesdk' 1262 | elif index == 18: 1263 | link = 'https://drive.google.com/file/d/1aBNvN11HJP9gkeWhLphxX6at1s0ZeX5N/view?usp=drivesdk' 1264 | elif index == 19: 1265 | link = 'https://drive.google.com/file/d/1q9alWi_dahhGNzkVIKY7OZ4EWXTRqcrD/view?usp=drivesdk' 1266 | elif index == 20: 1267 | link = 'https://drive.google.com/file/d/1qS-oT14MNE5vaDUUvqRNN6BR8qZUfqrk/view?usp=drivesdk' 1268 | elif index == 21: 1269 | link = 'https://drive.google.com/file/d/1qYkmq0Z5m6YpzuNGqJ_v5mL5wYzREc__/view?usp=drivesdk' 1270 | elif index == 22: 1271 | link = 'https://drive.google.com/file/d/1qg2Vyhl6E5dITwuxAqJKM3henjD3xtCx/view?usp=drivesdk' 1272 | elif index == 23: 1273 | link = 'https://drive.google.com/file/d/10S9fJCUuit-o3fTcHNOrcfzUFXWoBh9F/view?usp=drivesdk' 1274 | elif index == 24: 1275 | link = 'https://drive.google.com/file/d/10Snmg-D4_0q25Tsga97xZwJS-uuYbJ-F/view?usp=drivesdk' 1276 | elif index == 25: 1277 | link = 'https://drive.google.com/file/d/10U7Oi7PJNvOfB0TYw2h3NpxyVymIp-_9/view?usp=drivesdk' 1278 | elif index == 26: 1279 | link = 'https://drive.google.com/file/d/10ZmRwrkktjbha-R_lg6IpPatoblg9Q0Q/view?usp=drivesdk' 1280 | elif index == 27: 1281 | link = 'https://drive.google.com/file/d/15euthPa33mdklSNcEy8bBIB08sK-K2_X/view?usp=drivesdk' 1282 | elif index == 28: 1283 | link = 'https://drive.google.com/file/d/15ezVVmXflk9p4KCYon5ON1hbJFB2tIKv/view?usp=drivesdk' 1284 | elif index == 29: 1285 | link = 'https://drive.google.com/file/d/15iTYiA6SenO06h5SgTDjbbVWyls_R5Q8/view?usp=drivesdk' 1286 | elif index == 30: 1287 | link = 'https://drive.google.com/file/d/15jcmYX4i1LvtTUa4jX6pCyo9sP7njiIH/view?usp=drivesdk' 1288 | elif index == 31: 1289 | link = 'https://drive.google.com/file/d/14_iQePslzkRszSpu5bw4dAkjMN76cQyE/view?usp=drivesdk' 1290 | elif index == 32: 1291 | link = 'https://drive.google.com/file/d/14b7kgSEZ-obW5FVr2RSOB7EdhPXU9bIW/view?usp=drivesdk' 1292 | elif index == 33: 1293 | link = 'https://drive.google.com/file/d/14dRG1g5aq5MweY5psDNJiw4kkfGxsOK4/view?usp=drivesdk' 1294 | elif index == 34: 1295 | link = 'https://drive.google.com/file/d/14eKgeY98dqZxlhs9-eq3y7Is0yisaJO2/view?usp=drivesdk' 1296 | elif index == 35: 1297 | link = 'https://drive.google.com/file/d/13EzQRik_L6v8h--UD3ef7NW27MXs9GGp/view?usp=drivesdk' 1298 | elif index == 36: 1299 | link = 'https://drive.google.com/file/d/13F_ncnyBYUauLa321tLWxS-Sfi0TS9EW/view?usp=drivesdk' 1300 | elif index == 37: 1301 | link = 'https://drive.google.com/file/d/13bk10UONzp0NrIqx5lHEGo7U9rCBYbtS/view?usp=drivesdk' 1302 | elif index == 38: 1303 | link = 'https://drive.google.com/file/d/13ctK2sD1kCHngFRTWcAH9Yb37DwmrCZg/view?usp=drivesdk' 1304 | elif index == 39: 1305 | link = 'https://drive.google.com/file/d/12RnGoqrpsr05HfUX3kBnxbe1rM3GNaEA/view?usp=drivesdk' 1306 | elif index == 40: 1307 | link = 'https://drive.google.com/file/d/12SXlrcmnhJwLx88DM8Rd53w7tk6IgSgm/view?usp=drivesdk' 1308 | elif index == 41: 1309 | link = 'https://drive.google.com/file/d/12UzPujOJBJeDQpWqAOYYIBblTTEF1oEf/view?usp=drivesdk' 1310 | elif index == 42: 1311 | link = 'https://drive.google.com/file/d/12X1K0hCOUGoZr1CGYKozXoqZ_J8x6JDH/view?usp=drivesdk' 1312 | elif index == 43: 1313 | link = 'https://drive.google.com/file/d/15VYo5dFeIkR9u0wIGv-7cMJcydrmo7x8/view?usp=drivesdk' 1314 | elif index == 44: 1315 | link = 'https://drive.google.com/file/d/11BT0KcPEo5HZvoQNrGTA44VGbNyuM5FO/view?usp=drivesdk' 1316 | elif index == 45: 1317 | link = 'https://drive.google.com/file/d/15X2xPhj00Jgxd4FJMMNZCbJ_KjoEKVFA/view?usp=drivesdk' 1318 | elif index == 46: 1319 | link = 'https://drive.google.com/file/d/15ajAYjDZMtoZzy7fWfCjvFs4DudTaU-b/view?usp=drivesdk' 1320 | elif index == 47: 1321 | link = 'https://github.com/Krupal-create' 1322 | elif index == 48: 1323 | link = 'techmachine.data.blog' 1324 | elif index == 49: 1325 | link = 'https://youtube.com/channel/UCtinUWWfayuaGKuTEHHTkIQ' 1326 | elif index == 50: 1327 | link = 'techmachine13@gmail.com' 1328 | webbrowser.open(link) 1329 | 1330 | def handle_login(self, screen_manager, username, password): 1331 | 1332 | if username.text == self.username and password.text == self.password: 1333 | print(colorama.Fore.GREEN + f"Logged in successfully as {self.username}") 1334 | colorama.reinit() 1335 | screen_manager.current = "terms" 1336 | 1337 | else: 1338 | print(colorama.Fore.RED + "INVALID CREDENTIALS, TRY AGAIN !!!") 1339 | colorama.reinit() 1340 | 1341 | username.text = "" 1342 | password.text = "" 1343 | 1344 | Tech_MachineApp().run() 1345 | -------------------------------------------------------------------------------- /Python App/new logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/new logo.png -------------------------------------------------------------------------------- /Python App/tumblr_0d721771474a58bed4f508d1b35e17dd_e71a1cf6_540.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krupal-create/Python-App/0d45d2291c1dc119a718c8f9e96dd2c0e2d5790c/Python App/tumblr_0d721771474a58bed4f508d1b35e17dd_e71a1cf6_540.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Programming learning app 2 | This app is built using python Kivy. A all in one coding. 3 | 4 | This app basically consists of a login page and this app is based on educational purposes for programmers. In this app you can learn about 12 programming languages including termux & ardunio. The programming is done using python kivy,kivymd. In python app creation can easily be done using kivy, which is very easy to understand and simple.Kivy is the main framework developed by the Kivy organization, alongside Python for Android, Kivy iOS, and several other libraries meant to be used on all platforms. In 2012, Kivy got a $5000 grant from the Python Software Foundation for porting it to Python 3.3. Kivy also supports the Raspberry Pi which was funded through Bountysource. 5 | 6 | # Kivy: 7 | The Open Source Python App development Framework. 8 | 9 | Build and distribute beautiful Python cross-platform GUI apps with ease. 10 | Kivy runs on Android, iOS, Linux, macOS and Windows. 11 | 12 | Kivy has been built to be easy to use, cross-platform and fast. 13 | 14 | With a single codebase, you will be able to deploy apps on Windows, Linux, macOS, iOS and Android. 15 | 16 | # Business Friendly 17 | 18 | Kivy is released under the MIT License and is 100% free to use and is professionally developed, backed and mantained. 19 | 20 | Companies and individual are using Kivy for their projects everyday. 21 | 22 | # SCREENSHOTS 23 | 24 | ![Tech_Machine 03-10-2022 21_34_54](https://user-images.githubusercontent.com/85097081/193731919-8a8bec9e-709c-4c9c-b7fe-7586b5a435ad.png) 25 | 26 | ![Tech_Machine 03-10-2022 21_35_54](https://user-images.githubusercontent.com/85097081/193731944-e7465fbe-e39f-46a2-bfc0-6886517e83a7.png) 27 | 28 | ![Tech_Machine 03-10-2022 21_36_17](https://user-images.githubusercontent.com/85097081/193731957-bfd3f07e-0c33-48d5-9c95-e765563ab14d.png) 29 | 30 | For any clarification you can contact through my website: 31 | https://techmachine.data.blog/ 32 | 33 | And do check out my new projects. 34 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | kivy==2.1.0 2 | kivy-garden==0.1.5 3 | pillow==9.1.0 4 | pygments==2.12.0 5 | certifi==2021.10.8 6 | charset-normalizer==2.0.12 7 | click==8.1.3 8 | colorama==0.4.4 9 | decorator==5.1.1 10 | docutils==0.18.1 11 | dynaconf==3.1.8 12 | hvac==0.11.2 13 | idna==3.3 14 | kivy-deps.angle==0.3.2 15 | kivy-deps.glew==0.3.1 16 | kivy-deps.gstreamer==0.3.3 17 | kivy-deps.sdl2==0.4.5 18 | kivymd==0.104.2 19 | knox==0.1.14 20 | loguru==0.6.0 21 | pip==22.1 22 | pypiwin32==223 23 | pywin32==304 24 | requests==2.27.1 25 | setuptools==62.2.0 26 | shortuuid==1.0.9 27 | six==1.16.0 28 | urllib3==1.26.9 29 | validators==0.19.0 30 | win32-setctime==1.1.0 31 | --------------------------------------------------------------------------------