πExplore file System with Flask π
Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. And before you ask: Itβs BSD licensed[1] Jinja2 is just a templating language, means we can keep HTML templates to reuse then and by using its features we can iterate the objects and parse data in...
[Read more]
python.learning
Dictionary merge two dicts in python >>> x = { 'a' : 1, 'b' : 2 } >>> y = { 'b' : 3, 'c' : 4 } >>> z = { **x, **y } >>> z {'a': 1, 'b': 3, 'c': 4} as here the value of b is...
[Read more]
IRC Bot in Python
IRC (Internet Relay Chat) IRC is a communication medium where peoples talk on the same topic over the world. There are hundreds of channels hosted on IRC. There are client programs who provide a GUI which is easy to log on and chat. IRC servers do use the same socket...
[Read more]
Fileop module in Python
Fileop is a python module written for handling files without maintaining file pointers. It helps to Read, Write, Create, Delete, Append data of file as well as to get permissions, owner and group of files. It also helps to load remote file data to a local file or to a...
[Read more]
Working with PyQt4
Working With PyQt4 PyQt4 is a framework for Gui Design. We were working on project Server-Suite and we were searching for a good GUI provider in python and decided to go with PyQt4. While working on a project I learned many things and I thought about sharing them. Through this...
[Read more]