├── Assessment ├── Section 2.py ├── Section1.py ├── Section3.py └── Section5 │ ├── SQL_example │ ├── CreateDB.py │ ├── QueryDB.py │ ├── UpdateDB.py │ └── __init__.py │ ├── customers.db │ ├── login.py │ └── templates │ ├── FAQ.html │ ├── Fail.html │ ├── hello_stylized.html │ ├── login.html │ └── register.html ├── LICENSE ├── README.md ├── Section1 ├── 1.2 Starting a Project │ └── Hello.py ├── 1.3 Lens Mode │ └── Lens.py ├── 1.4 Intention Actions │ └── Intention.py ├── 1.5 Python Console │ └── console.py └── 1.6 Assessment │ └── FixThis.py ├── Section3 ├── 3.1 PEP8 │ └── ThreeOne-Indentations.py ├── 3.2 PyLint │ └── SandwichCalculator.py ├── 3.3 Debugging │ ├── SandwichCalculator.py │ └── main.py ├── 3.4 Assertions │ ├── Menu.py │ ├── SandwichCalculator.py │ └── main.py ├── 3.5 Test Runner │ ├── Menu.py │ ├── Pie.py │ ├── SandwichCalculator.py │ ├── main.py │ └── test_pie.py └── 3.6 Templates │ ├── FAQ.html │ └── FAQ.py ├── Section4 ├── 4.1 JavaScript Objects.py ├── 4.2 JSON │ ├── 4.2 JSON_Files.py │ ├── 4.2 JSON_Output.py │ └── JSON_verify.py ├── 4.3 SQL │ ├── InsertDatabase.py │ └── MakeDatabase.py ├── 4.4 Remote SQL │ ├── VerifyRemote.py │ └── remote.py ├── 4.5 Quieries │ ├── Alter.py │ ├── Insert.py │ ├── Select.py │ ├── SelectMultiple.py │ ├── Setup.py │ ├── Update.py │ └── menu.db └── USD.json └── Section5 ├── 5.1 APIs ├── connect.py └── weather.json ├── 5.2 Flask ├── Demo.py ├── hello.py ├── static │ └── freelancer.css └── templates │ ├── FAQ.html │ ├── hello.html │ └── hello_stylized.html └── 5.4 Flask SQL ├── SQL ├── CreateDB.py ├── CreateDB.pyc ├── QueryDB.py ├── UpdateDB.py └── __init__.py ├── customers.db ├── login.py ├── static └── freelancer.css └── templates ├── FAQ.html ├── Fail.html ├── hello_stylized.html ├── login.html └── register.html /Assessment/Section 2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section 2.py -------------------------------------------------------------------------------- /Assessment/Section1.py: -------------------------------------------------------------------------------- 1 | print 'We made our firt program!!' 2 | -------------------------------------------------------------------------------- /Assessment/Section3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section3.py -------------------------------------------------------------------------------- /Assessment/Section5/SQL_example/CreateDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/SQL_example/CreateDB.py -------------------------------------------------------------------------------- /Assessment/Section5/SQL_example/QueryDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/SQL_example/QueryDB.py -------------------------------------------------------------------------------- /Assessment/Section5/SQL_example/UpdateDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/SQL_example/UpdateDB.py -------------------------------------------------------------------------------- /Assessment/Section5/SQL_example/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Created by dalemeli on 8/7/2018 3 | """ -------------------------------------------------------------------------------- /Assessment/Section5/customers.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/customers.db -------------------------------------------------------------------------------- /Assessment/Section5/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/login.py -------------------------------------------------------------------------------- /Assessment/Section5/templates/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/templates/FAQ.html -------------------------------------------------------------------------------- /Assessment/Section5/templates/Fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/templates/Fail.html -------------------------------------------------------------------------------- /Assessment/Section5/templates/hello_stylized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/templates/hello_stylized.html -------------------------------------------------------------------------------- /Assessment/Section5/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Assessment/Section5/templates/login.html -------------------------------------------------------------------------------- /Assessment/Section5/templates/register.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/README.md -------------------------------------------------------------------------------- /Section1/1.2 Starting a Project/Hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section1/1.2 Starting a Project/Hello.py -------------------------------------------------------------------------------- /Section1/1.3 Lens Mode/Lens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section1/1.3 Lens Mode/Lens.py -------------------------------------------------------------------------------- /Section1/1.4 Intention Actions/Intention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section1/1.4 Intention Actions/Intention.py -------------------------------------------------------------------------------- /Section1/1.5 Python Console/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section1/1.5 Python Console/console.py -------------------------------------------------------------------------------- /Section1/1.6 Assessment/FixThis.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Section3/3.1 PEP8/ThreeOne-Indentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.1 PEP8/ThreeOne-Indentations.py -------------------------------------------------------------------------------- /Section3/3.2 PyLint/SandwichCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.2 PyLint/SandwichCalculator.py -------------------------------------------------------------------------------- /Section3/3.3 Debugging/SandwichCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.3 Debugging/SandwichCalculator.py -------------------------------------------------------------------------------- /Section3/3.3 Debugging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.3 Debugging/main.py -------------------------------------------------------------------------------- /Section3/3.4 Assertions/Menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.4 Assertions/Menu.py -------------------------------------------------------------------------------- /Section3/3.4 Assertions/SandwichCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.4 Assertions/SandwichCalculator.py -------------------------------------------------------------------------------- /Section3/3.4 Assertions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.4 Assertions/main.py -------------------------------------------------------------------------------- /Section3/3.5 Test Runner/Menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.5 Test Runner/Menu.py -------------------------------------------------------------------------------- /Section3/3.5 Test Runner/Pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.5 Test Runner/Pie.py -------------------------------------------------------------------------------- /Section3/3.5 Test Runner/SandwichCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.5 Test Runner/SandwichCalculator.py -------------------------------------------------------------------------------- /Section3/3.5 Test Runner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.5 Test Runner/main.py -------------------------------------------------------------------------------- /Section3/3.5 Test Runner/test_pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.5 Test Runner/test_pie.py -------------------------------------------------------------------------------- /Section3/3.6 Templates/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.6 Templates/FAQ.html -------------------------------------------------------------------------------- /Section3/3.6 Templates/FAQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section3/3.6 Templates/FAQ.py -------------------------------------------------------------------------------- /Section4/4.1 JavaScript Objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.1 JavaScript Objects.py -------------------------------------------------------------------------------- /Section4/4.2 JSON/4.2 JSON_Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.2 JSON/4.2 JSON_Files.py -------------------------------------------------------------------------------- /Section4/4.2 JSON/4.2 JSON_Output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.2 JSON/4.2 JSON_Output.py -------------------------------------------------------------------------------- /Section4/4.2 JSON/JSON_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.2 JSON/JSON_verify.py -------------------------------------------------------------------------------- /Section4/4.3 SQL/InsertDatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.3 SQL/InsertDatabase.py -------------------------------------------------------------------------------- /Section4/4.3 SQL/MakeDatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.3 SQL/MakeDatabase.py -------------------------------------------------------------------------------- /Section4/4.4 Remote SQL/VerifyRemote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.4 Remote SQL/VerifyRemote.py -------------------------------------------------------------------------------- /Section4/4.4 Remote SQL/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.4 Remote SQL/remote.py -------------------------------------------------------------------------------- /Section4/4.5 Quieries/Alter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.5 Quieries/Alter.py -------------------------------------------------------------------------------- /Section4/4.5 Quieries/Insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.5 Quieries/Insert.py -------------------------------------------------------------------------------- /Section4/4.5 Quieries/Select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.5 Quieries/Select.py -------------------------------------------------------------------------------- /Section4/4.5 Quieries/SelectMultiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.5 Quieries/SelectMultiple.py -------------------------------------------------------------------------------- /Section4/4.5 Quieries/Setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.5 Quieries/Setup.py -------------------------------------------------------------------------------- /Section4/4.5 Quieries/Update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.5 Quieries/Update.py -------------------------------------------------------------------------------- /Section4/4.5 Quieries/menu.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/4.5 Quieries/menu.db -------------------------------------------------------------------------------- /Section4/USD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section4/USD.json -------------------------------------------------------------------------------- /Section5/5.1 APIs/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.1 APIs/connect.py -------------------------------------------------------------------------------- /Section5/5.1 APIs/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.1 APIs/weather.json -------------------------------------------------------------------------------- /Section5/5.2 Flask/Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.2 Flask/Demo.py -------------------------------------------------------------------------------- /Section5/5.2 Flask/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.2 Flask/hello.py -------------------------------------------------------------------------------- /Section5/5.2 Flask/static/freelancer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.2 Flask/static/freelancer.css -------------------------------------------------------------------------------- /Section5/5.2 Flask/templates/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.2 Flask/templates/FAQ.html -------------------------------------------------------------------------------- /Section5/5.2 Flask/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.2 Flask/templates/hello.html -------------------------------------------------------------------------------- /Section5/5.2 Flask/templates/hello_stylized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.2 Flask/templates/hello_stylized.html -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/SQL/CreateDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/SQL/CreateDB.py -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/SQL/CreateDB.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/SQL/CreateDB.pyc -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/SQL/QueryDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/SQL/QueryDB.py -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/SQL/UpdateDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/SQL/UpdateDB.py -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/SQL/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Created by dalemeli on 8/7/2018 3 | """ -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/customers.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/customers.db -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/login.py -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/static/freelancer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/static/freelancer.css -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/templates/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/templates/FAQ.html -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/templates/Fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/templates/Fail.html -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/templates/hello_stylized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/templates/hello_stylized.html -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/templates/login.html -------------------------------------------------------------------------------- /Section5/5.4 Flask SQL/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyCharm-for-Power-Developer-v-/HEAD/Section5/5.4 Flask SQL/templates/register.html --------------------------------------------------------------------------------