From selvi.dct at gmail.com Mon Dec 12 12:48:40 2022 From: selvi.dct at gmail.com (selvi dct) Date: Mon, 12 Dec 2022 23:18:40 +0530 Subject: [Chennaipy] Chennaipy - Monday Module - 12 Dec 2022 Message-ID: Date: 12 Dec 2022 Module: pygame Installation: pip install pygame About: pygame is a free and open-source cross-platform library for the development of multimedia applications like video games using Python. SourceCode: # Simple pygame program # Import and initialize the pygame library import pygame pygame.init() # Set up the drawing window screen = pygame.display.set_mode([500, 500]) # Run until the user asks to quit running = True while running: # Did the user click the window close button? for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Fill the background with white screen.fill((255, 255, 255)) # Draw a solid blue circle in the center pygame.draw.circle(screen, (0, 0, 255), (250, 250), 75) # Flip the display pygame.display.flip() # Done! Time to quit. pygame.quit() Reference: https://pypi.org/project/pygame/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From tshrinivasan at gmail.com Wed Dec 14 09:36:39 2022 From: tshrinivasan at gmail.com (Shrinivasan T) Date: Wed, 14 Dec 2022 09:36:39 -0500 Subject: [Chennaipy] Fwd: ERPNext / Frappe Tamilnadu Chapter - Webinar & Online Meetup, India | 15th, Dec 2022 In-Reply-To: References: Message-ID: Source - https://discuss.erpnext.com/t/erpnext-frappe-tamilnadu-chapter-webinar-online-meetup-india-15th-dec-2022/98497 We?re happy to announce that we planned a Webinar & Online Meetup on behalf of the ERPNext / Frappe Tamilnadu Chapter. Everyone from the community is requested to attend this meetup and grow up together. Date: 15th, Dec 2022 Time: 03.00 PM to 04.00 PM Google Meet joining info Video call link: https://meet.google.com/ign-izmc-rxp 4 Agenda: Installation and bench setup in production and development mode - 30 mins Community Members Collaboration Time - 30 mins -- Regards, T.Shrinivasan My Life with GNU/Linux : http://goinggnu.wordpress.com Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : http://FreeTamilEbooks.com -- Regards, T.Shrinivasan My Life with GNU/Linux : http://goinggnu.wordpress.com Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : http://FreeTamilEbooks.com From m.deepakeee1 at gmail.com Wed Dec 14 13:16:25 2022 From: m.deepakeee1 at gmail.com (Deepak Majjiga) Date: Wed, 14 Dec 2022 12:16:25 -0600 Subject: [Chennaipy] Fwd: ERPNext / Frappe Tamilnadu Chapter - Webinar & Online Meetup, India | 15th, Dec 2022 In-Reply-To: References: Message-ID: How to unsubscribe from this? On Wed, 14 Dec 2022 at 8:37 AM, Shrinivasan T wrote: > Source - > https://discuss.erpnext.com/t/erpnext-frappe-tamilnadu-chapter-webinar-online-meetup-india-15th-dec-2022/98497 > > We?re happy to announce that we planned a Webinar & Online Meetup on > behalf of the ERPNext / Frappe Tamilnadu Chapter. > > Everyone from the community is requested to attend this meetup and > grow up together. > > Date: 15th, Dec 2022 > Time: 03.00 PM to 04.00 PM > Google Meet joining info > Video call link: https://meet.google.com/ign-izmc-rxp 4 > > Agenda: > > Installation and bench setup in production and development mode - 30 mins > Community Members Collaboration Time - 30 mins > > > > > > -- > Regards, > T.Shrinivasan > > > My Life with GNU/Linux : http://goinggnu.wordpress.com > Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com > > Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : > http://FreeTamilEbooks.com > > > -- > Regards, > T.Shrinivasan > > > My Life with GNU/Linux : http://goinggnu.wordpress.com > Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com > > Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : > http://FreeTamilEbooks.com > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > -- Regards, Deepak Majjiga https://www.linkedin.com/in/deepak-majjiga-b9024077/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From selvi.dct at gmail.com Mon Dec 19 05:19:58 2022 From: selvi.dct at gmail.com (selvi dct) Date: Mon, 19 Dec 2022 15:49:58 +0530 Subject: [Chennaipy] Chennaipy - Monday Module - 19 Dec 2022 Message-ID: Date: 19 Dec 2022 Module : nltk Installation : pip install nltk About: Natural Language Toolkit (NLTK) is one of the leading Python platforms for processing language data. It is a set of language processing libraries and programs that provide a toolkit for: - Classification - Tokenization - Stemming - Tagging - Parsing - Semantic reasoning Sample: >>> import nltk >>> sentence = """At eight o'clock on Thursday morning ... Arthur didn't feel very good.""" # Tokenization in NLP is the process by which a large quantity of text is divided into smaller parts called tokens. >>> tokens = nltk.word_tokenize(sentence) >>> tokens ['At', 'eight', "o'clock", 'on', 'Thursday', 'morning', 'Arthur', 'did', "n't", 'feel', 'very', 'good', '.'] # POS Tagging in NLTK is a process to mark up the words in text format for a particular part of a speech based on its definition and context. >>> tagged = nltk.pos_tag(tokens) >>> tagged[0:6] [('At', 'IN'), ('eight', 'CD'), ("o'clock", 'JJ'), ('on', 'IN'), ('Thursday', 'NNP'), ('morning', 'NN')] Reference: https://pypi.org/project/nltk/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From tshrinivasan at gmail.com Sat Dec 24 11:54:04 2022 From: tshrinivasan at gmail.com (Shrinivasan T) Date: Sat, 24 Dec 2022 11:54:04 -0500 Subject: [Chennaipy] Fwd: [MediaWiki-India] Call for the Scholarship Application for Wikimedia Technology Summit (WTS) on 3rd, and 4th of March 2023 ( A gentle reminder) In-Reply-To: References: Message-ID: ---------- Forwarded message --------- ??????????: Ka?yap ?????? Date: ???, 24 ???., 2022, ???????? 8:31 Subject: [MediaWiki-India] Call for the Scholarship Application for Wikimedia Technology Summit (WTS) on 3rd, and 4th of March 2023 ( A gentle reminder) To: Hello everyone, We?d like to remind you that scholarships to attend the 2nd Wikimedia Technology Summit [1], which will take place on the 3rd and 4th of March 2023 (Friday and Saturday) at The International Institute of Information Technology - Hyderabad, India, are now open. The scholarships will primarily support active Wikimedia Technology developers and other stakeholders to participate in the summit. The Wikimedia Technology Summit (WTS) aims to share and discuss state-of-the-art tools, technologies, knowledge, and ongoing research within Wikimedia and its sister projects. The applications for scholarships can be submitted from 11 December 2022 to 31 December 2022. If you have any questions, please post a message on the talk page [2]. To apply for a scholarship, you can fill out the application form at https://forms.gle/KpjzUE5qZtsM7iwS9. We would appreciate it if you could help us spread the word about the Wikimedia Technology Summit. The scholarships will primarily support active Wikimedia Technology developers and other stakeholders to participate in the conference. The scholarships will cover travel, accommodation, food, registration, and any other incidentals related to the conference participation. On behalf of the organizing committee, 2nd Wikimedia Technology Summit. Links: [1]https://meta.wikimedia.org/wiki/2nd_Wikimedia_Technology_Summit [2] https://meta.wikimedia.org/wiki/Talk:2nd_Wikimedia_Technology_Summit/Scholarships _______________________________________________ MediaWiki-India mailing list -- mediawiki-india at lists.wikimedia.org To unsubscribe send an email to mediawiki-india-leave at lists.wikimedia.org %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s -- Regards, T.Shrinivasan My Life with GNU/Linux : http://goinggnu.wordpress.com Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com Get Free Tamil Ebooks for Android, iOS, Kindle, Computer : http://FreeTamilEbooks.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From selvi.dct at gmail.com Mon Dec 26 12:36:31 2022 From: selvi.dct at gmail.com (selvi dct) Date: Mon, 26 Dec 2022 23:06:31 +0530 Subject: [Chennaipy] Chennaipy - Monday Module - 26 Dec 2022 Message-ID: Date: 26 Dec 2022 Module : zoomlog Installation : pip install zoomlog About: Simple python logger Sample: from zoomlog import Logger, DEBUG, INFO logger = Logger("test.log", name="test", level=DEBUG) logger.debug("My logger is work!") name = "Sergey" logger.addLevel("NEW USER", INFO) logger.log("NEW USER", "Created new user - %s" % name) Output: 10:45:20 25.12.22 DEBUG:test >> My logger is work! 10:45:20 25.12.22 NEW USER:test >> Created new user - Sergey Reference: https://pypi.org/project/zoomlog/ -------------- next part -------------- An HTML attachment was scrubbed... URL: