Skip to content

Instantly share code, notes, and snippets.

@b1ackturtle
b1ackturtle / GSoC2018_FinalReport.md
Last active December 15, 2018 14:19
GSoC 2018 Final Report

GSoC2018 Final Report

In GSoC 2018, I joined at [3DTK][1], and my project was "Replacing the glui GUI with a Qt5 GUI". This project detail can be confirmed [here][2].

What was done

  • Implement new features
    • Add and delete cameras
      I added a widget to add and delete cameras. ([r1768][3], [r1856][25], [r1857][26])
    • View mode widget and rotation mode
      A widget for view mode is added. In show and qtshow, I also implemented a new view mode (rotation mode) that allows one to turn/rotate the model instead of flying through the scene. ([r1791][4], [r1794][5], [r1796][6], [r1809][7], [r1845][19])
    • Signal handling
from bs4 import BeautifulSoup
import urllib2
response = urllib2.urlopen("https://python.org")
html = response.read()
soup = BeautifulSoup(html, "html.parser")
title = soup.title.string
print title