-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.txt
1898 lines (766 loc) · 40.3 KB
/
code.txt
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
C:\Python27\lib\site-packages\bs4\__init__.py:181: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.
The code that caused this warning is on line 26 of the file F:\My Files\Projects\scrappy\scrap.py. To get rid of this warning, change code that looks like this:
BeautifulSoup(YOUR_MARKUP})
to this:
BeautifulSoup(YOUR_MARKUP, "lxml")
markup_type=markup_type))
School Tuitions in Kolkata, Local Tutors, Tuition Teachers | Sulekha Kolkata
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'//www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TSDQTH');
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-50743-1"]);
_gaq.push(["_setCustomVar", 1, "UserTrack", "f0c31b72-c065-4d15-a963-6a861af62d55", 1]);
_gaq.push(["_setCustomVar", 2, "City", "Kolkata", 3]);
_gaq.push(["_setCustomVar", 3, "Taxonomy", "School Tuitions", 3]);
_gaq.push(["_setCustomVar", 4, "PageType", "ListingPage", 3]);
_gaq.push(["_setCustomVar", 5, "PageId", "", 3]);
_gaq.push(["_trackPageview"]);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
function urchinTracker(url) {
if (url == undefined) url = '';
try {
if (url != '') {
_gaq.push(['_trackPageview', url]);
}
} catch (err) { }
} /*RankTracker*/
try {
if ((document.referrer.match(/google\.com/gi) || document.referrer.match(/google\.co\.in/gi)) && document.referrer.match(/cd/gi)) {
var myString = document.referrer;
var r = myString.match(/cd=(.*?)&/);
var rank = parseInt(r[1]);
var kw = myString.match(/q=(.*?)&/);
if (kw[1].length > 0) {
var keyWord = decodeURI(kw[1])
} else {
keyWord = "(not provided)"
}
var p = document.location.pathname;
_gaq.push(['_trackEvent', 'RankTracker', keyWord, p, rank, true])
}
} catch (err) { }
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-50743-23', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview', {
'dimension1': 'f0c31b72-c065-4d15-a963-6a861af62d55',
'dimension2': '(not set)',
'dimension3': '(not set)',
'dimension4': 'Kolkata',
'dimension5': '(not set)',
'dimension6': 'business_listing_subcat_city',
'dimension7': '(not set)',
'dimension8': '(not set)',
'dimension9': '(not set)',
'dimension10': '(not set)',
'dimension11': '(not set)',
'dimension12': '(not set)',
'dimension13': 'School Tuitions',
'dimension14': '(not set)',
'dimension15': '(not set)',
'dimension16': '(not set)',
'dimension17': '(not set)',
'dimension18': 'Desktop',
'dimension19': '(not set)',
'dimension20': '(not set)'
});
Sulekha
Kolkata
Business Owner
Download App
Sign Up
Sign In
Member
Account settings
My Dashboard
Logout
Coaching & Tuitions
School Tuitions
School Tuitions in Kolkata
1960+ School Tuitions in Kolkata
/* standout lcf */
.lcfalone-wrap .lcf-alone{position:relative;width:705px;margin:0 auto;padding:15px 0 0;border-radius:3px;background:#e5e9ec;z-index:999;box-shadow:1px 1px 7px 1px #777}.lcfalone-wrap .lcf-alone .lcf-form.mdld{border:0;border-top:1px solid #9b9b9b}.standout-mask{position:fixed;left:0;right:0;bottom:0;top:0;background-color:#c5c5c1;z-index:998;opacity:.8;filter:alpha(opacity=60)}.lcfalone-wrap .standbread{padding:15px 27px 0;margin-bottom:5px}.lcfalone-wrap .lcf-alone a.lcf-close{color:#fff;cursor:pointer;font-size:40px;height:30px;line-height:30px;position:absolute;right:-35px;text-align:center;top:0;transition:all .5s ease;width:30px;border-radius:50%;text-decoration:none;font-weight:300;z-index:1}.lcfalone-wrap .lcf-alone a.lcf-close:hover{color:#4d4d4d}.lcfalone-wrap.lcf-bg .lcf-alone .sub-head{font-size:12px}.lcfalone-wrap .lcf-alone>h1{font-size:20px}.lcfalone-wrap .lcf-alone .lcf-pager{display:none !important}.lcfalone-wrap .fill-info-wrap{position:inherit;margin-top:-140px}
/* standout lcf ends */
window.onload = function () { if (LCF.getParameterByName("", "tp") != "getquotes") { var a = $("#hdnCategoryId").val(); if (LCF.getParameterByName("", "semonpage") == "1") { OpenIframeLcfmdld() } else { if (!sul.getCookie("SulekhaYPOverlay" + a) && !sul.getCookie("lcfoverlay" + a) && window.location.href.indexOf("#listing") == -1) { sul.setCookie("lcfoverlay" + a, "1"); OpenIframeLcfmdld() } } } }; function OpenIframeLcfmdld(d) { var b = $(".lcf-bg .container"); if ($(".lcf-alone").length == 0) { $(b).wrapInner('<div class="lcf-alone"></div>'); $(".lcf-bg").addClass("lcfalone-wrap") } if (LCF.getParameterByName("", "semonpage") != "1") { var a = $('<a class="lcf-close">×</a>'); $(".lcf-bg .lcf-alone").prepend(a) } $(".breadcrumb").addClass("standbread"); $(".lcf-bg").prepend($(".breadcrumb")); var c = $('<div class="standout-mask"></div>'); $(".lcf-bg").append(c); if (LCF.getParameterByName("", "semonpage") != "1") { $(document).on("click", ".standout-mask", function () { standoutact() }); $(document).on("click", ".lcf-close", function () { standoutact() }) } standoutact = function () { if (!$(".lcf-bg .container").find(".breadcrumb").length) { $(".lcf-close").remove(); $(".standout-mask").remove(); $(".breadcrumb").removeClass("standbread"); $(".lcf-bg .container").prepend($(" .lcf-bg .breadcrumb")); $(".lcf-bg").removeClass("lcfalone-wrap") } if ($(".lcf-alone #hdtracking").length > 0) { var f = JSON.parse($(".lcf-alone #hdtracking").val()); f.Context = "0"; $(".lcf-alone #hdtracking").val(JSON.stringify(f)) } }; if ($(".lcf-alone #hdtracking").length > 0) { var e = JSON.parse($(".lcf-alone #hdtracking").val()); e.Context = "6"; $(".lcf-alone #hdtracking").val(JSON.stringify(e)) } $('[data-toggle="spop"]').popover('destroy'); };
Tell us your need, we'll connect you with service experts
Fill and submit the form below
Verified service providers will call you
Get quotes, compare and hire the best
Tell us more about your requirements so that we can connect you to the right School Tuitions
Kolkata
Select your city
What service do you need? *
Class XI to XII tuitions
Class I to V tuitions
Class VI to VIII tuitions
Class IX to X tuitions
NIOS tuitions
Vedic maths tuitions
A-level tuitions
Abacus & mental arithmetic tuitions
Please select need
Back
Next
T&C apply
Why fill this form
3 Lac+
Customers fill this form every month to get their local needs fulfilled
50,000+
Service experts contact our customers with details from this form
64%
Users trust only Sulekha for all their local needs
Business Listings
School Tuitions in Kolkata as on Jun 08, 2017
Featured
Rana Dutta Tutorials
+91 +919830448439
Salkia, Howrah
Send SMS
Get Quotes
Filter by:
RESET
Type of classes
A-level
Abacus
Class I to V
Class IX to X
Class VI to VIII
View all services
Class XI to XII
NIOS
Vedic Maths
Less services
Tuition for
10th
11th
12th
1st
2nd
View all services
3rd
4th
5th
6th
7th
8th
9th
Level I
Level II
Level III
Level IV
Level V
Level VI
Level VII
Level VIII
PUC / Intermediate
Less services
Board
CBSE
IB
ICSE
IGCSE
ISC
View all services
State
Less services
Subjects
Accounts
Biology
Business studies
Chemistry
Civics
View all services
Commerce
Computer science
Economics
English
Environmental studies
Finance
French
Geography
Hindi
History
Law
Life enrichment programmes
Mathematics
OBE 'A' level course (equivalent to grade III)
OBE 'B' level course (equivalent to grade V)
OBE 'C' level course (equivalent to grade VIII)
Physics
Political Science
Regional indian language
Sanskrit
Science
Secondary course (equivalent to grade X)
Senior secondary course (equivalent to grade XII)
Social
Statistics
Vocational education
Zoology
Less services
Mode of teaching
Classroom
Home
Online
Less services
School type
Higher Secondary
Primary
Secondary
Less services
Locality
Salt Lake City
Behala
Dum Dum
Baguiati
Garia
Sort by:
Default
Score
Rating
Default
Genius Abacus Kids Pvt. Ltd., Jodhpur Park
1 Review
8.2 Sulekha Score
+91 33 30651428
School Tuitions,
Abacus & mental arithmetic tuitions
About
<p>Genius Abacus Kids Pvt. Ltd. is an UCMAS training centre based in Kolkata, India. UCMAS is a child development program based on Visual Arithmetic and Abacus that boosts brainpower in children aged 4-13 years. UCMAS promotes the skills to succeed in the classroom and life. It combines Abacus, an ancient teaching tool, with modern teaching methods to enhance the overall development of the child.</p>
<p>Our successful step by step guidance and motivational and fun-filled teaching method, effectively activate children’s mental ability. UCMAS’ Abacus education trains students in a unique way in developing their intellectual. It can improve the calculation ability of a student in a very short period and enhance the interest, motive, personality and determination of the student.</p>
<p>We follow a uniform syllabus across the country which makes the transfer of a student, in between levels, possible on All India Basis from one centre to another without any additional charges. Along with strengthening math skills, the UCMAS’ approach promotes whole brain development and establishes foundational building blocks of memory, concentration, creativity and problem-solving – core skills that inspire greater confidence and success in all subject areas and life.</p>
<p>The programme equips them with the skills they need to improve the overall academic achievement and to meet life's challenges confidently and achieve greatness. Plus, our exciting classes and energetic instructors ensure that our students have fun as they learn.</p>
<p>Since 1993, UCMAS has helped over one million children around the world discover the genius within. We apply innovative pedagogical techniques developed by program specialists that include child development experts and child psychologists to leverage educational trends and to maintain a world-class quality program that delivers the maximum benefit to our students. UCMAS is an ISO 9001:2008 certified program. Contact us to build the skills for your child to succeed!</p>
34 Photos
Save to Phone
Send SMS Get Quotes
Inspiral Coaching Centre, Garia
7 Reviews
8.3 Sulekha Score
+91 33 30696039
School Tuitions,
Class XI to XII tuitions
About
<p> Inspiral Coaching Centre for Learning has been in the coaching field since 2016 and employs trainers with immense experience in the field. We provide coaching for IIT Engineering Entrance Exams, Spoken English Classes, AIEEE, AIPMT, IIT-JEE, Etc. We also offer College Tuitions for Accounts and School Tuitions for All Subjects especially for 9th and 10th Std. Students. <br />Our motto is to provide the best teaching to the students with the help of our skilled tutors. We have a huge list of successful students. We promise a better future for your children in higher education by ensuring to impart valuable knowledge to our students. We strive to make the life of our patrons better and brighter. Contact us for further details.</p>
10 Photos
Save to Phone
Send SMS Get Quotes
Rajeev Classes, Ballygunge
5 Reviews
8.8 Sulekha Score
+91 33 30651407
School Tuitions,
Class XI to XII tuitions
About
<p>At Rajeev classes, we give students the knowledge and tools they needs for gaining success in IIT-JEE , NEET and Other Entrance Exams along with board exams(CBSE, ICSE and WBBSE).</p>
<p>We Provide all enginnering and Medical aspirants with perfect environment to build a strong foundation and face all challenges that may conme in their way toward success.</p>
<p>we teach with efficiecy and follow basic steps which can be utilized properly and effectively. we train our students with utmost care and prepare them with most basic mantras on how to gain success without losing enthusiasm. we open their minds to bigger dreams because we firmly believe " the bigger one's dream, bigger is one's success. "</p>
<p>Our excellent faculty members work as team to sail each and every aspirant to shore of fulfilling their dreams with fundamental knowledge , regular test , promising doubt clearing session and individual care.</p>
11 Photos
Save to Phone
Send SMS Get Quotes
MT Educare Ltd.
1 Review
5.7 Sulekha Score
+91 22 33292653
School Tuitions,
Class XI to XII tuitions
Also Servicing :
Kolkata