PyDelhi MayPy

May 14th marked by scorching heat and to tackle it we had some cool Python libraries and Framework to learn, share and interact at the PyDelhi Meetup at Fueled Noida Office. Attended by 40 python enthusiasts.

PyDelhi Meetup

Hackathon Listing Platform using Django Framework

First we had Pulkit Pahwa, taking up a knowledge enriching session on Django Web Framework. The agenda was to build a Hackathon listing platform sort of a mini-hackerearth which required basic knowledge of Python. Started with the creation of the Django project,and then an app for Hackathon related information with the models.py dealing with the data and model fields, urls.py for url configurations and mapping the urls to the handlers lodged in the views.py of our app using the Django ORM.

Following explains the entire flow of the web application built on Django. PyDelhi Meetup

The interaction led process of request response cycle and how Django handles the requests and rendering the data onto the templates. A nicely pulled up session came to an end with our dummy Hackathon lists brightening up our pages running on our very own Django development server with developers getting in touch with the awesomeness(speed and ease) of the Django Framework.

Refreshments are just a way to get to interact with people about their work experience, their findings, and best practices of problem solving. You never know which statement might prove helpful to you at what point in your project.

PyDelhi Meetup

Getting Python to interact with Java and objc using PyJnius and PyObjus

Next we had a talk on "Getting python to interact with Java, Obj-C using PyJnius and PyObjus." by Akkshay Arora, - Python, Linux lover, core-dev of kivy. The discussion involved a few python libraries which provide modules and methods to interact with other languages without diving much into it. The usage of this can simply be explained by thinking of a situation where you can have the best of two languages with the knowledge of one - feels weird right? But this is actually possible.

PyJNIus - A Python module to access Java classes as Python classes using JNI.

With a quick overview :

from jnius import autoclass
autoclass('java.lang.System').out.println('Hello world')
Hello world
Stack = autoclass('java.util.Stack')
stack = Stack()
stack.push('hello')
stack.push('world')
print stack.pop()
world
print stack.pop()
hello

Now with this great library the difference to other projects is that apps can take advantage of python-for-android’s relatively extensive toolchain including python3.5 support, the ability to build popular libraries like numpy, support for multiple architectures, and access to the Android API via PyJNIus or Plyer rather than SL4A.

PyObjus - Python module for accessing Objective-C classes as Python classes using Objective-C runtime reflection.

from pyobjus import autoclass, objc_str
from pyobjus.dylib_manager import load_framework, INCLUDE
load_framework(INCLUDE.AppKit)
# get nsalert class
NSAlert = autoclass('NSAlert')
# create an NSAlert object, and show it.
alert = NSAlert.alloc().init()
alert.setMessageText_(objc_str('Hello world!'))
alert.runModal()

So, autoclass is the heart of pyobjus. With this function, you load Objective C classes into pyobjus which then constructs a Python wrapper around these objects. You can load external code into pyobjus using the load_framework function, or by using load_dylib. The load_framework function uses NSBundle for loading the framework into pyobjus, and the load_dylib function uses ctypes for loading external .dylib objects into pyobjus.

Well this is just a trailer and here we believe the script of the movie should be written by you. Keep exploring and explain yourself the reason why these excellent libraries and frameworks have been built with a Project or application. Because Necessity is long gone. Now innovation mothers Invention.

Subscribe to our blog and follow us on social media and keep coming to the meetups on alternate Saturdays.

Looking forward to meet you!! Till then this is PyDelhi signing off.