Skip to content

Instantly share code, notes, and snippets.

View chkumar246's full-sized avatar

Chandan Kumar chkumar246

View GitHub Profile
@chkumar246
chkumar246 / gist:cc44a12214470499830c
Created August 27, 2015 10:23
August Python Pune Meetup 2015 Schedule
August Python Pune Meetup 2015 Schedule
=======================================
Date: 29th August, 2015
Time: 10:30 A.M. to 02:30 P.M.
Venue: Amazatic Solutions, Office # 712, 713 & 716 Spot 18 Mall, Jagtap Dairy Chowk, Pimple Saudagar , Pune
[1.] Workshop : 10:30 A.M. to 11:30 A.M.
Topic - Scapy - A packet crafting/manipulation tool
speaker - suraj deshmukh
Pre-requisites:

Python

  • High level language
  • Dynamically typed
  • Interpreted language
  • Simple and easy to understand the code

Let's start python interpreter by typing command python in terminal

:

@chkumar246
chkumar246 / gist:3e2441dfda6a417fa5fc
Last active August 29, 2015 14:23
June Python Pune Meetup 20/06/2015 Program Schedule

June Python Pune Meetup 20/06/2015 Schedule

10:30 A.M. - 10:40 A.M. - Meetup Introduction

10:40 A.M. - 12:40 P.M. - Document Your Code WorkShop

12:45 P.M. - 01:15 P.M. - Flask and its capabilities

@chkumar246
chkumar246 / July_devsprint_2015
Last active August 29, 2015 14:25
July Python Pune Developer's Sprint 2015
Projects for July Python Pune Developer's sprint 2015
-----------------------------------------------------
scipy - https://github.com/scipy/scipy/issues?q=is%3Aopen+is%3Aissue+label%3Aeasy-fix
matpolib - https://github.com/matplotlib/matplotlib/issues?q=is%3Aopen+is%3Aissue+label%3A%22Difficulty%3A+Easy%22
nltk - https://github.com/nltk/nltk/issues?q=is%3Aopen+is%3Aissue+label%3Agoodfirstbug
pandas - https://github.com/pydata/pandas/issues?q=is%3Aopen+is%3Aissue+label%3A%22Difficulty+Novice%22
mailpile - https://github.com/mailpile/Mailpile/issues?q=is%3Aopen+is%3Aissue+label%3A%22Low+Hanging+Fruit%22
junction - https://github.com/pythonindia/junction/issues?q=is%3Aopen+is%3Aissue+label%3A%22Easy+Fix%22
rtfd - https://github.com/rtfd/readthedocs.org/issues?q=is%3Aopen+is%3Aissue+label%3A%22Good+First+Bug%22
[3.] python-nodeenv : https://bugzilla.redhat.com/show_bug.cgi?id=1252656 [Done]
[4.] python-bashate: https://bugzilla.redhat.com/show_bug.cgi?id=1252657 [done]
[5.] Python-PyKMIP: https://bugzilla.redhat.com/show_bug.cgi?id=1252669
[7.] python-zake: https://bugzilla.redhat.com/show_bug.cgi?id=1252803
[8.] python-gabbi : https://bugzilla.redhat.com/show_bug.cgi?id=1252812
@chkumar246
chkumar246 / pypune2015sprint.rst
Last active March 15, 2016 11:29
Python Pune sprint 2015 project list.
# Script to generate stats based on the activity on RDO Bugzilla
# during Bug Triage Day
#
# Autho: Chandan Kumar <chkumar246@gmail.com>
#
# How to run this script
# python bztraigeday_stats.py
import bugzilla
# Bugzilla Script to close ALL EOL Bugs
# Author : Chandan Kumar <chkumar246@gmail.com>
#
# How to Run this script:
# $ python close_eol_bugs.py
import bugzilla
import getpass
BZ_URL = "https://bugzilla.redhat.com"

What's new in Fedora 24

Topics

  • Workstation
  • Server
  • Cloud
  • Spins and Labs
@chkumar246
chkumar246 / findimports.py
Last active October 3, 2016 12:39
Script to find out all third party imports from a code repository
# Script to find all third party imports from python projects
# How to Run
# sudo pip install find-import virtualenv pymod2pkg
# python findimports.py <path to python code repository>
# Author: Chandan Kumar <chkumar246@gmail.com>
import pymod2pkg
import os
import shutil
import subprocess