Skip to content

Instantly share code, notes, and snippets.

View Sanket758's full-sized avatar
🏠
Working from home

Sanket Gadge Sanket758

🏠
Working from home
View GitHub Profile
@Sanket758
Sanket758 / PY0101EN-4-1-ReadFile.ipynb
Created February 17, 2020 15:19
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sanket758
Sanket758 / PY0101EN-1-1-Types.ipynb
Created February 15, 2020 14:43
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sanket758
Sanket758 / PyQtDemo.py
Last active February 8, 2020 15:44
Getting started with PyQt. Here we have created a single page single layout Qt5 app where it displays a label on the window.
'''
First you will need to install qt5 on your system,
for that you will need to do this in you terminal:
sudo apt-get qt5-default
and then,
pip install sip PyQt5
'''
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
@Sanket758
Sanket758 / main.py
Created February 4, 2020 05:29
web.py Tutorial
import web
urls = (
'/(.*)/(.*)', 'hello'
)
render = web.template.render("resources/")
app = web.application(urls, globals())
class hello: