Tagged Questions
-2
votes
2answers
58 views
Database of Python codes [closed]
I would like to know if a database of Python codes exists somewhere on the Internet, like File Exchange for MATLAB. I was searching for it in vain.
Thanks!
0
votes
2answers
22 views
need to extract data from website and push to a program
So i've been looking around trying to figure out how i could extract some specific data such as just the text, and push that data into a program that organizes the data.
So if you took homedepot.com ...
0
votes
1answer
47 views
Meaning of a symbol character in python
I am tring to figure what is the meaning of this character: <I in python.
As I saw in many python script who use sockets, they use this character as a "pack" and "unpack"
argument, so an ...
0
votes
2answers
36 views
Using PHP to call python script [duplicate]
I have the following PHP code that I want to use to call a python script (ring.py)
<?php echo '<p>Hello World</p>';
$output = exec('python ring.py');
?>
The program ...
0
votes
0answers
39 views
Login to google using Python
I have been trying for some time now to login to my google account and download a file from it without using any external libraries.
I am specifically talking about Google Finance ...
0
votes
1answer
27 views
Python Import Hooks and __main__
PEP 302 defines a way for user code to hook into the import process and intercept imports.
However, this only works for imports that occur after some code has run to register the import hook.
...
0
votes
0answers
6 views
record action rhinoscript? similar to photoshop
I'm learning some python script at the moment, very new to it. I am having some trouble with the overall syntax I have read the Python for rhino 5 manual but it seems to take me a lot of trial and ...
1
vote
0answers
36 views
Thermostat control issue
I've got the following Python code for controlling a heater. I'm not a coder: I pinched the original code from Adafruit's DS18B20 tutorial and added to it another piece of code I found on the 'net to ...
0
votes
3answers
80 views
Python use last x lines [duplicate]
I've got script to read data from Arduino and save it as TXT file. I also have script to separate data and to add date/time, than save in new TXT file.
I've got also few Cron scripts like:
Read ...
0
votes
2answers
15 views
Python spynner login page issue
I am trying to create basic script to pass username/password and hit enter to just login on web site but i am having problem in click steps its successfully filling out username and password but not ...
0
votes
1answer
36 views
Python reading from Arduino script still not working
iIve asked you few weeks ago about solution on my python's scripy problem.
I just started my project again, and still got a problem.
My Arduino is working fine, command sudo screen /dev/ttyACM0 is ...
-3
votes
0answers
24 views
Hello,does anybody have a Python script that uploads the files in a folder to https://wigle.net/? [closed]
does anybody have a script that uploads the files in a folder to https://wigle.net/?
It needs to log in with username and password.
I have searched the net for a suitable snippet of code to use ...
1
vote
3answers
65 views
Interpreting binary files as ASCII
I have a binary file (which I've created in C) and I would like to have a look inside the file. Obviously, I won't be able to "see" anything useful as it's in binary. However I do know that contains ...
1
vote
1answer
34 views
Working with a sql script in a Flask application
I have created a structure of a basic Flask application and I need guidance with executing a sql script. My folder structure is this:
-simpleblog (name of app)
flask (contains the virtual ...
1
vote
0answers
39 views
Executing python script from java passing arguments
I Asked some days ago about executing python script from java. It solved my problem partially. But now, I am not able to pass any parameter and make that script to do anything.
My script has to ...
0
votes
1answer
25 views
python mechanize issue with java application
We have Java application running on tomcat server and i wrote a simple script to login but i won't allow me to login it is just hanging on br.open step.
#!/usr/bin/python
import mechanize
...
0
votes
1answer
18 views
Transfer session from script to firefox
I'm trying to solve the following problem:
I have a python script that opens a webpage, gets a jsessionid, then posts username and password and the jsessionid and receives back a new jsessionid along ...
0
votes
2answers
58 views
Running a script from another python
I just want to have some ideas to know how to do that...
I have a python script that parses log files, the log name I give it as an argument so that when i want to run the script it's like that.. ( ...
1
vote
1answer
24 views
Standard way to treat a zipfile as a site directory?
I'm trying to package up a script including its dependencies into an executable zip file, following basically the following steps:
$ mkdir build
$ pip install --target build -r requirements.txt
$ cp ...
1
vote
2answers
46 views
Does file content fully exist in library files
I have just completed the refactoring of a long piece of code.
My refactoring included breaking up the source code into many functions in many files at many folders.
Now that I'm done, I want to ...
0
votes
1answer
36 views
Running python script in Tkinter
I have a python script which captures network traffic. and i have a GUI created using Tkinter i just want to know how can i execute my sniffer code through tkinter and output the result to the text ...
0
votes
2answers
32 views
Python sketch not working as intended (reading data from CSV)
I am currently trying to write a program which runs through a CSV file of academic papers. The CSV is tab deliminated and is in four columns (Author, Date, Title, Journal)
The idea is to ask the user ...
0
votes
2answers
25 views
Troubleshooting 404 received by python script
I have a python script that pings 12 pages on someExampleSite.com every 3 minutes. It's been working for a couple months but today I started receiving 404 errors for 6 of the pages every time it runs. ...
0
votes
1answer
30 views
Run Python Script Without Dependencies Installed
I am creating a Python application that uses multiple third party libraries. Since the libraries are installed on my computer, the script runs fine. However, how can I alter my script so that it will ...
1
vote
1answer
38 views
How to print the most recent last call on linux without exiting the program
When I execute a python script on linux and interrupt the process, it gives me the " most recent call last":
Traceback (most recent call last):
File "clustermptest.py", line 38, in <module>
...
0
votes
4answers
47 views
Prevent error from halting a Python script
Using Python 2.6, the following error occurs when I run the far below script:
Traceback (most recent call last):
File "g.py", line 7, in <module>
results = Geocoder.geocode(row[0])
...
0
votes
1answer
47 views
Calculate Eucleudian distance between 20pairs of Amio acids using thieir Physicochemical properties scores in Python and the output is a Matrix
Can someone help me?
I have 20 amino-acids (AAs) and 7 physochemichal properties (RADA880102; FAUJ880103; ZIMJ680104; GRAR740102;CRAJ730103; BURA740101; CHAM820102)
The input is a tab delimited ...
0
votes
2answers
35 views
Run .exe in python with all files in directory
I am working on an auto restart script for an exe but there are config files in the directory I need to run with the exe. If I start the exe from the actual file folder it works fine but when I use ...
0
votes
1answer
56 views
Python auto restart process srcipt [closed]
I grabbed this script from a site and it works great besides I need it to start/restart a .bat instead of a .exe process. Is there a way to modify the "subprocess.Popen" line to start a .bat instead ...
0
votes
1answer
48 views
Access web page and download *.ext files, where ext can be set python script
I have a python script that downloads a specific file that I specify via URL, and i'm wondering if there is a nice way to access a page, and grab every file that ends in a certain extension.
Example:
...
1
vote
1answer
50 views
Delete duplicates from a list with many Elements [duplicate]
I have a lists with several elements and i'd like to remove the duplicated, here's an example of a list:
list = [{'status': 'OK', 'mid': '6639'}, {'status': 'OK', 'mid': '6639'}, {'status': 'OK', ...
1
vote
0answers
21 views
Running script on boot [migrated]
I'm trying to run a Python script on startup on a Raspberry Pi. I know that this can be accomplished by adding to various files. I plan to add to bashrc (worked previously, on similar attempts), but I ...
0
votes
1answer
50 views
Regular expression to extract words before a slash
I'd like to extract the two words FIRST and SECOND from the phrase below, i've tried with this regex, to get the word before the slash but it doesn't work : / btw it's on python:
import re
...
0
votes
1answer
36 views
regex find what's after slash without showing the slash
I have a script that split the informations in a line, i've succeeded to split it and extract the informations i need but i have the slash that shows up :/ i'de like to get only what's after it here's ...
0
votes
1answer
62 views
Python “unsupported operand type (s) for”
I am writing my first program in Python and I was getting an error:
"TypeError: unsupported operand type (s) for /: 'str' and 'str'
This is what I'm doing:
import sys
import math
import ...
0
votes
1answer
60 views
Read only lines that contain certain specific string and apply regex on them
Here's my code: I have a script that reads a file but in my file not all the lines are similar and I'd like to extract informations only from lines that have I DOC O:.
I've tried with an if condition ...
0
votes
2answers
81 views
Pass complex object to a python script in command line
I am beginner in Python programing, I want to pass a complex object (Python dictionary or class object) as an argument to a python script using command line (cmd). I see that sys.argv gets only string ...
0
votes
1answer
30 views
Blender open a hyperlink by clicking on object
Is it possible to dynamically open a web page by clicking on an object?
If so, how can this be accomplished?
What about linking to the underlying file system?
I'm using custom attributes to save the ...
1
vote
2answers
32 views
My script returns an error when the test isn't corresponding to the Regex: 'NoneType' object has no attribute 'group'
My script down here is supposed to return a result in this format
[ {'heure':xxxx,'mid': xxxx,'type message': "e.g SMS.Message ", "Origine":xxx,"Destination":xxxx}]
Well it works but without ...
2
votes
2answers
45 views
Get time that program ran (Python)
Im writing a Python script and im going to make it say last updated: and then the time it lst updated but im not sure how
here is and example code
from PIL import ImageDraw
import ctypes, time
...
-2
votes
1answer
32 views
Regex Python Extract Informations [closed]
I wonder if there's a way in python to be able to extract the informations from a line like the example below and put it in a
table:
table = [ Time: 01:09:25.258, O:Localhost, R:192.168.1.1 id:62 ] ...
0
votes
2answers
67 views
HTML Source to Notepad File
how can i use python to save a source code i got from a site and then save it as a .html or .txt file
for a project im working on
im using something like this to get the code
from PAM30 import PAMIE
...
0
votes
3answers
61 views
Copy the nth column of all the files in a directory into a single file
I've a directory containing many .csv files. How can I extract the nth column of every file into a new file column-wise?
For example:
File A:
111,222,333
111,222,333
File B:
AAA,BBB,CCC
...
0
votes
1answer
41 views
Using Machanize to access password protected site
Im trying to get into a site using machanize but when i run my script its still just giving me the source for the homepage and not for the actual site
here is the code
from mechanize import Browser
...
0
votes
0answers
60 views
Urllib Password and Username input
Im making a program that takes my grades and makes them my background but the site im getting my grade info from is password protected is there any way to use urllib to get into my account and the ...
0
votes
1answer
66 views
Python Script Image Save Directory/Filename Error
Im trying to make this image save but Im getting an error message its saying there is no such file or directory even tough i have the picture saved
import PIL
from PIL import ImageFont
from PIL ...
0
votes
2answers
29 views
trying to delay part of my program
Im trying to take a snapshot of the webpage i open but i need to delay the second part of the code so that the program has time to open the page
Here is the code
import os
import sys
import time
...
1
vote
2answers
28 views
python snapshot program error
Im running this program to take a snapshot of my screen and save it but getting an error message
import os
import sys
import time
import Image
import ImageGrab
SaveDirectory=r'C:\Documents and ...
0
votes
0answers
35 views
Python: How to call cgi script from another cgi script with variables (POST)
What I would like to do is to make 3 cgi scripts. The first prints a form. Then this form POSTS the data to the next which does the data checking making sure it is all valid. NOW here is the hard ...
2
votes
2answers
1k views
how to make python script self-executable [duplicate]
Possible Duplicate:
Calling a python script from command line without typing “python” first
I've tried
bash$ chmod +x script.py
doesn't work. I also remember to put
...





