TorBT - Torrents and Magnet Links Search Engine

Ernesti J., Kaiser P. - Python 3. The Comprehensive Guide to Hands-On Python Programming - 2022

File Name
Size
Code/04_The_Path_to_the_First_Program/example_01_guessing_numbers.py
306 B
Code/05_Control_Structures/example_01_guessing_numbers_with_while.py
240 B
Code/05_Control_Structures/example_02_guessing_numbers_with_break.py
316 B
Code/05_Control_Structures/example_03_guessing_numbers_with_break_and_else.py
325 B
Code/05_Control_Structures/example_04_factorial.py
207 B
Code/05_Control_Structures/example_05_factorial_with_continue.py
294 B
Code/05_Control_Structures/example_06_factorial_with_for.py
272 B
Code/05_Control_Structures/example_07_guessing_numbers_with_assignment_expression.py
301 B
Code/06_Files/coffee.bmp
1.4 MB
Code/06_Files/dictionary.txt
87 B
Code/06_Files/example_01_reading_files.py
106 B
Code/06_Files/example_02_dictionary.py
442 B
Code/06_Files/example_03_writing_files.py
226 B
Code/06_Files/example_04_bitmap.py
292 B
Code/06_Files/output.txt
54 B
Code/17_Functions/example_01_factorial_with_print Kopie.py
209 B
Code/17_Functions/example_01_factorial_with_print.py
209 B
Code/17_Functions/example_02_factorial_with_return.py
217 B
Code/17_Functions/example_03_factorial_with_return_2.py
352 B
Code/17_Functions/example_04_factorial_of_absolute_value.py
321 B
Code/18_Modules_and_Packages/__pycache__/mathshelper.cpython-39.pyc
460 B
Code/18_Modules_and_Packages/example_01_import.py
125 B
Code/18_Modules_and_Packages/example_02_finder_and_loader.py
1.0 kB
Code/18_Modules_and_Packages/mathshelper.py
129 B
Code/18_Modules_and_Packages/testfile.txt
37 B
Code/19_Object-Oriented_Programming/example_01_account_without_oop.py
2.0 kB
Code/19_Object-Oriented_Programming/example_02_account_with_oop.py
2.0 kB
Code/19_Object-Oriented_Programming/example_03_inheritance.py
310 B
Code/19_Object-Oriented_Programming/example_04_overriding_methods.py
443 B
Code/19_Object-Oriented_Programming/example_05_overriding_methods_2.py
504 B
Code/19_Object-Oriented_Programming/example_06_account_with_inheritance.py
4.8 kB
Code/19_Object-Oriented_Programming/example_07_property_attributes.py
733 B
Code/19_Object-Oriented_Programming/example_08_static_methods.py
2.1 kB
Code/19_Object-Oriented_Programming/example_09_class_methods.py
255 B
Code/19_Object-Oriented_Programming/example_10_class_attributes.py
120 B
Code/19_Object-Oriented_Programming/example_11_inheriting_built-in_data_types.py
952 B
Code/19_Object-Oriented_Programming/example_12_overloading_operators.py
975 B
Code/19_Object-Oriented_Programming/example_13_overloading_operators_2.py
687 B
Code/20_Exception_Handling/example_01_account_balance_error.py
904 B
Code/21_Generators_and_Iterators/example_01_generators.py
586 B
Code/21_Generators_and_Iterators/example_02_subgenerators.py
301 B
Code/21_Generators_and_Iterators/example_03_subgenerators_with_return.py
460 B
Code/21_Generators_and_Iterators/example_04_traversing_a_tree.py
650 B
Code/21_Generators_and_Iterators/example_05_fibonacci_iterator.py
565 B
Code/21_Generators_and_Iterators/example_06_golden_ratio_iterator.py
636 B
Code/21_Generators_and_Iterators/example_07_fibonacci_iterator_with_generator.py
389 B
Code/21_Generators_and_Iterators/example_08_fibonacci_iterator_multiple.py
880 B
Code/21_Generators_and_Iterators/example_09_squares.py
394 B
Code/22_Context_Manager/example_01_logging.py
515 B
Code/22_Context_Manager/example_02_optional_contexts.py
363 B
Code/22_Context_Manager/example_03_functions_as_context_managers.py
398 B
Code/22_Context_Manager/logfile.txt
37 B
Code/22_Context_Manager/out.txt
14 B
Code/23_Decorators/example_01_timing_with_wrapper.py
698 B
Code/23_Decorators/example_02_timing_with_decorator.py
669 B
Code/23_Decorators/example_03_cache_decorator.py
709 B
Code/23_Decorators/example_04_simplifying_method_interfaces.py
482 B
Code/24_Annotations/example_01_static_type_checking.py
389 B
Code/25_Structural_Pattern_Matching/example_01_status_codes.py
467 B
Code/25_Structural_Pattern_Matching/example_02_status_codes_with_or_pattern.py
408 B
Code/25_Structural_Pattern_Matching/example_03_pattern_with_type_checking.py
364 B
Code/25_Structural_Pattern_Matching/example_04_conditions_for_matches.py
371 B
Code/25_Structural_Pattern_Matching/example_05_capture_pattern.py
476 B
Code/25_Structural_Pattern_Matching/example_06_print_list.py
381 B
Code/25_Structural_Pattern_Matching/example_07_range_plus_plus.py
748 B
Code/25_Structural_Pattern_Matching/example_08_adresses.py
1.2 kB
Code/25_Structural_Pattern_Matching/example_09_matching_attributes_by_name.py
1.4 kB
Code/25_Structural_Pattern_Matching/example_10_matching_attributes_by_position.py
1.4 kB
Code/25_Structural_Pattern_Matching/example_11_mixed_matching_of_attributes.py
253 B
Code/26_Mathematics/example_01_hashlib_file_comparison.py
274 B
Code/26_Mathematics/example_02_hashlib_file_comparison_with_update.py
239 B
Code/26_Mathematics/example_03_password.py
243 B
Code/26_Mathematics/file1.txt
30 B
Code/26_Mathematics/file2.txt
30 B
Code/27_Screen_Outputs_and_Logging/example_01_logging.py
322 B
Code/27_Screen_Outputs_and_Logging/example_02_logging_handler.py
457 B
Code/27_Screen_Outputs_and_Logging/program.log
153 B
Code/28_Regular_Expressions/example_01_searching.py
279 B
Code/28_Regular_Expressions/example_02_matching.py
898 B
Code/28_Regular_Expressions/example_03_comments.py
599 B
Code/28_Regular_Expressions/id.txt
83 B
Code/28_Regular_Expressions/rheinwerk-publishing.html
172 kB
Code/29_Interface_to_Operating_System_and_Runtime_Environment/example_01_argparse.py
530 B
Code/29_Interface_to_Operating_System_and_Runtime_Environment/example_02_argparse.py
834 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_01_thread_pool_executor.py
489 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_02_thread_pool_executor_with.py
500 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_03_process_pool_executor.py
509 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_04_approximate_pi.py
467 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_05_approximate_pi_with_threads_and_as_completed.py
580 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_06_approximate_pi_with_processes_and_as_completed.py
581 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_07_approximate_pi_with_wait.py
596 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_08_approximate_pi_with_wait_and_timeout.py
736 B
Code/31_Parallel_Programming/31.3_concurrent.futures/example_09_approximate_pi_comparison.py
868 B
Code/31_Parallel_Programming/31.4.1_threading/example_01_prime_number_check.py
856 B
Code/31_Parallel_Programming/31.4.1_threading/example_02_prime_number_check_with_locking.py
1.1 kB
Code/31_Parallel_Programming/31.4.1_threading/example_03_shared_counter.py
323 B
Code/31_Parallel_Programming/31.4.1_threading/example_04_shared_counter_thread_safe.py
386 B
Code/31_Parallel_Programming/31.4.2_multiprocessing/example_01_prime_number_check_with_locking.py
1.1 kB
Code/31_Parallel_Programming/31.5_Cooperative_Multitasking/example_01_sleep.py
650 B
Code/31_Parallel_Programming/31.5_Cooperative_Multitasking/example_02_crawler.py
994 B
Code/31_Parallel_Programming/31.5_Cooperative_Multitasking/example_03_crawler_with_queue.py
1.3 kB
Code/31_Parallel_Programming/31.5_Cooperative_Multitasking/example_04_crawler_with_multiple_producers.py
1.9 kB
Code/31_Parallel_Programming/31.5_Cooperative_Multitasking/example_05_crawler_with_aiofiles.py
1.7 kB
Code/31_Parallel_Programming/31.5_Cooperative_Multitasking/example_06_crawler_with_blocking_operation.py
1.9 kB
Code/31_Parallel_Programming/31.5_Cooperative_Multitasking/example_07_asynchronous_generators.py
458 B
Code/32_Data_Storage/32.1_XML/dict.xml
260 B
Code/32_Data_Storage/32.1_XML/example_01_elementtree.py
625 B
Code/32_Data_Storage/32.1_XML/example_02_sax.py
1.2 kB
Code/32_Data_Storage/32.2_Databases/example_01_sqlite_create_tables.py
522 B
Code/32_Data_Storage/32.2_Databases/example_02_sqlite_write_data.py
1.1 kB
Code/32_Data_Storage/32.2_Databases/example_03_sqlite_read_data.py
444 B
Code/32_Data_Storage/32.2_Databases/example_04_sqlite_adapter_and_converter.py
1.2 kB
Code/32_Data_Storage/32.2_Databases/warehouse.db
16 kB
Code/32_Data_Storage/32.6_CSV/cars.csv
89 B
Code/32_Data_Storage/32.6_CSV/example_01_read_csv.py
151 B
Code/32_Data_Storage/32.6_CSV/example_02_read_csv_as_dict.py
155 B
Code/32_Data_Storage/32.6_CSV/example_03_write_csv.py
330 B
Code/32_Data_Storage/32.6_CSV/example_04_write_csv_from_dict.py
468 B
Code/32_Data_Storage/32.6_CSV/example_05_sniffer.py
347 B
Code/32_Data_Storage/32.6_CSV/names.csv
269 B
Code/33_Network_Communication/33.1_Socket-API/example_01_udp_client.py
198 B
Code/33_Network_Communication/33.1_Socket-API/example_01_udp_server.py
234 B
Code/33_Network_Communication/33.1_Socket-API/example_02_tcp_client.py
276 B
Code/33_Network_Communication/33.1_Socket-API/example_02_tcp_server.py
350 B
Code/33_Network_Communication/33.1_Socket-API/example_03_tcp_ipv6_client.py
276 B
Code/33_Network_Communication/33.1_Socket-API/example_03_tcp_ipv6_server.py
373 B
Code/33_Network_Communication/33.1_Socket-API/example_04_multiplexing_client.py
276 B
Code/33_Network_Communication/33.1_Socket-API/example_04_multiplexing_server.py
864 B
Code/33_Network_Communication/33.1_Socket-API/example_05_object_oriented_client.py
276 B
Code/33_Network_Communication/33.1_Socket-API/example_05_object_oriented_server.py
592 B
Code/33_Network_Communication/33.2_XML-RPC/example_01_client.py
148 B
Code/33_Network_Communication/33.2_XML-RPC/example_01_server.py
467 B
Code/33_Network_Communication/33.2_XML-RPC/example_02_multicall_client.py
229 B
Code/33_Network_Communication/33.2_XML-RPC/example_02_multicall_server.py
510 B
Code/35_Email/coffee.png
669 kB
Code/35_Email/example_01_pop.py
236 B
Code/35_Email/example_02_imap.py
540 B
Code/35_Email/example_03_email.py
258 B
Code/35_Email/example_04_email_with_attachment.py
457 B
Code/35_Email/example_05_email_reading.py
203 B
Code/36_Debugging_and_Quality_Assurance/36.2_Automated_Testing/__pycache__/fac.cpython-39.pyc
430 B
Code/36_Debugging_and_Quality_Assurance/36.2_Automated_Testing/example_01_doctest.py
877 B
Code/36_Debugging_and_Quality_Assurance/36.2_Automated_Testing/example_02_unittest.py
395 B
Code/36_Debugging_and_Quality_Assurance/36.2_Automated_Testing/fac.py
147 B
Code/36_Debugging_and_Quality_Assurance/36.3_Analyzing_the_Runtime_Performance/example_01_timeit.py
524 B
Code/36_Debugging_and_Quality_Assurance/36.3_Analyzing_the_Runtime_Performance/example_02_profiling.py
386 B
Code/36_Debugging_and_Quality_Assurance/36.3_Analyzing_the_Runtime_Performance/example_03_tracing.py
525 B
Code/36_Debugging_and_Quality_Assurance/36.3_Analyzing_the_Runtime_Performance/result_tracing/example_03_tracing.cover
676 B
Code/37_Documentation/example_01_docstrings.py
383 B
Code/38_Distributing_Python_Projects/38.2_setuptools/setup.py
165 B
Code/38_Distributing_Python_Projects/38.2_setuptools/swirl.py
235 B
Code/38_Distributing_Python_Projects/38.3_cx_Freeze/calc.py
102 B
Code/38_Distributing_Python_Projects/38.3_cx_Freeze/setup.py
163 B
Code/38_Distributing_Python_Projects/38.5_gettext/example_01_localization.py
313 B
Code/38_Distributing_Python_Projects/38.5_gettext/locale/de/LC_MESSAGES/myprogram.mo
184 B
Code/38_Distributing_Python_Projects/38.5_gettext/myprogram.po
166 B
Code/40_Alternative_Interpreters_and_Compilers/40.1_numba/example_01_numba.py
1.4 kB
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/__pycache__/example_01_sort_python.cpython-310.pyc
435 B
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/comparison.py
1.4 kB
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/example_01_sort_python.py
176 B
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/example_02_sort_cython.pyx
176 B
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/example_03_sort_cython_2.pyx
201 B
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/example_04_sort_cython_3.pyx
207 B
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/example_05_sort_cython_4.pyx
314 B
Code/40_Alternative_Interpreters_and_Compilers/40.2_cython/setup.py
363 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.1_A_Simple_Example/example_01_simple_dialog.py
915 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.3_The_Packer/example_01_simple_dialog_pad.py
990 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.3_The_Packer/example_02_simple_dialog_fill_expand1.py
944 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.3_The_Packer/example_03_simple_dialog_fill_expand2.py
992 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.3_The_Packer/example_04_simple_dialog_fill_expand3.py
992 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.3_The_Packer/example_05_simple_dialog_fill_expand4.py
1.0 kB
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.4_Events/example_01_events.py
1.5 kB
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_01_button.py
492 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_02_checkbutton_simple.py
646 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_03_checkbutton_complex.py
954 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_04_radiobutton.py
770 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_05_entry.py
626 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_06_label.py
398 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_07_labelframe.py
1.0 kB
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_08_listbox_simple.py
492 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_09_listbox_complex.py
943 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_10_menu.py
956 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_11_menu_complex.py
1.3 kB
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_12_menubutton.py
659 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_13_optionmenu.py
597 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_14_scrollbar.py
582 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_15_spinbox_simple.py
410 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_16_spinbox_complex.py
639 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_17_text.py
636 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.5_Widgets/example_18_text_with_event.py
479 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/coffee.png
669 kB
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_01_empty_canvas.py
370 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_02_canvas.py
530 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_03_arc.py
605 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_04_image.py
479 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_05_line.py
545 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_06_oval.py
395 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_07_polygon.py
509 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_08_polygon2.py
535 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_09_text.py
717 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.6_Drawings_-_The_Canvas_Widget/example_10_window.py
533 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.7_Other_Modules/example_01_scrolledtext.py
993 B
Code/41_Graphical_User_Interfaces/41.2_Introduction_to_tkinter/41.2.7_Other_Modules/example_02_messagebox.py
188 B
Code/41_Graphical_User_Interfaces/41.3.2_Basic_Concepts_Of_Qt/example_01_enter_personal_data.py
412 B
Code/41_Graphical_User_Interfaces/41.3.2_Basic_Concepts_Of_Qt/maindialog.py
6.0 kB
Code/41_Graphical_User_Interfaces/41.3.2_Basic_Concepts_Of_Qt/maindialog.ui
4.1 kB
Code/41_Graphical_User_Interfaces/41.4_Signals_and_Slots/example_01_enter_personal_data2.py
1.1 kB
Code/41_Graphical_User_Interfaces/41.4_Signals_and_Slots/maindialog.py
6.0 kB
Code/41_Graphical_User_Interfaces/41.4_Signals_and_Slots/maindialog.ui
4.1 kB
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/coffee.png
669 kB
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_01_simple_shapes.py
689 B
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_02_images.py
684 B
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_03_text.py
688 B
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_04_gradient.py
703 B
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_05_transparency.py
857 B
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_06_transparency_with_gradient.py
1.1 kB
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_07_antialiasing.py
918 B
Code/41_Graphical_User_Interfaces/41.6_Drawing_Functionality/example_08_transformations.py
1.2 kB
Code/41_Graphical_User_Interfaces/41.7_Model-View_Architecture/address_book.txt
231 B
Code/41_Graphical_User_Interfaces/41.7_Model-View_Architecture/example_01_program.py
295 B
Code/41_Graphical_User_Interfaces/41.7_Model-View_Architecture/model.py
1017 B
Code/41_Graphical_User_Interfaces/41.7_Model-View_Architecture/view.py
3.4 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/db.sqlite3
140 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/manage.py
665 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/admin.py
63 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/apps.py
140 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/migrations/0001_initial.py
1.1 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/migrations/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/models.py
510 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/tests.py
60 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/urls.py
194 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news/views.py
1.0 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news_site/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news_site/asgi.py
395 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news_site/settings.py
3.2 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news_site/urls.py
833 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_01_manual_outputs/news_site/news_site/wsgi.py
395 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/db.sqlite3
140 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/manage.py
665 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/admin.py
63 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/apps.py
140 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/migrations/0001_initial.py
1.1 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/migrations/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/models.py
510 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/templates/news/articles.html
724 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/templates/news/articles_detail.html
946 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/tests.py
60 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/urls.py
194 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news/views.py
414 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news_site/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news_site/asgi.py
395 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news_site/settings.py
3.2 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news_site/templates/main/base.html
1.1 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news_site/urls.py
833 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_02_template_outputs/news_site/news_site/wsgi.py
395 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/db.sqlite3
140 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/manage.py
665 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/admin.py
63 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/apps.py
140 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/migrations/0001_initial.py
1.1 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/migrations/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/models.py
510 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/templates/news/articles.html
724 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/templates/news/articles_detail.html
1.7 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/tests.py
60 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/urls.py
194 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news/views.py
1.0 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news_site/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news_site/asgi.py
395 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news_site/settings.py
3.2 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news_site/templates/main/base.html
1.1 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news_site/urls.py
833 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_03_process_form_data/news_site/news_site/wsgi.py
395 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/db.sqlite3
140 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/manage.py
665 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/admin.py
261 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/apps.py
140 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/migrations/0001_initial.py
1.1 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/migrations/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/models.py
510 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/templates/news/articles.html
724 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/templates/news/articles_detail.html
1.7 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/tests.py
60 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/urls.py
194 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news/views.py
1.0 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news_site/__init__.py
0 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news_site/asgi.py
395 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news_site/settings.py
3.2 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news_site/templates/main/base.html
1.1 kB
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news_site/urls.py
833 B
Code/42_Python_as_a_Server-Side_Programming_Language/step_04_admin_control_panel/news_site/news_site/wsgi.py
395 B
Code/43_Scientific_Computing_and_Data_Science/example_01_derivative_and_primitive_function.py
592 B
Code/44_Inside_Knowledge/coffee.bmp
1.4 MB
Code/44_Inside_Knowledge/example_01_struct.py
260 B
Code/44_Inside_Knowledge/example_02_cmd.py
920 B
Code/44_Inside_Knowledge/example_03_consuming_generators.py
665 B
Corrected_Page_763.pdf
38 kB
Ernesti J., Kaiser P. - Python 3. The Comprehensive Guide to Hands-On Python Programming - 2022.pdf
17 MB