Click here to Skip to main content
Page 1 of 30
Page Size: 10 · 25 · 50


Tag filtered by:  Python [x]
Question 10 Jul 2014   license: CPOL
I've been assigned a project to generate test paths from different UML diagrams. I've solved the program for some extent that is I have exported xmi file from the uml software and had parsed the xmi tags in the file using python code now is it possible to use the parsing python program to...
Question 9 Jul 2014   license: CPOL
Is there is any possibility to automate login into virtual desktop through any of programming languages ( either through sockets or others ) need to automate login in to vdi and access application of it in local
Question 8 Jul 2014   license: CPOL
I'm building an application in which a check box is connected to a button and the button only gets activated when the check box is marked. I have the button and check box defined in initUI function and i have created a button hide function which ive connected to my check box, but i keep getting...
News 8 Jul 2014  
Python is now the most popular introductory language at American colleges, a recent Association for Computing Machinery study reports.
Answer 7 Jul 2014   license: CPOL
Why, why those VBA scripts? If you need to manipulate Excepl workbooks with Python, use Python. There is a whole site dedicated to controlling Excel documents with Python: http://www.python-excel.org[^].—SA
Question 7 Jul 2014   license: CPOL
I have a VBA code for manipulating the sheets of the excel workbook. I want to run this code from Python.How can I do this? Are there any good libraries in Python for VBA code. Please can anyone provide me some good examples to start with.Thanks!
Question 7 Jul 2014   license: CPOL
Hello everyone, I recently started working with Python django (a compulsion by my company). I have been trying to get it working but it keeps on giving me errors. Can anyone please help me with this? I am getting "ImportError at / No module named 'models'"I am following this...
Answer 5 Jul 2014   license: CPOL
The loop does work; it just has no effect, because you assign the value to the same variable several times. Each time you assign, the previous value is lost, so you see only the effect of the last assignment. All previous assignments have no side effect (except the request for input data,...
Question 5 Jul 2014   license: CPOL
Wondering why I am not getting output into a file with this code. The loop is not working it is only catching the last entry. Whatever the last score I put in is what goes in the file. I have tried everything that I can think of or find online. The program jumps to main() back to def main():...
Question 4 Jul 2014   license: CPOL
I'm trying to use Multiple TOR exit nodes with Selenium, and I'm trying to create a function that changes the multiple identities. However, it doesn't, and returns no error. I believe there's a problem with my code that I can't quite figure out. Perhaps the controller is failing?(I have...
Answer 3 Jul 2014   license: CPOL
Hi,I never tried that.Here is way to do the same : http://stackoverflow.com/questions/11779143/run-a-python-script-from-c-sharp[^]Just before running it replace the string.
Question 3 Jul 2014   license: CPOL
Hi,I wanted to know how do i pass values from c# window forms into a python script. I am trying to use replace the values in the python script from my c# window forms and then run the python script with the newly replaced values. Any idea how?
Question 3 Jul 2014   license: CPOL
Hello, I want to write a program that will capture packets encrypt them and let them go on their way. Let's say that I start Firefox, and I try to connect to codeproject. Basicly I want to capture the packets that firefox has generate, encrypt them and let them go to...
Tip/Trick 2 Jul 2014   license: CPOL
Computation of the Faulhaber polynomials coefficients
Question 1 Jul 2014   license: CPOL
Hi everyone, As I understand there are two kinds of binary trees: 1. Binary search trees (BST) and 2. Generic Binary treesI am looking for implementing a generic binary tree in python. I am mainly looking at designing and implementing the insertion operation in the generic...
Article 26 Jun 2014   license: Public Domain
How to determine the parameters of a probability distribution given two percentile constraints
Article 26 Jun 2014   license: Public Domain
Code for computing normal probabilities and a discussion of what does and does work in IronPython
Article 26 Jun 2014   license: Public Domain
How to get started using the SciPy library for scientific computing in Python.
Question 23 Jun 2014   license: CPOL
Hey guys, I am trying to solve one of the problems in the authentication section of pentesterlabs but I just can't seem to get it right. In essence, I am trying to use the urllib2 library in python for basic HTTP authentication, however despite providing the correct username and password I keep...
Answer 21 Jun 2014   license: CPOL
Try this:str = "Password";str = str[:5] + "#" * len(str[5:])print str;
Question 21 Jun 2014   license: CPOL
Here is my code so far;Username = input ("Please enter your Username: ")Password = input ("Please enter your Password: ")print ("")print ("Your selected username: ", Username)print ("Your selected password: ", Password[0:5]+) (This is in bold as I just had to show...
Question 20 Jun 2014   license: CPOL
Trainimport cv2import numpy as npfrom datetime import datetimeimport osfrom PIL import Imageimport hashlib, os, math, timeimport Image#from PIL import Imageimport ImageEnhancefrom pytesser import *from urllib import urlretrieveimport mathimport randomimport...
Answer 20 Jun 2014   license: CPOL
Are you sure each directory is populated? If they are not, you can fix your code by checking that img exists/ is not none and breaking the loop if it is none.Quote: img = cv2.imread(img) im3 = img.copy()Becomes img = cv2.imread(img) if img is None: break...
Question 19 Jun 2014   license: CPOL
HiI cannot work out why my code does not work. How do I make my program to display what has been saved to a file? Codeimport pickleclass People(): def __init__(self, name, surname, age, mobile_no, home_no): self.name = name self.surname = surname ...
Answer 16 Jun 2014   license: CPOL
def bin_search(lis,first,end): mid = (first+end)//2 if (end - first)lis[first]: print(lis[first]) else: print(lis[end]) elif(lis[mid]>lis[mid+1]): bin_search(lis,mid,end) else: bin_search(lis,first,mid)def minima(a): b =...

Page 1 of 30
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web02 | 2.8.140721.1 | Last Updated 24 Jul 2014
Copyright © CodeProject, 1999-2014
All Rights Reserved. Terms of Service
Layout: fixed | fluid