-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.json
1212 lines (1212 loc) · 42 KB
/
courses.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"courses": [
{
"id": 1,
"category": "Python",
"link": "https://www.udemy.com/course/pythonforbeginners/",
"image": "https://img-b.udemycdn.com/course/240x135/394676_ce3d_5.jpg",
"title": "Learn Python: The Complete Python Programming Course",
"author": "Avinash Jain",
"rating": "4.4",
"ratingCount": "3,159",
"Introduction": "Learn A-Z everything about Python, from the basics, to advanced topics like Python GUI, Python Data Analysis, and more!",
"price": "199.99",
"originalPrice": "679.99",
"enrollCount": "19,349",
"lastUpdate": "9/2015",
"outcomes": [
"Create their own Python Programs",
"Become an experienced Python Programmer",
"Parse the Web and Create their own Games"
],
"sectionsCount": "15",
"lecturesCount": "146",
"videosTime": "14",
"totalLength": "14h 42m",
"lectures": [
"Up and Running With Python",
"The Basics (Data Types)",
"Conditions and Loops",
"Functions!",
"Classes! (Object Orientated Programming)",
"File Input/Output",
"Using Python Modules",
"Crawling The Web",
"Beautiful Soup HTML Parsing",
"MatPlotLib - Charts, Plots and 3D Figures!",
"Data Analysis with Pandas!",
"Python GUI with Tkinter",
"Our First Game (Bounce!)",
"Our Second Game (Pong!)",
"What's Next?"
],
"content": [
[["Up and Running With Python"], ["Installing Python", "Hello World"]],
[
["The Basics (Data Types)"],
[
"Variables",
"Multiple Assignment",
"Data Types and Ints",
"Strings",
"Placeholders",
"Lists/Arrays",
"List Functions",
"Dictionaries",
"Dictionary Functions",
"Tuples",
"Exercise Files"
]
],
[
["Conditions and Loops"],
[
"If-Else Statements",
"Relational Operators",
"Nested If/Else",
"Elif Statements",
"Logical Operators",
"For Loops",
"While Loops",
"Nested For Loops",
"Pass, Break and Continue",
"Try and Except",
"Commenting",
"Quick Tips",
"Exercise Files"
]
],
[
["Functions!"],
[
"Creating our own Functions",
"Global and Local Vars",
"Abs and Bool",
"Help and Dir",
"Eval and Exec",
"Str, Int, Float",
"Recap and Sum"
]
],
[
["Classes! (Object Orientated Programming)"],
[
"Basics of Classes",
"Functions in Classes",
"Class Attributes",
"Inheritance",
"Overriding Methods"
]
],
[
["File Input/Output"],
[
"Creating a File",
"Creating a File (Windows)",
"Reading a File",
"Writing to a File",
"Appending to Files",
"Copying Files"
]
],
[
["Using Python Modules"],
[
"Random Module - Randint",
"Guessing Game",
"Guessing Game Challenge",
"Random Module - Shuffle and Choice",
"Sys Module",
"Time Module",
"Turtle Module",
"For Loops in Turtle",
"Up and Down Functions",
"Coloring in Turtle",
"Functions in Turtle",
"Exercise Files"
]
],
[
["Crawling The Web"],
[
"Re Module",
"Crawling The Web (Stocks)",
"Stock Quotes (.py)",
"Crawling The Web (Weather)",
"Weather (.py)",
"Crawling The Web (Definition)",
"Definition (.py)"
]
],
[
["Beautiful Soup HTML Parsing"],
[
"Intro to Beautiful Soup",
"Installing the Beautiful Soup Module",
"Prettify with Soup",
"Drilling Down",
"Functions in Soup",
".String and .Parent",
"Searching in Soup",
"Weather Parsing",
"Antonym Parsing"
]
],
[
["MatPlotLib - Charts, Plots and 3D Figures!"],
[
"Intro to MatPlotLib",
"First Graph!",
"Understanding the MatPlotLib Interface",
"Graph Labels",
"Creating a Graph from a File",
"Understanding SubPlots and Figures",
"Coloring of Graph",
"Multiple Plots in a Graph",
"Multiple Graphs in a Figure",
"What about 3 graphs?",
"Bar Graphs Intro",
"Modifying our Bar Graph",
"Pie Chart Intro",
"Modifying our Pie Chart",
"Adding a Legend",
"3D Graphics Intro",
"3D Scatter Plots",
"Multiple 3D Scatter Plots",
"3D Bar Graphs",
"3D Wireframes"
]
],
[
["Data Analysis with Pandas!"],
[
"Intro to Pandas",
"Series Data Structure",
"Series Continuation",
"Data Frames Intro",
"Creating a CSV",
"Reading a CSV",
"Writing to a CSV",
"Getting our Data",
"Slicing Data Frames",
"Data Manipulation",
"Indexing and More",
"Merging Data Frames",
"GroupBy Function",
"MovieLens Data",
"Heavy Data Analysis",
"MatPlotLib with Pandas",
"Let's Finish This"
]
],
[
["Python GUI with Tkinter"],
[
"Tkinter Introduction",
"Labels",
"Buttons",
"Layouts",
"Fill",
"Grid Layout",
"Entries",
"Check Buttons",
"GUI Login",
"Actions on Button Click",
"Binding Functions",
"More Binding!",
"Getting Entry Data",
"Message Box",
"Drop Down Menus",
"Calculator Part 1",
"Calculator Part 2",
"Calculator Part 3",
"Calculator Part 4",
"Canvas Intro",
"Canvas Objects",
"Canvas Fill",
"Random Rectangle Generator",
"Text and Arcs",
"Animations"
]
],
[
["Our First Game (Bounce!)"],
[
"Creating our Ball",
"Adding the Game Interface",
"Adding the Paddle",
"Final Touches",
"Recap",
"Bounce! (.py) (v1/v2/v3)"
]
],
[
["Our Second Game (Pong!)"],
[
"Creating our Ball",
"Adding Paddle1",
"Adding Paddle2",
"Final Touches",
"Pong! (.py)"
]
],
[["What's Next?"], ["Up and Beyond!"]]
],
"requirements": [
"Macintosh (OSX)/ Windows(Vista and higher) Machine",
"Internet Connection"
],
"description": [
"Do you want to become a programmer? Do you want to learn how to create games, automate your browser, visualize data, and much more?",
"If you’re looking to learn Python for the very first time or need a quick brush-up, this is the course for you!",
"Python has rapidly become one of the most popular programming languages around the world. Compared to other languages such as Java or C++, Python consistently outranks and outperforms these languages in demand from businesses and job availability. The average Python developer makes over $100,000 - this number is only going to grow in the coming years.",
"The best part? Python is one of the easiest coding languages to learn right now. It doesn’t matter if you have no programming experience or are unfamiliar with the syntax of Python. By the time you finish this course, you'll be an absolute pro at programming!",
"As an instructor and student on Udemy for almost 4 years, I know what it’s like to be overwhelmed with boring and mundane. I promise you’ll have a blast learning the ins and outs of python. I’ve successfully taught over 200,000+ students from over 200 countries jumpstart their programming journeys through my courses.",
"So what are you waiting for? Jumpstart your programming journey and dive into the world of Python by enrolling in this course today!"
],
"whoFor": "Even if you haven't touched coding before, it won't matter. The easy step-to-step lectures will quickly guide you through everything you'll need to know about coding, mainly Python. This course is here for you to get accustomed and familiar with Python and its syntax. And above all, Python is one of the easiest coding languages to learn, and there's a lot you can do with it.",
"studentFeedback": ["43", "37", "15", "3", "2"],
"reviews": [
{
"id": 1,
"name": "Asif H.",
"rate": "3",
"content": "Sometimes confusing but was able to clarify. Good job nonetheless."
},
{
"id": 2,
"name": "M.S.Swaroop",
"rate": "4",
"content": "the course is specialized so that we learn ourselves deeply,simple and easy."
},
{
"id": 3,
"name": "Saurish R.",
"rate": "5",
"content": "In depth concepts of python have been clearly explained. Good chemistry between student and instructor. Fantastic course. Completed every vid and had lot of fun."
},
{
"id": 4,
"name": "Shiristi",
"rate": "5",
"content": "I can't say as i have not taken that many classes yet but so far it is good. edited( so yeah it was a journey for me many things happen but i am glad they did and also grateful to the person who is guiding me and thanks udemy for these courses really appreciate it !!!)"
},
{
"id": 5,
"name": "Ejeshi G.",
"rate": "4",
"content": "teacher is good and direct, though not prompt at responding to questions and enquiries."
}
],
"hoursCount": "14",
"articlesCount": "1",
"downloadableResource": "3"
},
{
"id": 2,
"link": "https://www.udemy.com/course/learning-python-for-data-analysis-and-visualization/",
"title": "Learning Python for Data Analysis and Visualization",
"author": "Jose Portilla",
"image": "https://img-c.udemycdn.com/course/240x135/396876_cc92_7.jpg",
"price": "1,599.99",
"rating": 4.4,
"ratingCount": "17,999",
"category": "python",
"Introduction": "Learn A-Z everything about Python, from the basics, to advanced topics like Python GUI, Python Data Analysis, and more!",
"originalPrice": "679.99",
"enrollCount": "19,349",
"lastUpdate": "9/2015",
"outcomes": [
"Create their own Python Programs",
"Become an experienced Python Programmer",
"Parse the Web and Create their own Games"
],
"sectionsCount": "15",
"lecturesCount": "146",
"videosTime": "14",
"totalLength": "14h 42m",
"lectures": [
"Up and Running With Python",
"The Basics (Data Types)",
"Conditions and Loops",
"Functions!",
"Classes! (Object Orientated Programming)",
"File Input/Output",
"Using Python Modules",
"Crawling The Web",
"Beautiful Soup HTML Parsing",
"MatPlotLib - Charts, Plots and 3D Figures!",
"Data Analysis with Pandas!",
"Python GUI with Tkinter",
"Our First Game (Bounce!)",
"Our Second Game (Pong!)",
"What's Next?"
],
"content": [
[["Up and Running With Python"], ["Installing Python", "Hello World"]],
[
["The Basics (Data Types)"],
[
"Variables",
"Multiple Assignment",
"Data Types and Ints",
"Strings",
"Placeholders",
"Lists/Arrays",
"List Functions",
"Dictionaries",
"Dictionary Functions",
"Tuples",
"Exercise Files"
]
],
[
["Conditions and Loops"],
[
"If-Else Statements",
"Relational Operators",
"Nested If/Else",
"Elif Statements",
"Logical Operators",
"For Loops",
"While Loops",
"Nested For Loops",
"Pass, Break and Continue",
"Try and Except",
"Commenting",
"Quick Tips",
"Exercise Files"
]
],
[
["Functions!"],
[
"Creating our own Functions",
"Global and Local Vars",
"Abs and Bool",
"Help and Dir",
"Eval and Exec",
"Str, Int, Float",
"Recap and Sum"
]
],
[
["Classes! (Object Orientated Programming)"],
[
"Basics of Classes",
"Functions in Classes",
"Class Attributes",
"Inheritance",
"Overriding Methods"
]
],
[
["File Input/Output"],
[
"Creating a File",
"Creating a File (Windows)",
"Reading a File",
"Writing to a File",
"Appending to Files",
"Copying Files"
]
],
[
["Using Python Modules"],
[
"Random Module - Randint",
"Guessing Game",
"Guessing Game Challenge",
"Random Module - Shuffle and Choice",
"Sys Module",
"Time Module",
"Turtle Module",
"For Loops in Turtle",
"Up and Down Functions",
"Coloring in Turtle",
"Functions in Turtle",
"Exercise Files"
]
],
[
["Crawling The Web"],
[
"Re Module",
"Crawling The Web (Stocks)",
"Stock Quotes (.py)",
"Crawling The Web (Weather)",
"Weather (.py)",
"Crawling The Web (Definition)",
"Definition (.py)"
]
],
[
["Beautiful Soup HTML Parsing"],
[
"Intro to Beautiful Soup",
"Installing the Beautiful Soup Module",
"Prettify with Soup",
"Drilling Down",
"Functions in Soup",
".String and .Parent",
"Searching in Soup",
"Weather Parsing",
"Antonym Parsing"
]
],
[
["MatPlotLib - Charts, Plots and 3D Figures!"],
[
"Intro to MatPlotLib",
"First Graph!",
"Understanding the MatPlotLib Interface",
"Graph Labels",
"Creating a Graph from a File",
"Understanding SubPlots and Figures",
"Coloring of Graph",
"Multiple Plots in a Graph",
"Multiple Graphs in a Figure",
"What about 3 graphs?",
"Bar Graphs Intro",
"Modifying our Bar Graph",
"Pie Chart Intro",
"Modifying our Pie Chart",
"Adding a Legend",
"3D Graphics Intro",
"3D Scatter Plots",
"Multiple 3D Scatter Plots",
"3D Bar Graphs",
"3D Wireframes"
]
],
[
["Data Analysis with Pandas!"],
[
"Intro to Pandas",
"Series Data Structure",
"Series Continuation",
"Data Frames Intro",
"Creating a CSV",
"Reading a CSV",
"Writing to a CSV",
"Getting our Data",
"Slicing Data Frames",
"Data Manipulation",
"Indexing and More",
"Merging Data Frames",
"GroupBy Function",
"MovieLens Data",
"Heavy Data Analysis",
"MatPlotLib with Pandas",
"Let's Finish This"
]
],
[
["Python GUI with Tkinter"],
[
"Tkinter Introduction",
"Labels",
"Buttons",
"Layouts",
"Fill",
"Grid Layout",
"Entries",
"Check Buttons",
"GUI Login",
"Actions on Button Click",
"Binding Functions",
"More Binding!",
"Getting Entry Data",
"Message Box",
"Drop Down Menus",
"Calculator Part 1",
"Calculator Part 2",
"Calculator Part 3",
"Calculator Part 4",
"Canvas Intro",
"Canvas Objects",
"Canvas Fill",
"Random Rectangle Generator",
"Text and Arcs",
"Animations"
]
],
[
["Our First Game (Bounce!)"],
[
"Creating our Ball",
"Adding the Game Interface",
"Adding the Paddle",
"Final Touches",
"Recap",
"Bounce! (.py) (v1/v2/v3)"
]
],
[
["Our Second Game (Pong!)"],
[
"Creating our Ball",
"Adding Paddle1",
"Adding Paddle2",
"Final Touches",
"Pong! (.py)"
]
],
[["What's Next?"], ["Up and Beyond!"]]
],
"requirements": [
"Macintosh (OSX)/ Windows(Vista and higher) Machine",
"Internet Connection"
],
"description": [
"Do you want to become a programmer? Do you want to learn how to create games, automate your browser, visualize data, and much more?",
"If you’re looking to learn Python for the very first time or need a quick brush-up, this is the course for you!",
"Python has rapidly become one of the most popular programming languages around the world. Compared to other languages such as Java or C++, Python consistently outranks and outperforms these languages in demand from businesses and job availability. The average Python developer makes over $100,000 - this number is only going to grow in the coming years.",
"The best part? Python is one of the easiest coding languages to learn right now. It doesn’t matter if you have no programming experience or are unfamiliar with the syntax of Python. By the time you finish this course, you'll be an absolute pro at programming!",
"As an instructor and student on Udemy for almost 4 years, I know what it’s like to be overwhelmed with boring and mundane. I promise you’ll have a blast learning the ins and outs of python. I’ve successfully taught over 200,000+ students from over 200 countries jumpstart their programming journeys through my courses.",
"So what are you waiting for? Jumpstart your programming journey and dive into the world of Python by enrolling in this course today!"
],
"whoFor": "Even if you haven't touched coding before, it won't matter. The easy step-to-step lectures will quickly guide you through everything you'll need to know about coding, mainly Python. This course is here for you to get accustomed and familiar with Python and its syntax. And above all, Python is one of the easiest coding languages to learn, and there's a lot you can do with it.",
"studentFeedback": ["43", "37", "15", "3", "2"],
"reviews": [
{
"id": 1,
"name": "Asif H.",
"rate": "3",
"content": "Sometimes confusing but was able to clarify. Good job nonetheless."
},
{
"id": 2,
"name": "M.S.Swaroop",
"rate": "4",
"content": "the course is specialized so that we learn ourselves deeply,simple and easy."
},
{
"id": 3,
"name": "Saurish R.",
"rate": "5",
"content": "In depth concepts of python have been clearly explained. Good chemistry between student and instructor. Fantastic course. Completed every vid and had lot of fun."
},
{
"id": 4,
"name": "Shiristi",
"rate": "5",
"content": "I can't say as i have not taken that many classes yet but so far it is good. edited( so yeah it was a journey for me many things happen but i am glad they did and also grateful to the person who is guiding me and thanks udemy for these courses really appreciate it !!!)"
},
{
"id": 5,
"name": "Ejeshi G.",
"rate": "4",
"content": "teacher is good and direct, though not prompt at responding to questions and enquiries."
}
],
"hoursCount": "14",
"articlesCount": "1",
"downloadableResource": "3"
},
{
"id": 3,
"link": "https://www.udemy.com/course/python-for-beginners-learn-programming-from-scratch/",
"title": "Python for Beginners - Learn Programming from scratch",
"author": "Edwin Diaz, Coding FAcutly Solutaions",
"image": "https://img-c.udemycdn.com/course/240x135/405878_e5a0_3.jpg",
"price": "679.99",
"rating": 4.4,
"ratingCount": "1,781",
"category": "python",
"Introduction": "Learn A-Z everything about Python, from the basics, to advanced topics like Python GUI, Python Data Analysis, and more!",
"originalPrice": "679.99",
"enrollCount": "19,349",
"lastUpdate": "9/2015",
"outcomes": [
"Create their own Python Programs",
"Become an experienced Python Programmer",
"Parse the Web and Create their own Games"
],
"sectionsCount": "15",
"lecturesCount": "146",
"videosTime": "14",
"totalLength": "14h 42m",
"lectures": [
"Up and Running With Python",
"The Basics (Data Types)",
"Conditions and Loops",
"Functions!",
"Classes! (Object Orientated Programming)",
"File Input/Output",
"Using Python Modules",
"Crawling The Web",
"Beautiful Soup HTML Parsing",
"MatPlotLib - Charts, Plots and 3D Figures!",
"Data Analysis with Pandas!",
"Python GUI with Tkinter",
"Our First Game (Bounce!)",
"Our Second Game (Pong!)",
"What's Next?"
],
"content": [
[["Up and Running With Python"], ["Installing Python", "Hello World"]],
[
["The Basics (Data Types)"],
[
"Variables",
"Multiple Assignment",
"Data Types and Ints",
"Strings",
"Placeholders",
"Lists/Arrays",
"List Functions",
"Dictionaries",
"Dictionary Functions",
"Tuples",
"Exercise Files"
]
],
[
["Conditions and Loops"],
[
"If-Else Statements",
"Relational Operators",
"Nested If/Else",
"Elif Statements",
"Logical Operators",
"For Loops",
"While Loops",
"Nested For Loops",
"Pass, Break and Continue",
"Try and Except",
"Commenting",
"Quick Tips",
"Exercise Files"
]
],
[
["Functions!"],
[
"Creating our own Functions",
"Global and Local Vars",
"Abs and Bool",
"Help and Dir",
"Eval and Exec",
"Str, Int, Float",
"Recap and Sum"
]
],
[
["Classes! (Object Orientated Programming)"],
[
"Basics of Classes",
"Functions in Classes",
"Class Attributes",
"Inheritance",
"Overriding Methods"
]
],
[
["File Input/Output"],
[
"Creating a File",
"Creating a File (Windows)",
"Reading a File",
"Writing to a File",
"Appending to Files",
"Copying Files"
]
],
[
["Using Python Modules"],
[
"Random Module - Randint",
"Guessing Game",
"Guessing Game Challenge",
"Random Module - Shuffle and Choice",
"Sys Module",
"Time Module",
"Turtle Module",
"For Loops in Turtle",
"Up and Down Functions",
"Coloring in Turtle",
"Functions in Turtle",
"Exercise Files"
]
],
[
["Crawling The Web"],
[
"Re Module",
"Crawling The Web (Stocks)",
"Stock Quotes (.py)",
"Crawling The Web (Weather)",
"Weather (.py)",
"Crawling The Web (Definition)",
"Definition (.py)"
]
],
[
["Beautiful Soup HTML Parsing"],
[
"Intro to Beautiful Soup",
"Installing the Beautiful Soup Module",
"Prettify with Soup",
"Drilling Down",
"Functions in Soup",
".String and .Parent",
"Searching in Soup",
"Weather Parsing",
"Antonym Parsing"
]
],
[
["MatPlotLib - Charts, Plots and 3D Figures!"],
[
"Intro to MatPlotLib",
"First Graph!",
"Understanding the MatPlotLib Interface",
"Graph Labels",
"Creating a Graph from a File",
"Understanding SubPlots and Figures",
"Coloring of Graph",
"Multiple Plots in a Graph",
"Multiple Graphs in a Figure",
"What about 3 graphs?",
"Bar Graphs Intro",
"Modifying our Bar Graph",
"Pie Chart Intro",
"Modifying our Pie Chart",
"Adding a Legend",
"3D Graphics Intro",
"3D Scatter Plots",
"Multiple 3D Scatter Plots",
"3D Bar Graphs",
"3D Wireframes"
]
],
[
["Data Analysis with Pandas!"],
[
"Intro to Pandas",
"Series Data Structure",
"Series Continuation",
"Data Frames Intro",
"Creating a CSV",
"Reading a CSV",
"Writing to a CSV",
"Getting our Data",
"Slicing Data Frames",
"Data Manipulation",
"Indexing and More",
"Merging Data Frames",
"GroupBy Function",
"MovieLens Data",
"Heavy Data Analysis",
"MatPlotLib with Pandas",
"Let's Finish This"
]
],
[
["Python GUI with Tkinter"],
[
"Tkinter Introduction",
"Labels",
"Buttons",
"Layouts",
"Fill",
"Grid Layout",
"Entries",
"Check Buttons",
"GUI Login",
"Actions on Button Click",
"Binding Functions",
"More Binding!",
"Getting Entry Data",
"Message Box",
"Drop Down Menus",
"Calculator Part 1",
"Calculator Part 2",
"Calculator Part 3",
"Calculator Part 4",
"Canvas Intro",
"Canvas Objects",
"Canvas Fill",
"Random Rectangle Generator",
"Text and Arcs",
"Animations"
]
],
[
["Our First Game (Bounce!)"],
[
"Creating our Ball",
"Adding the Game Interface",
"Adding the Paddle",
"Final Touches",
"Recap",
"Bounce! (.py) (v1/v2/v3)"
]
],
[
["Our Second Game (Pong!)"],
[
"Creating our Ball",
"Adding Paddle1",
"Adding Paddle2",
"Final Touches",
"Pong! (.py)"
]
],
[["What's Next?"], ["Up and Beyond!"]]
],
"requirements": [
"Macintosh (OSX)/ Windows(Vista and higher) Machine",
"Internet Connection"
],
"description": [
"Do you want to become a programmer? Do you want to learn how to create games, automate your browser, visualize data, and much more?",
"If you’re looking to learn Python for the very first time or need a quick brush-up, this is the course for you!",
"Python has rapidly become one of the most popular programming languages around the world. Compared to other languages such as Java or C++, Python consistently outranks and outperforms these languages in demand from businesses and job availability. The average Python developer makes over $100,000 - this number is only going to grow in the coming years.",
"The best part? Python is one of the easiest coding languages to learn right now. It doesn’t matter if you have no programming experience or are unfamiliar with the syntax of Python. By the time you finish this course, you'll be an absolute pro at programming!",
"As an instructor and student on Udemy for almost 4 years, I know what it’s like to be overwhelmed with boring and mundane. I promise you’ll have a blast learning the ins and outs of python. I’ve successfully taught over 200,000+ students from over 200 countries jumpstart their programming journeys through my courses.",
"So what are you waiting for? Jumpstart your programming journey and dive into the world of Python by enrolling in this course today!"
],
"whoFor": "Even if you haven't touched coding before, it won't matter. The easy step-to-step lectures will quickly guide you through everything you'll need to know about coding, mainly Python. This course is here for you to get accustomed and familiar with Python and its syntax. And above all, Python is one of the easiest coding languages to learn, and there's a lot you can do with it.",
"studentFeedback": ["43", "37", "15", "3", "2"],
"reviews": [
{
"id": 1,
"name": "Asif H.",
"rate": "3",
"content": "Sometimes confusing but was able to clarify. Good job nonetheless."
},
{
"id": 2,
"name": "M.S.Swaroop",
"rate": "4",
"content": "the course is specialized so that we learn ourselves deeply,simple and easy."
},
{
"id": 3,
"name": "Saurish R.",
"rate": "5",
"content": "In depth concepts of python have been clearly explained. Good chemistry between student and instructor. Fantastic course. Completed every vid and had lot of fun."
},
{
"id": 4,
"name": "Shiristi",
"rate": "5",
"content": "I can't say as i have not taken that many classes yet but so far it is good. edited( so yeah it was a journey for me many things happen but i am glad they did and also grateful to the person who is guiding me and thanks udemy for these courses really appreciate it !!!)"
},
{
"id": 5,
"name": "Ejeshi G.",
"rate": "4",
"content": "teacher is good and direct, though not prompt at responding to questions and enquiries."
}
],
"hoursCount": "14",
"articlesCount": "1",
"downloadableResource": "3"
},
{
"id": 4,
"link": "https://www.udemy.com/course/python-beyond-the-basics-object-oriented-programming/",
"title": "Python Beyond the Basics - Object-Oriented Programming",
"author": "Infinite Skills",
"image": "https://img-c.udemycdn.com/course/480x270/449532_2aa9_7.jpg",
"price": "519.99",
"rating": 4.4,
"ratingCount": "2,930",
"category": "python",
"Introduction": "Learn A-Z everything about Python, from the basics, to advanced topics like Python GUI, Python Data Analysis, and more!",
"originalPrice": "679.99",
"enrollCount": "19,349",
"lastUpdate": "9/2015",
"outcomes": [
"Create their own Python Programs",
"Become an experienced Python Programmer",
"Parse the Web and Create their own Games"
],
"sectionsCount": "15",
"lecturesCount": "146",
"videosTime": "14",
"totalLength": "14h 42m",
"lectures": [
"Up and Running With Python",
"The Basics (Data Types)",
"Conditions and Loops",
"Functions!",
"Classes! (Object Orientated Programming)",
"File Input/Output",
"Using Python Modules",
"Crawling The Web",
"Beautiful Soup HTML Parsing",
"MatPlotLib - Charts, Plots and 3D Figures!",
"Data Analysis with Pandas!",
"Python GUI with Tkinter",
"Our First Game (Bounce!)",
"Our Second Game (Pong!)",
"What's Next?"
],
"content": [
[["Up and Running With Python"], ["Installing Python", "Hello World"]],
[
["The Basics (Data Types)"],
[
"Variables",
"Multiple Assignment",
"Data Types and Ints",
"Strings",
"Placeholders",
"Lists/Arrays",
"List Functions",
"Dictionaries",
"Dictionary Functions",
"Tuples",
"Exercise Files"
]
],
[
["Conditions and Loops"],
[
"If-Else Statements",
"Relational Operators",
"Nested If/Else",
"Elif Statements",
"Logical Operators",
"For Loops",
"While Loops",
"Nested For Loops",
"Pass, Break and Continue",
"Try and Except",
"Commenting",
"Quick Tips",
"Exercise Files"
]
],
[
["Functions!"],
[
"Creating our own Functions",
"Global and Local Vars",
"Abs and Bool",
"Help and Dir",
"Eval and Exec",
"Str, Int, Float",
"Recap and Sum"
]
],
[
["Classes! (Object Orientated Programming)"],
[
"Basics of Classes",