How to use logging

2014-02-16 Thread kumar
Hi folks, i'm new to python i understood the logging mechanism but unable to understand how these are applied in real time examples can any body help me out -- https://mail.python.org/mailman/listinfo/python-list

Urgent:Serial Port Read/Write

2013-05-09 Thread chandan kumar
Hi all,I'm new to python and facing issue using serial in python.I'm facing the below error      ser.write(port,command)NameError: global name 'ser' is not defined Please find the attached script and let me know whats wrong in my script and also how can i read data from serial port for the  same

Immediate Position:::Business Analyst With BI EXP::::At Houston, TX

2013-05-15 Thread susheel kumar
Hi, This is Girish, - Recruitment and Resources from SancroSoft USA Inc. We have an urgent requirement as follows: Please respond with resumes in MS-Word Format with the following details togir...@sancrosoftusa.com Full Name : Location : Contact Number : Email : Availability : Visa Status : Bus

Immediate Position:::Business Analyst With BI EXP::::At Houston, TX

2013-05-15 Thread susheel kumar
Hi, This is Girish, - Recruitment and Resources from SancroSoft USA Inc. We have an urgent requirement as follows: Please respond with resumes in MS-Word Format with the following details togir...@sancrosoftusa.com Full Name : Location : Contact Number : Email : Availability : Visa Status : Bus

Any speech to text conversation python library for Linux and mac box

2013-06-12 Thread Ranjith Kumar
heers, Ranjith Kumar K, Chennai. http://ranjithtenz.wordpress.com -- http://mail.python.org/mailman/listinfo/python-list

Pymongo Error

2012-06-18 Thread Ranjith Kumar
, 'USER': '', 'PASSWORD': '12424214', 'HOST': 'mongodb://staff.mongohq.com/', 'PORT': 'X', }, } my requirement packages, Django==1.3 dictshield==0.4.4 django-mongodb-engine==0.4.0 django-social-auth==0.6.9 djangotoolbox==0.0.1 httplib2==0.7.4 mongoengine==0.6.10 mongokit==0.8 oauth2==1.5.211 pymongo==2.2 python-openid==2.2.5 simplejson==2.5.2 wsgiref==0.1.2 Please point me what i missed here... -- Cheers, Ranjith Kumar K, Chennai. http://ranjithtenz.wordpress.com -- http://mail.python.org/mailman/listinfo/python-list

New member from India

2012-07-02 Thread anuj kumar
Hello Everyone, Warm greetings to all of you... I have to learn Python.So i recently join the python mailing list .Can you please send me some sample programs from where i can start. Thanks, Anuj -- http://mail.python.org/mailman/listinfo/python-list

attribute is accessed from Nonetype

2012-08-02 Thread Shanth Kumar
Hi ,All, I am Shanthkumar. Good to see the mailing list for python programmers. Please find my query below, In my source code in a python file e.g xyz.py couple of classes are defined also there is a wrapper class, a none object is declared in the file e.g temp=None from temp some attributes are b

help me debug my "word capitalizer" script

2012-08-21 Thread Santosh Kumar
Here is the script I am using: from os import linesep from string import punctuation from sys import argv script, givenfile = argv with open(givenfile) as file: # List to store the capitalised lines. lines = [] for line in file: # Split words by spaces. words = line.s

Re: help me debug my "word capitalizer" script

2012-08-22 Thread Santosh Kumar
OK! The bug one fixed. Thanks to Andreas Perstinger. Let's move to Bug #2: 2. How do I escape the words that are already in uppercase? For example: The input file has this: NASA The script changes this to: Nasa Is it possible to make this script look at a word, see if its first character is ca

SAP MM Cupertino, CA

2012-09-10 Thread Suresh Kumar
Hi, This is Girish, - IT Recruiter from SancroSoft USA Inc. Please respond with updated resume in MS-Word .doc Format with the following details to gir...@sancrosoftusa.com Full Name : Location : Contact Number : Email : Availability : Visa Status : SAP MM Location : Cupertino, CA Duration:

want to show list of available options and arguments in my command line utility

2012-09-15 Thread Santosh Kumar
I have a script that takes an which basically takes a command line argument and prints after processing. If I don't give the argument to the script, it gives me a ValueError: ValueError: need more than 1 value to unpack I was trying to utilizing this space, if there is no argument I want it to sh

Regarding Jython support in IBM and HP platforms

2012-12-26 Thread Naresh Kumar
Hello, I am trying to use the Jython in IBM AIX and HP machines to test our framework which is based on JAVA. when trying to run our python and jython based testcases using system test framework we are getting below errors in jython.err file Error: could not find libjava.so Error: could n

Re: Any algorithm to preserve whitespaces?

2013-01-23 Thread Santosh Kumar
I am in a problem. words = line.split(' ') preserve whitespaces but the problem is it writes an additional line after every line. And: words = line.split() works as I expect (does not adds addition line after every line) but does not preserves whitespaces. -- http://mail.python.org/m

Re: Any algorithm to preserve whitespaces?

2013-01-23 Thread Santosh Kumar
Yes, Peter got it right. Now, how can I replace: script, givenfile = argv with something better that takes argv[1] as input file as well as reads input from stdin. By input from stdin, I mean that currently when I do `cat foo.txt | capitalizr` it throws a ValueError error: Traceback (m

Re: Any algorithm to preserve whitespaces?

2013-01-24 Thread Santosh Kumar
On 1/24/13, Peter Otten <__pete...@web.de> wrote: > Santosh Kumar wrote: > >> Yes, Peter got it right. >> >> Now, how can I replace: >> >> script, givenfile = argv >> >> with something better that takes argv[1] as input file as well as &

Re: Any algorithm to preserve whitespaces?

2013-01-24 Thread Santosh Kumar
But I can; see: http://pastebin.com/ZGGeZ71r On 1/24/13, Peter Otten <__pete...@web.de> wrote: > Santosh Kumar wrote: > >> On 1/24/13, Peter Otten <__pete...@web.de> wrote: >>> Santosh Kumar wrote: >>> >>>> Yes, Peter got it right. >>>

Python Training

2012-04-07 Thread Mohan kumar
Hi, We are an IT Training company located in Bangalore, Chennai and Coimbatore. We provide Python training with Placement Assistance. For more details, email to mo...@cgonsoft.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Training

2012-04-07 Thread Mohan kumar
On Apr 7, 2:21 pm, Mohan kumar wrote: > Hi, > We are an IT Training company located in Bangalore, Chennai and > Coimbatore. We provide Python training with Placement Assistance. For > more details, email to mo...@cgonsoft.com We also provide Online Training. -- http://mail.python

some beginners questions about programming

2012-04-21 Thread Santosh Kumar
Hello Python Developers, I have a very less experience with programming. I have digged a little bit of all (I mean *C, **Java, JavaScript, PHP*) at introductory level and now I have two question about it. 1. Are *Arrays* and *Lists* same things? 2. Are *Modules* and *Libraries* same things?

Getting started with PyGTK [Receiving Error]

2012-04-28 Thread Santosh Kumar
System Information Ubuntu 11.10 Python 2.7.2 Problem I think my Ubuntu has PyGTK and GTK both already installed. But however when I am importing "gtk" in Python interactive mode then I am getting the following warning: (.:4126): Gtk-WARNING **: Unable to

Subsetting a dataset

2011-06-12 Thread Kumar Mainali
am a beginner in Python. So, complete code would be more helpful. - Kumar -- Section of Integrative Biology University of Texas at Austin Austin, Texas 78712, USA -- http://mail.python.org/mailman/listinfo/python-list

Subsetting a dataset

2011-06-12 Thread Kumar Mainali
am a beginner in Python. So, complete code would be more helpful. - Kumar -- Section of Integrative Biology University of Texas at Austin Austin, Texas 78712, USA -- http://mail.python.org/mailman/listinfo/python-list

Web design services | website designing | hire a website designer | creative web design

2011-06-21 Thread sravan kumar
web design services, XHTML Conversion Services, Offshore outsourcing web design & SEO Expert Acedezines provides best services for your website design, search engine optimization, web design services, brochure design, flash intro animation, website designing, wordpress themes. for more details http

Python for science experiments

2011-07-08 Thread Ajith Kumar
Hello, Just posting a link of a project using Python <http://expeyes.in/> for doing science experiments. with regards ajith -- Dr. Ajith Kumar B.P. Scientist SG Inter-University Accelerator Centre Aruna Asaf Ali Marg New Delhi 110067 www.iuac.res.in Ph: (off) 91 11 26893955 (E

Selecting unique values

2011-07-26 Thread Kumar Mainali
-77.38333 39.68333 Accipiter cooperi -77.38333 39.68333 Accipiter cooperi -75.99153 40.65 Accipiter cooperi -75.99153 40.65 - Kumar -- http://mail.python.org/mailman/listinfo/python-list

Re: Selecting unique values

2011-07-26 Thread Kumar Mainali
Thank you everybody. I can extract unique values now. - Kumar On Tue, Jul 26, 2011 at 2:38 PM, Dan Stromberg wrote: > > Some good stuff has already been suggested. Another possibility is using a > treap (not a duptreap but a treap): > > http://stromberg.dnsalias.org/~dstromber

Gammu in python error

2011-04-02 Thread Santhosh Kumar
Hi all, I am new to gammu. I did the cofiguration with gammu very successfully and if I try to send sms with command mode ( sudo echo "sms test from santhos pc probably yo vl call me" | /usr/bin/gammu --sendsms TEXT +919840411410 ) its working fine. So, I try to extend the code along with pyth

NLP

2011-04-08 Thread Ranjith Kumar
Hi all, Can anyone suggest me any best Natural Language Processing in python other than nltk. -- Cheers, Ranjith Kumar K, Chennai. http://ranjithtenz.wordpress.com -- http://mail.python.org/mailman/listinfo/python-list

Send Sms with Nokia Phone

2011-04-11 Thread Santhosh Kumar
Hi all, I try to implement a sms forwarding system. My aim is to when some hits happen in database It should send a sms so I did some research with gammu and gammu-smsd I did all the configuration and also test sms is working fine when I give echo "hello world" /etc/gammu text +91xx th

how to avoid leading white spaces

2011-06-01 Thread rakesh kumar
UM1 ' the above is the output of another python script but its having a leading spaces. any help is much appreciate. -- Thanks and regards @@ Be An Innovator @@ Rakesh Kumar A +917428243738 [image: cid:image001.jpg@01CA6F8E.95C07E20] <>-- http://mail.python.org/mailman/listinfo/python-list

Python

2021-06-14 Thread Adarsh Kumar
How to run python file in normal laptop actually when i run python it is showing error pls tell me how to add python extension in xammp -- https://mail.python.org/mailman/listinfo/python-list

RE: Vnev issue - AttributeError: module 'sysconfig' has no attribute '_get_default_scheme'. Did you mean: 'get_default_scheme'?

2021-11-05 Thread pranesh kumar
ig' has no attribute '_get_default_scheme'. Did you mean: 'get_default_scheme'?" Pranesh Kumar 9789411538 Your inputs could be so grateful on this issue Sent from [1]Mail for Windows References Visible links 1. https://go.micro

RE: Vnev issue - AttributeError: module 'sysconfig' has no attribute '_get_default_scheme'. Did you mean: 'get_default_scheme'?

2021-11-10 Thread pranesh kumar
ng How to fix this issue. Thanks in advance Regards Pranesh Kumar 9789411538 Sent from [2]Mail for Windows From: [3]OmPs Sent: 06 November 2021 00:01 To: [4]pranesh kumar Cc: [5]python-list@python.org Subject: Re: Vnev issue - AttributeError: module '

basic question on loop & type casting / list/str/array

2022-03-16 Thread Kiran Kumar
Hi. Pls check on below poython 3.9.x code & suggest how can i keep the string intactst in 2nd loop... ? these are aws ec2 ids >>> INSTANCE_ID = ['i-0dccf1ede229ce1','i-0285506fee62051'] >>> for i in INSTANCE_ID: ... print (i) ... i-0dccf1ede229ce1 i-0285506fee62051 >>> >>> >>> >>> for i in IN

Re: Parse a Wireshark pcap file

2016-12-27 Thread 1991manish . kumar
I have a pcap file, I want to parse that file & fetch some information like Timestamp, Packet Size, Source/Dest IP Address, Source/Dest Port, Source/ Dest MAC address. I am trying this in Django. other that Source/ Dest Port details, I am able to fetch everything. Please tell me how I can get

serial communication error for loop

2018-03-13 Thread Dhileepan Kumar
#!/usr/bin/python import serial import MySQLdb while True: #establish connection to MySQL. You'll have to change this for your database. dbConn = MySQLdb.connect("localhost","root","1234","ifet") or die ("could not connect to database") #open a cursor to the database cu

Re: Problem finding my folder via terminal

2018-06-06 Thread Shakti Kumar
Hi Berger, Do you have any space in the absolute path for mymodules? Spaces avoid getting the correct path as I had seen in one of my virtual environments. Shakti. On Wed, Jun 6, 2018, 9:53 PM T Berger wrote: > I’m learning Python on my own and have been stuck for two days trying to > get modul

socket: Too many open files

2018-10-13 Thread Shakti Kumar
Hello, I’m running a script which basically does a traceroute to the list of hosts provided, and then pulls up some info by logging in to gateways in the path. I am running this script for a list of almost 40k hosts in our data centers. Also, I am using commands module to get the traceroute output.

Fwd: socket: Too many open files

2018-10-13 Thread Shakti Kumar
>Hello, >I’m running a script which basically does a traceroute to the list of hosts provided, and then pulls up some info by logging in to gateways in the path. >I am running this script for a list of almost 40k hosts in our data centers. >Also, I am using commands module to get the traceroute out

Fwd: socket: Too many open files

2018-10-14 Thread Shakti Kumar
>On 13Oct2018 14:10, Shakti Kumar wrote: >>I’m running a script which basically does a traceroute to the list of >>hosts >>provided, and then pulls up some info by logging in to gateways in the path. >>I am running this script for a list of almost 40k hosts in our data

Re: Issue in parsing the strings in python code

2018-11-12 Thread Shakti Kumar
On Mon, 12 Nov 2018 at 14:02, srinivasan wrote: > Dear Python Experts team, > > This question might be very simple for you, As am newbie to python, could > you please how to parse the below strings > > 1. Could you please do the needful in guiding me, that how can I extract > the strings under th

Tkinter based GUI for PIP : Needed Feedback

2016-07-03 Thread Upendra Kumar
Hello everyone, We have made a preliminary version of GUI for PIP. This project is a part of GSoC 2016. This project is intended to provide a GUI version for "pip". ( target audience for the project : beginners in Python ). The project idea is discussed on these issues : 1. Issue #23551 : IDLE

Python Byte Code Hacking

2016-07-13 Thread Vijay Kumar
Hi Everyone, I wrote an article on Python byte code hacking. The article is available from http://www.bravegnu.org/blog/python-byte-code-hacks.html The article uses an incremental approach for explaining Python's code objects and how to modify them. Unfortunately, I am stuck with Python 2, beca

Re: Reading 'scientific' csv using Pandas?

2018-11-18 Thread Shakti Kumar
On Sun, 18 Nov 2018 at 18:18, Martin Schöön wrote: > > I am in this project where I try to get an overview of a bunch of > computer generated (finite element program) data. I have it stored in a > number of csv files. > > Reading the data into spreadsheet programs works fine but is very labour > i

Re: Reading 'scientific' csv using Pandas?

2018-11-19 Thread Shakti Kumar
Hi Martin, On Sun, 18 Nov 2018 at 23:59, Martin Schöön wrote: > > Den 2018-11-18 skrev Shakti Kumar : > > On Sun, 18 Nov 2018 at 18:18, Martin Schöön wrote: > >> > >> Now I hit a bump in the road when some of the data is not in plain > >> decimal notatio

Re: clusters of numbers

2018-12-15 Thread Shakti Kumar
On Sun, 16 Dec 2018 at 09:49, Vincent Davis wrote: > > Why not start with a histogram. > > Vincent > > On Sat, Dec 15, 2018 at 6:46 PM Marc Lucke wrote: > > > hey guys, > > > > I have a hobby project that sorts my email automatically for me & I want > > to improve it. There's data science and st

error

2018-12-16 Thread Prasanna kumar
Sir/mam, Fatal error in launcher: Unable to create process using this is error which I am not getting clear with it . so, I request you to help me it. -- https://mail.python.org/mailman/listinfo/python-list

mocking for get method in requests

2019-01-18 Thread Shakti Kumar
Hello people, I noticed something weird (weird as per my current knowledge, though I know its subjective) today. sample.py file -- import requests def random_testing(): out = requests.get('www.cisco.com') a = out.json() return a testing.py file -- @patch(*’*sample.requests') def

Re: Unable to install Python 3

2019-01-27 Thread Shakti Kumar
On Sun, 27 Jan 2019 at 18:44, Hemant Mehta wrote: > > Dear Team, > > I am unable to install python 3 in my computer. > Kindly find my system configuration details & error details occured at the time of installation. Unable to find the system configuration details & error details. > *Please do the

Re: [RELEASE] Python 2.7.16 release candidate 1

2019-02-16 Thread Shakti Kumar
On Sun, 17 Feb 2019 at 6:44 AM Benjamin Peterson wrote: > I'm pleased to announce the immediate availability of Python 2.7.16 > release candidate 1. This is a prerelease for yet another bug fix release > in the Python 2.7.x series. It includes over 100 fixes over Python 2.7.15. > See the changelo

Regarding 3D buttons in PyQT5

2019-03-28 Thread Vaibhav Kumar
Hi, I want to know that how can i create 3D buttons in PyQT5 window or an animated button. Regards Vaibhav -- https://mail.python.org/mailman/listinfo/python-list

Kill stuck threads

2019-04-09 Thread Shakti Kumar
Hello Team, Over due course I've felt the need of a way to kill a thread gracefully, by relieving all occupied resources. A bit of search online shows me that killing a thread depends very much on the underlying platform support, and is something not advised, however I face this problem when one o

Re: Stack Overflow Developer Survey

2019-04-13 Thread Shakti Kumar
It is certainly worth the mention! Kudos to all the core devs and the volunteers here for their dedication making Python the Most Wanted and Second Most Loved programming language this time ! Thanks, Shakti On Sun, 14 Apr 2019 at 12:14, Frank Millman wrote: > > Hi all > > Stack Overflow have ju

Re:

2019-04-19 Thread Shakti Kumar
On Fri, 19 Apr 2019 at 9:33 PM Tamara Berger wrote: > Hi Python-List, > > What code can I use to break out of a program completely, and not just out > of a loop? import sys sys.exit() Should do your work. > I wrote code with 3 conditions for saving for a downpayment. The > first addresses ca

Re:

2019-04-19 Thread Shakti Kumar
the downpayment in 36 months.') > break > import sys > sys.exit() > Include the sys.exit() before the break. You cannot have two branching statements in the same block. So it'd be, if ((monthly_salary*t)*compound_int) Thanks, > Tamara > > > On F

Django Potential Fork Bomb

2019-05-08 Thread Shakti Kumar
consecutively I ran out of resources on my dev server. How can I prevent this from happening? And I am not able to understand why django should spawn (if it indeed is spawning) incrementing processes with each query from the GUI. Looking out for some suggestions/help. Thanks, Shakti -- Shakti Kumar, Grad

Re: Django Potential Fork Bomb

2019-05-09 Thread Shakti Kumar
On Thu, 9 May 2019 at 10:27, dieter wrote: > > Shakti Kumar writes: > > ... > > I suspect django spawned too many child processes, and consecutively I ran > > out of resources on my dev server. How can I prevent this from happening? > > And I am not able to understa

Re: Django Potential Fork Bomb

2019-05-09 Thread Shakti Kumar
project.com/en/dev/internals/mailing-lists/ > > FWIW, I'm not a Django user, but found this page with a simple Google > search for "Django mailing list”. Thanks a lot, will keep that in mind. -- Shakti Kumar, Grad Student, Dept. of Computer Science, University of Toronto -- https://mail.python.org/mailman/listinfo/python-list

Re: Implementing C++'s getch() in Python

2019-05-25 Thread Shakti Kumar
On Sat, 25 May 2019 at 4:43 PM wrote: > I'm working on Python 3.7 under Windows. I need a way to input characters > without echoing them on screen, something that getch() did effectively in > C++. try getpass module. Typically this would be, import getpass variable = getpass.getpass('your prom

Re: Implementing C++'s getch() in Python

2019-05-26 Thread Shakti Kumar
On Sun, 26 May 2019 at 20:23, wrote: > > I've run getpass() on IDLE, Spyder, PyCharm and Mu. All with negative results. > > As Random832 pointed out, these IDEs cannot handle the stdout/stdin with getpass You should use a normal terminal (command prompt) on your windows for running this program.

Re: Trouble Downloading Python and Numpy

2019-05-29 Thread Shakti Kumar
On Wed, 29 May 2019 at 9:29 PM Contreras, Brian J wrote: > Good Morning, > > I am a research student at the Georgia Institute of Technology. I have > made multiple attempts to download different versions of Python with Numpy > on my Microsoft Surface Book with no success. > Since you need numpy

Re: Trouble Downloading Python and Numpy

2019-05-29 Thread Shakti Kumar
On Wed, 29 May 2019 at 9:38 PM Shakti Kumar wrote: > > > On Wed, 29 May 2019 at 9:29 PM Contreras, Brian J > wrote: > >> Good Morning, >> >> I am a research student at the Georgia Institute of Technology. I have >> made multiple attempts to download differ

Python scripts

2019-08-05 Thread Arun Kumar
Dear sir In python application in scripts folder files are missing then how to get those files. -- https://mail.python.org/mailman/listinfo/python-list

Re: Coding style article with interesting section on white space

2005-01-29 Thread Rakesh Kumar
Thanx Nick -- http://mail.python.org/mailman/listinfo/python-list

pypix

2013-11-18 Thread Ajay Kumar
Hi Guys, i have created a site for Python Tutorials. here is the link  http://pypix.com/python/get-started-python-web-development/ . I would like to have your opinion like what tutorials would you love to see. Thanks-- https://mail.python.org/mailman/listinfo/python-list

About some problem

2014-01-02 Thread raj kumar
Hello, I am beginner to python and i am writing following code from pytesser import * and i am getting an error as follow Traceback (most recent call last): File "", line 1, in File "C:\Python33\lib\site-packages\pytesser.py", line 61 print text ^ SyntaxError: invalid synta

Reg : Creating a exe file from pyinstaller of python application

2014-01-05 Thread Prapulla Kumar
Hi, I'm creating GUI using python gtk, and which uses external library gtk , M2Crypto I want make executable file by using pyinstaller, Which is not including external library How to make external library include into executable file . Can you give any suggestion how to import external library in

Re : Python GTK GUI struck when process is going on.

2014-01-09 Thread Prapulla Kumar
nner until upload finish With Regards Prapulla Kumar R -- https://mail.python.org/mailman/listinfo/python-list

Python Simple program

2014-01-18 Thread indar kumar
Hello, I am a newbie. Can somebody help me write the code for following program? Write a program that takes student grades and prints out the GPA. The information is input, one student per line in the format:... The number of students is not known in advance. You should prompt the user for

Re: Python Simple program

2014-01-18 Thread indar kumar
On Saturday, January 18, 2014 11:00:47 AM UTC-7, indar kumar wrote: > Hello, I am a newbie. Can somebody help me write the code for following > program? > > > > > > Write a program that takes student grades and prints out the GPA. The > information is input,

Can post a code but afraid of plagiarism

2014-01-18 Thread indar kumar
Hi, I want to show a code for review but afraid of plagiarism issues. Kindly, suggest how can I post it for review here without masking it visible for public -- https://mail.python.org/mailman/listinfo/python-list

Re: Can post a code but afraid of plagiarism

2014-01-18 Thread indar kumar
@Roy Smith Can you help me privately because its an assignment and have to submit plagiarism free -- https://mail.python.org/mailman/listinfo/python-list

Help with simple code that has database defined

2014-01-18 Thread indar kumar
I have to save students information in a database that is keeping continuously track of the information. Format is as follows: Information: Note: if this name already exists there in database, just update the information of that(name) e.g course,grade and date. Otherwise, add it. What I thi

Re: Can post a code but afraid of plagiarism

2014-01-20 Thread indar kumar
Thanks all for help and positive comments. Actually, I tried to ask some questions but I was discouraged to do so saying that I was working on a project or some assignment. Truth be told I am stuck at one point and since I don't have experience with programming language, I have been working for

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
So my question is if I am giving multiple inputs(a new device say for example) in a loop and creating a database(dictionary) for each new devices for example. I want subsequent devices to save their data(values only not keys) to the database of each of the already existing devices. How can I do

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Pleae give example als

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public This is a gratui

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Description of each of t

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Any link related to such type

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public I need to implement this with

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Just one hint and I have made

Re: Can post a code but afraid of plagiarism

2014-01-22 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Thanks for kind help. I

Re: Can post a code but afraid of plagiarism

2014-01-23 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public I just need to print first ele

Re: Can post a code but afraid of plagiarism

2014-01-23 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Thank You I have found th

Re: Can post a code but afraid of plagiarism

2014-01-23 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public hosts={'PC2':[&#

Re: Can post a code but afraid of plagiarism

2014-01-23 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Just the value e.g.01:01:01:

Re: Can post a code but afraid of plagiarism

2014-01-23 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Can I do the following to

Re: Can post a code but afraid of plagiarism

2014-01-23 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Thanks config_database={'

Re: Can post a code but afraid of plagiarism

2014-01-23 Thread indar kumar
On Saturday, January 18, 2014 3:21:42 PM UTC-7, indar kumar wrote: > Hi, > > > > I want to show a code for review but afraid of plagiarism issues. Kindly, > suggest how can I post it for review here without masking it visible for > public Yes now I want to search fo

Not intalling

2016-02-16 Thread SoNu KuMaR
I'm trying to install the latest version of python . First time it didn't install successfully ,i tried again now it have installed but not working. I'm sending screenshot and log file. I tried reinstallation again and again but result is same. -- https://mail.python.org/mailman/listinfo/python-li

Re: Looking for download link for ArcPY

2014-12-03 Thread sravan kumar
Can I find where Arcpy.exe to download in order to use for my course work Thank you. -- https://mail.python.org/mailman/listinfo/python-list

Verifying Variable value

2013-08-14 Thread chandan kumar
Hi , Is there a way to validate variable values while debugging any python code.Run below example  in debugging mode and i would like to know the value of c (I know print is an option) with any other option other than printing. In C# or some other tools we can verify each statement and values. I

Want to learn Python

2013-08-15 Thread prem kumar
Hi All, Presently Iam working with QTP(VBscript)..Now planning to learn PYTHON..Could you please suggest me like is ti good to learn what is the present condition for Python in IT Companies.. Iam not thinking abt only testing purpose even Iam interested to shift to development side on python..

Basic Python Query

2013-08-20 Thread chandan kumar
Hi all, Please see the below code. class Test(threading.Thread):           def StartThread(self):        Lock = threading.Lock()         self.start()    class Test1(threading.Thread):     def __init__(self):         threading.Thread.__init__ ( self )         self.Lock = threading.Lock() self.st

Re: Basic Python Query

2013-08-22 Thread chandan kumar
Hi all, Sorry for not explaining question properly.Here Its not about threading and dont worry about any indentations.Please see below example class Call_Constructor(): def __init__(self): print "In __init__ " class Test_Constructor(Call_Constructor): def method(self):

Python Global variable

2013-08-26 Thread chandan kumar
Hi all, Please see the below code,in which i'm verifying the global value in python. CHK=10 def test1(): print "Value of CHK in test1",CHK def test2(): CHK=40 print "Value of CHK in test2",CHK test1() def test3(): global CHK test2() test3() When i ran above code ,I

Python Debugger tool

2013-09-05 Thread chandan kumar
Hi Is any one aware of free ipython debugger tool.How good is this tool for a beginner to use like ,placing breakpoints,checking variables ,call stack (function flow) etc.I don't like to use python PDB . I have heard about wingware ,pycharm which are licensed versions.Used wingware trail ve

global variable across modules

2013-09-11 Thread chandan kumar
Hi , I'm trying to understand using global variable across different modules.Here is what i have tried so far without much success.Please ignore any indentation issue  in the below code. Filename:Test1.py Debug_Value = " " import Test2 def globalValmethod():     global Debug_Value     Debug

Accessing class attribute

2013-09-11 Thread chandan kumar
Hi , I'm new to python ,please correct me if there is any thing wrong with the way accessing class attributes. Please see the below code .I have inherited confid in ExpectId class, changed self.print_msg to Hello. Now inherited confid in TestprintmsgID class.Now I wanted to print self.print

  1   2   3   4   >