Re: text displays on screen only when I click to exit the program

2021-04-30 Thread Mirko via Python-list
Am 30.04.2021 um 20:55 schrieb Quentin Bock: > code with comments for context: > > #Create a text based game where the user must find 3 items before > completing a level > #imports and variables for game > import pygame > from pygame import mixer > running = True > #initializes pygame > pygame.ini

text displays on screen only when I click to exit the program

2021-04-30 Thread Quentin Bock
code with comments for context: #Create a text based game where the user must find 3 items before completing a level #imports and variables for game import pygame from pygame import mixer running = True #initializes pygame pygame.init() #creates the pygame window screen = pygame.display.set_mode(

Re: ModuleNotFoundError with click module

2019-12-02 Thread Tim Johnson
On 12/1/19 11:46 PM, Peter Otten wrote: Tim Johnson wrote: OK. Now I have /usr/local/lib/python3.7/site-packages/Click-7.0.dist-info/ which holds the following files: INSTALLER LICENSE.txt METADATA RECORD top_level.txt WHEEL I haven't a clue as to how to proceed! Never seen

Re: ModuleNotFoundError with click module

2019-12-02 Thread Peter Otten
Tim Johnson wrote: >> OK. Now I have >> >> /usr/local/lib/python3.7/site-packages/Click-7.0.dist-info/ >> >> which holds the following files: >> >> INSTALLER LICENSE.txt METADATA RECORD top_level.txt WHEEL >> >> I haven't a clue as t

Re: ModuleNotFoundError with click module

2019-12-01 Thread Tim Johnson
n3.7/site-packages/flask/cli.py", line 25, in import click ModuleNotFoundError: No module named 'click' If I invoke python3 (/usr/local/bin/python3), version 3.7.2 and invoke   >>> import click click is imported successfully. In this invocation, sys.path is: ['', '

Re: ModuleNotFoundError with click module

2019-12-01 Thread Tim Johnson
File "/usr/local/lib/python3.7/site-packages/flask/__init__.py", line 21, in from .app import Flask File "/usr/local/lib/python3.7/site-packages/flask/app.py", line 34, in from . import cli File "/usr/local/lib/python3.7/site-packages/flask/cli.py", line 25, in

Re: ModuleNotFoundError with click module

2019-12-01 Thread Tim Johnson
: Traceback (most recent call last): snipped ... File "/usr/local/lib/python3.7/site-packages/flask/cli.py", line 25, in import click ModuleNotFoundError: No module named 'click' If I invoke python3 (/usr/local/bin/python3), version 3.7.2 and invoke >>> i

Re: ModuleNotFoundError with click module

2019-12-01 Thread Peter Otten
session, url_for > File "/usr/local/lib/python3.7/site-packages/flask/__init__.py", line > 21, in > from .app import Flask > File "/usr/local/lib/python3.7/site-packages/flask/app.py", line 34, > in > from . import cli > File "/usr/local/lib/python3.7/si

ModuleNotFoundError with click module

2019-11-30 Thread Tim Johnson
_init__.py", line 21, in     from .app import Flask   File "/usr/local/lib/python3.7/site-packages/flask/app.py", line 34, in     from . import cli File "/usr/local/lib/python3.7/site-packages/flask/cli.py", line 25, in import click ModuleNotFoundError: No module n

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2019-05-31 Thread Chris Angelico
On Sat, Jun 1, 2019 at 5:11 AM wrote: > > NOT WORKING IN MINE PLZ HELP > > > > from tkinter import * > g=Tk() > g.geometry("{0}x{1}+0+0".format(g.winfo_screenwidth(), > g.winfo_screenheight())) > g.title("Check") > g.configure(background='powder blue') > > > def clear_search(event): > e1.dele

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2019-05-31 Thread Rhodri James
On 31/05/2019 20:08, sakshamrahej...@gmail.com wrote: NOT WORKING IN MINE PLZ HELP from tkinter import * g=Tk() ^^ g.geometry("{0}x{1}+0+0".format(g.winfo_screenwidth(), g.winfo_screenheight())) g.title("Check") g.configure(background='powder blue') def clear_search(event): e1.del

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2019-05-31 Thread sakshamraheja11
NOT WORKING IN MINE PLZ HELP from tkinter import * g=Tk() g.geometry("{0}x{1}+0+0".format(g.winfo_screenwidth(), g.winfo_screenheight())) g.title("Check") g.configure(background='powder blue') def clear_search(event): e1.delete(0, tk.END) e1=Entry(g) e1.insert(0,'username') e1.pack() e1

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2019-05-31 Thread sakshamraheja11
Not happening in mine -- https://mail.python.org/mailman/listinfo/python-list

Re: mouse click automation

2019-01-01 Thread Larry Martell
gt; mouse = Controller() > > chromedir= 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s' > > webbrowser.get(chromedir).open("https://lnkd.in/fT4AKq8";) > > time.sleep(30) # to let the link load > > mouse.position = (43, 483) # ev

Re: mouse click automation

2019-01-01 Thread Brian Oney via Python-list
I am unfamiliar with pynput. I have had good experience with pyautogui. As your script isn't yet advanced, you may consider it. https://pyautogui.readthedocs.io/en/latest/introduction.html -- https://mail.python.org/mailman/listinfo/python-list

mouse click automation

2019-01-01 Thread Siddha 2305
pen("https://lnkd.in/fT4AKq8";) time.sleep(30) # to let the link load mouse.position = (43, 483) # everytime I tried to check the coordinates of the pace I wanted to do a left click, it was different. mouse.click(Button.left, 1) Thank you in advance. -- https://mail.python.org/mai

python3.7 - how to open a new thread and close the old each click on a button?

2018-09-15 Thread alon . najman
hii all, python3.7 - how to open a new thread and close the old each click on a button? here is my code: # -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'AlonStockMarket.ui' # # Created by: PyQt5 UI code generator 5.11.2 # # WA

Re: Python-Tkinter issue. Multiple overlaping event routines called by single click

2018-08-11 Thread Steven D'Aprano
the underlining main window, just by chance >> there is another button exactly under the mouse click in the TopLevel >> dialog window. Its corresponding event is then triggered. >> >> How can I keep the main window button that just happens to be in the >> wrong place fr

Re: Python-Tkinter issue. Multiple overlaping event routines called by single click

2018-08-11 Thread Steven D'Aprano
other button exactly under the mouse click in the TopLevel > dialog window. Its corresponding event is then triggered. Sounds to me that the user is clicking twice, once in the dialog, and then a second time just as it disappears and the main window takes focus. Possibly they are trying to do

Re: Python-Tkinter issue. Multiple overlaping event routines called by single click

2018-08-11 Thread MRAB
under the mouse click in the TopLevel dialog window. Its corresponding event is then triggered. How can I keep the main window button that just happens to be in the wrong place from being triggered? The handler should return the string "break" to prevent the event from propagating furthe

Re: Python-Tkinter issue. Multiple overlaping event routines called by single click

2018-08-11 Thread Peter Otten
wfgazd...@gmail.com wrote: > I have a main window open. Then I open a tk.TopLevel dialog window giving > the user multiple choices. He selects one, the corresponding event is > executed. Then in the underlining main window, just by chance there is > another button exactly under the

Python-Tkinter issue. Multiple overlaping event routines called by single click

2018-08-11 Thread wfgazdzik
I have a main window open. Then I open a tk.TopLevel dialog window giving the user multiple choices. He selects one, the corresponding event is executed. Then in the underlining main window, just by chance there is another button exactly under the mouse click in the TopLevel dialog window

Click bait versus “rational and unbiased demeanor” (was: Are the critiques in "All the things I hate about Python" valid?)

2018-02-16 Thread Ben Finney
boB Stepp writes: > Apparently he chose his article title as "click bait". Apparently he > does not really hate Python (So he says.). Those may well be true. What I find implausible is his expressed desire: Ok, so “hate” is a strong word, but hopefully this click-baits

Re: Please tell me how to execute python file in Ubuntu by double click

2017-12-09 Thread Chris Angelico
On Sun, Dec 10, 2017 at 12:58 AM, Marko Rauhamaa wrote: > alister : > >> On Wed, 06 Dec 2017 10:35:58 +1200, Steve D'Aprano wrote: >>> Then how does my Linux box know that when I double-click on a text >>> file, it launches kwrite rather than (say) the Gimp o

Re: Please tell me how to execute python file in Ubuntu by double click

2017-12-09 Thread Marko Rauhamaa
alister : > On Wed, 06 Dec 2017 10:35:58 +1200, Steve D'Aprano wrote: >> Then how does my Linux box know that when I double-click on a text >> file, it launches kwrite rather than (say) the Gimp or LibreOffice? >> >> When I right-click on a mp4 video, I get a m

Re: Please tell me how to execute python file in Ubuntu by double click

2017-12-09 Thread alister via Python-list
... >> >> Linux doesnâ Öt do â £OS file associationsâ Ø. > > > Then how does my Linux box know that when I double-click on a text file, > it launches kwrite rather than (say) the Gimp or LibreOffice? > > When I right-click on a mp4 video, I get a menu that includes a

Re: Please tell me how to execute python file in Ubuntu by double click

2017-12-08 Thread Steve D'Aprano
box know that when I double-click on a text file, it launches kwrite rather than (say) the Gimp or LibreOffice? When I right-click on a mp4 video, I get a menu that includes a Open With command that shows (amount others) Kaffeine, mplayer and VLC. If you mean the Linux *kernel* doesn't do f

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2017-11-11 Thread tonysmart . ct
Thanks it was helpful -- https://mail.python.org/mailman/listinfo/python-list

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2017-01-25 Thread Christian Gollwitzer
Am 25.01.17 um 10:18 schrieb Peter Otten: hmmeeranrizv...@gmail.com wrote: Hello Guys, Here i am creating a entry box with some text,i need to hide the text when i click on it. search.bind("", clear_search) This is the correct answer for a mouse click. The typical use case (di

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2017-01-25 Thread hmmeeranrizvi18
On Wednesday, January 25, 2017 at 1:15:11 PM UTC+5:30, hmmeera...@gmail.com wrote: > Hello Guys, > Here i am creating a entry box with some text,i need to hide the text when i > click on it. > Here is my code > > from Tkinter import * > obj = Tk() > b = Entry(obj,width=

Re: Hide text in entry box when i click on it.(GUI using Tkinter in python)

2017-01-25 Thread Peter Otten
hmmeeranrizv...@gmail.com wrote: > Hello Guys, > Here i am creating a entry box with some text,i need to hide the text when > i click on it. Here is my code > > from Tkinter import * > obj = Tk() > b = Entry(obj,width=100) > b.insert(0,"Enter the value to search&q

Hide text in entry box when i click on it.(GUI using Tkinter in python)

2017-01-24 Thread hmmeeranrizvi18
Hello Guys, Here i am creating a entry box with some text,i need to hide the text when i click on it. Here is my code from Tkinter import * obj = Tk() b = Entry(obj,width=100) b.insert(0,"Enter the value to search") b.pack() mainloop() -- https://mail.python.org/mailman/listinfo/python-list

Re: ONE CLICK REST API

2016-04-05 Thread Roland Mueller via Python-list
for yourself: - http://blog.miguelgrinberg.com/post/designing-a-restful-api-with-python-and-flask BR, Roland 2016-04-04 9:09 GMT+03:00 David Shi via Python-list : > Eclipse has got one click app for creating REST services. > What is it equivalent in Python? > Regards. > David

ONE CLICK REST API

2016-04-03 Thread David Shi via Python-list
Eclipse has got one click app for creating REST services. What is it equivalent in Python? Regards. David -- https://mail.python.org/mailman/listinfo/python-list

Re: pygtk button right/middle click

2016-03-30 Thread Wildman via Python-list
>>> >>> This might help... >>> >>> http://faq.pygtk.org/index.py?req=show&file=faq05.004.htp >> >> Yep, I found that. I'm just missing the clues required to use those >> two pieces. > > FWIW, I've decided to give up on this. S

Re: pygtk button right/middle click

2016-03-30 Thread Grant Edwards
.py?req=show&file=faq05.004.htp > > Yep, I found that. I'm just missing the clues required to use those > two pieces. FWIW, I've decided to give up on this. Since it took only a few lines of code to handle the "left" click, I assumed that like some other toolkits,

Re: pygtk button right/middle click

2016-03-30 Thread Grant Edwards
On 2016-03-30, Wildman wrote: >> Is the gtk button widget really incapable of handling left or middle >> mouse buttons or shift/ctrl/alt modifiers? > > This might help... > > http://faq.pygtk.org/index.py?req=show&file=faq05.004.htp Yep, I found that. I'm just missing the clues required to use

Re: pygtk button right/middle click

2016-03-30 Thread Wildman via Python-list
On Wed, 30 Mar 2016 15:36:12 +, Grant Edwards wrote: > I'm trying to figure out how to get a pygtk button respond to > somehting other than just a simple "left click". With a standard > 3-button mouse, X11 provides at least 9 different "click" types, bu

Re: pygtk button right/middle click

2016-03-30 Thread Grant Edwards
On 2016-03-30, Chris Angelico wrote: > On Thu, Mar 31, 2016 at 2:36 AM, Grant Edwards > wrote: >> I'm trying to figure out how to get a pygtk button respond to >> somehting other than just a simple "left click". With a standard >> 3-button mouse, X11 prov

Re: pygtk button right/middle click

2016-03-30 Thread Chris Angelico
On Thu, Mar 31, 2016 at 2:36 AM, Grant Edwards wrote: > I'm trying to figure out how to get a pygtk button respond to > somehting other than just a simple "left click". With a standard > 3-button mouse, X11 provides at least 9 different "click" types, but > t

pygtk button right/middle click

2016-03-30 Thread Grant Edwards
I'm trying to figure out how to get a pygtk button respond to somehting other than just a simple "left click". With a standard 3-button mouse, X11 provides at least 9 different "click" types, but the pygtk button only seems to support one of them. [Yes, I know the

Re: My code won't work if I double click the saved file

2015-08-01 Thread Rustom Mody
On Saturday, August 1, 2015 at 9:28:56 PM UTC+5:30, Ben Iannitelli wrote: > Everyone else: sorry if I messed up with this post somehow, it's my first > time writing back to anyone on the newsletter. Its fine Thanks for trying to help [Just try to (hard)break your lines at around 72 columns/chars

RE: My code won't work if I double click the saved file

2015-08-01 Thread Ben Iannitelli
> > On 29Jul2015 00:20, john wrote: > >> I have windows 8 running on my computer and I think I downloaded > >> python 2 and 3 simultaneously or I think my computer has built in > >> python 2 and I downloaded python 3. John, Sorry to back-track this conversation, but would you mind telling us som

Re: My code won't work if I double click the saved file

2015-07-30 Thread Mark Lawrence
fine but when I save my program and double click the save file, it will run but it doesn't worked like it used to work in IDLE. Can someone explain the possible problem I'm currently facing? I just want my program to run perfectly in both IDLE and when I double click the saved file. I

Re: My code won't work if I double click the saved file

2015-07-29 Thread Cameron Simpson
click the save file, it will run but it doesn't worked like it used to work in IDLE. Can someone explain the possible problem I'm currently facing? I just want my program to run perfectly in both IDLE and when I double click the saved file. I posted my question in stackoverflow bu

Re: My code won't work if I double click the saved file

2015-07-29 Thread Mark Lawrence
click the save file, it will run but it doesn't worked like it used to work in IDLE. Can someone explain the possible problem I'm currently facing? I just want my program to run perfectly in both IDLE and when I double click the saved file. I posted my question in stackoverflow bu

My code won't work if I double click the saved file

2015-07-29 Thread john
I have windows 8 running on my computer and I think I downloaded python 2 and 3 simultaneously or I think my computer has built in python 2 and I downloaded python 3. And now when I ran my code in IDLE, the code works fine but when I save my program and double click the save file, it will run

Teatro.io - features preview for web-applications in one click

2014-08-29 Thread Alexey Ermolaev
During developing web-projects, manager always need to test new features. Typically, this is done using test servers. Often, manager cannot run a test server himself to see new features and has to ask the developers for the help, distracting them from their work. Besides purchased test equipment

Re: right click cut copy past context menu in IDLE in 3.4

2014-05-07 Thread Terry Reedy
On 5/7/2014 5:37 PM, Mark H Harris wrote: Greetings, thanks to the folks who worked on the right click context menu in IDLE for python 3.4! I am not one of those who directly worked on that, but on their behalf, "you'r wellcome'. -- Terry Jan Reedy -- https://mail.pyt

right click cut copy past context menu in IDLE in 3.4

2014-05-07 Thread Mark H Harris
Greetings, thanks to the folks who worked on the right click context menu in IDLE for python 3.4! Nice job. marcus -- https://mail.python.org/mailman/listinfo/python-list

Good things come in small packages -Choose AWA s pay per click training programs!

2014-05-07 Thread AWA Hyd
such a search. And hence if your website or blog or any piece of content is "optimized" to play within the search engine s rule, you may find your website listed in the first few results of the SERP or (Search Engine Results Page). Easier said than done, is it not really? PPC or pay

On click functions with turtle?

2013-10-20 Thread baujacob
x27;m using "seth" and it's so much easier. Here is my question: I want to click on a certain letter ("J" or "O" or "H" or "N") and have the turtle hover above that letter as in when the turtle is above the letter "N" at the end of

Re: I cant understand this error when i click a link on my website

2013-03-08 Thread info
Τη Παρασκευή, 8 Μαρτίου 2013 7:04:29 μ.μ. UTC+2, ο χρήστης sven έγραψε: > On 8 March 2013 16:50, Νίκος Γκρ33κ wrote: > > > > > > > > > but that same exact code is executed withour errors when someone is > http://superhost.gr > > > > the erro is produces when he is requesting a link fro

Re: I cant understand this error when i click a link on my website

2013-03-08 Thread MRAB
On 08/03/2013 17:04, Sven wrote: On 8 March 2013 16:50, Νίκος Γκρ33κ mailto:nikos.gr...@gmail.com>> wrote: but that same exact code is executed withour errors when someone is http://superhost.gr the erro is produces when he is requesting a link from that page... -- But with

Re: I cant understand this error when i click a link on my website

2013-03-08 Thread Νίκος Γκρ33κ
Τη Παρασκευή, 8 Μαρτίου 2013 6:46:35 μ.μ. UTC+2, ο χρήστης Chris Angelico έγραψε: > On Sat, Mar 9, 2013 at 3:35 AM, Νίκος Γκρ33κ wrote: > > >15 htmlpage = htmlpage.replace( '/home/nikos/public_html/', '' ) > > > re = , re.search = > > , htmlpage = ['/home/nikos/public_html/index.ht

Re: I cant understand this error when i click a link on my website

2013-03-08 Thread Chris Angelico
On Sat, Mar 9, 2013 at 3:35 AM, Νίκος Γκρ33κ wrote: >15 htmlpage = htmlpage.replace( '/home/nikos/public_html/', '' ) > re = , re.search = search>, htmlpage = ['/home/nikos/public_html/index.html', 'pelatologio.py'] > : expected string or buffer The regular expression functions expec

I cant understand this error when i click a link on my website

2013-03-08 Thread Νίκος Γκρ33κ
tring or buffer',) message = 'expected string or buffer' == The code worksmy webpoage appear when i http://superhost.gr but whne i click a link on it for exmaple the 1st imaeg shown i get this error, and in evry link too. -- http://mail.python.org/mailman/listinfo/python-list

comment tracer des neoudspar Click

2013-03-01 Thread olsr . kamal
comment tracer des neouds aprés Click sur un canvas par un buttoun tkinter qui prendre les coordonnées et tracer un neoud? -- http://mail.python.org/mailman/listinfo/python-list

Re: Detecting a click on the turtle screen when the turtle isn't doing anything?

2013-02-06 Thread Adam Funk
oop itself, okay... TBH, I was originally going to use input('press RETURN to continue') but I thought it would be nicer to click on the plot window. > -=-=-=- > import threading > > evtFlag = threading.Event() This is a global variable, but here we're calling a meth

Re: Detecting a click on the turtle screen when the turtle isn't doing anything?

2013-02-06 Thread Adam Funk
On 2013-02-05, Dave Angel wrote: > I'm no fan of Java. But it's not about a "main" method, it's about > sharing data between functions. Most of the time non-constant globals > are a mistake. If the data can't be passed as an argument, then it > should probably be part of the instance data of

Re: Detecting a click on the turtle screen when the turtle isn't doing anything?

2013-02-05 Thread Dave Angel
On 02/05/2013 02:58 PM, Adam Funk wrote: On 2013-02-05, woo...@gmail.com wrote: Globals are confusing IMHO. Code becomes cleaner and easier to write and read when you become familiar with classes. If I have to write a class just to create one instance of it & call the main()

Re: Detecting a click on the turtle screen when the turtle isn't doing anything?

2013-02-05 Thread Adam Funk
On 2013-02-05, Adam Funk wrote: > I'm trying to get a program to do some plotting with turtle graphics, > then wait for the user to click on the graphics window, then do some > more plotting, &c. So far I have the following, which doesn't work: > > #v+ > wait

Re: Detecting a click on the turtle screen when the turtle isn't doing anything?

2013-02-05 Thread Adam Funk
On 2013-02-05, woo...@gmail.com wrote: > Note that the code you posted does not call onclick(). It does, actually, but I accidentally snipped it when C&Ping code into my original post. Sorry! > Globals are > confusing IMHO. Code becomes cleaner and easier to write and read > when you becom

Re: Detecting a click on the turtle screen when the turtle isn't doing anything?

2013-02-05 Thread woooee
> waiting = False > > > > def clicked(x, y): > > global waiting > > print('clicked at %f %f' % (x,y)) > > waiting = False > > return > > > > def wait_for_click(s): > > global waiting > > waiting = True > > s.listen() > > while waiting: > > time

Detecting a click on the turtle screen when the turtle isn't doing anything?

2013-02-05 Thread Adam Funk
I'm trying to get a program to do some plotting with turtle graphics, then wait for the user to click on the graphics window, then do some more plotting, &c. So far I have the following, which doesn't work: #v+ waiting = False def clicked(x, y): global waiting print(&#x

Re: windows question: default click action points to wrong python version

2012-11-21 Thread Tim Golden
On 21/11/2012 20:53, Tony the Tiger wrote: On Wed, 21 Nov 2012 09:23:00 +0100, Gelonida N wrote: What am I missing? The PATH environment variable? Nope. PATH doesn't affect either double-clicking or running a .py file on the command line (unless, obviously, you run it by typing "python my

Re: windows question: default click action points to wrong python version

2012-11-21 Thread Gelonida N
t explicit interpreter. I always thought, that 'repairing' Python 2.6 (reinstalling it) would set the default settings back to Python 2.6. I also see with assoc / ftypes, that python 2.6. has now been configured as default. However when I click on a script it is still started with 2.7

Re: windows question: default click action points to wrong python version

2012-11-21 Thread Tim Golden
x27;repairing' Python 2.6 (reinstalling it) would > set the default settings back to Python 2.6. > > I also see with assoc / ftypes, that python 2.6. has now been configured > as default. > > However when I click on a script it is still started with 2.7. > (even after a

windows question: default click action points to wrong python version

2012-11-21 Thread Gelonida N
tings back to Python 2.6. I also see with assoc / ftypes, that python 2.6. has now been configured as default. However when I click on a script it is still started with 2.7. (even after a full restart of the machine) This is really surprising to me. I thought ftype is the command to change file

RE: When adding my application to Windows right-click menu

2012-06-13 Thread Prasad, Ramit
@="C;\myapp filelocation" > > > but I don't know how to automatically get filelocation > Can I get the address of file that I right_clicked(it's not a proper > expression maybe) This is not a Python question... This might help http://www.velocityreviews.com/forum

When adding my application to Windows right-click menu

2012-06-13 Thread Yesterday Paid
I made a cipher app but to make easy, I want to make it Windows rightclick menu can execute it I found the way with dealing with Registry [HKEY_CLASSES_ROOT\Directory\Background\shell\app] [HKEY_CLASSES_ROOT\Directory\Background\shell\app\command] @="C;\myapp filelocation" but I don't know ho

[Click the star to watch this topic] HOT LINKS FOR YOUTH ONLY

2012-04-11 Thread e kartheeka
[Click the star to watch this topic]HOT LINKS FOR YOUTH ONLY -- http://mail.python.org/mailman/listinfo/python-list

[OT] One click, one (buggy) life...

2011-06-21 Thread DavCori80
Hi everyone, I would like to share a youtube clip...one click costs nothing while can save lives sometimes (especially mine). http://www.youtube.com/watch?v=PiCeqtGHpJI Thanks a lot and cheers. DavCori http://www.ar4tro.com/welcome.html -- http://mail.python.org/mailman/listinfo/python-list

click

2011-04-30 Thread DINESH PATIL
http://123maza.com/65/born511/ -- http://mail.python.org/mailman/listinfo/python-list

Earn $2 Per Click For Free Join Make Money

2011-01-29 Thread Ravi chandran
www.workfrominter.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Troll Alert (do not click)

2011-01-04 Thread Steven D'Aprano
On Tue, 04 Jan 2011 12:30:21 -0800, Google Poster wrote: [snip spam] Good lord, why the hell are you RE-POSTING spam??? Did you actually think it was HELPFUL to defeat everyone's anti-spam filters? Most people won't see the original spam, and then you "helpfully" resend it. Thanks a lot, if not

Re: Troll Alert (do not click)

2011-01-04 Thread Google Poster
On Jan 4, 8:19 am, SHILPA wrote: >            UNSEEN HOT SEXY PHOTOS >  http://karomasti9.blogspot.com/2011/01/never.html >                         SEXY DIYA MIRZA >    http://karomasti9.blogspot.com/2010/12/diya-mirza.html >                         HOT AISHWARIYA > RAIhttp://karomasti9.blogspot.

HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN

2010-11-12 Thread fun for u all
HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN http://tinyurl.com/friend-4-fun or http://goo.gl/1bour or http://tinyurl.com/friend-4-fun1 -- http://mail.python.org/mailman/listinfo/python-list

HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN

2010-11-11 Thread fun for u all
HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN http://tinyurl.com/friend-4-fun or http://goo.gl/1bour or http://tinyurl.com/friend-4-fun1 -- http://mail.python.org/mailman/listinfo

HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN

2010-11-11 Thread fun for u all
HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN HAI WANT TO MEET FRIENDS FOR REAL FUN, CLICK FRIENDS-4-FUN http://tinyurl.com/friend-4-fun or http://goo.gl/1bour or http://tinyurl.com/friend-4-fun1 -- http://mail.python.org/mailman/listinfo

TRANSFER 300$ To Your EFT Account By Just ONE CLICK From OTHER Account

2010-10-23 Thread hollywood
The FORM is in the IMAGE below the SEARCH BOX...CLICK on the IMAGE for the FORM of TRANSFERhttp://moneymaking.en.st -- http://mail.python.org/mailman/listinfo/python-list

click ads of this site for your good, hot and brite future

2010-09-12 Thread roshini begum
www.127760.blogspot.com -- http://mail.python.org/mailman/listinfo/python-list

FREE & Just ONE Click To Obtain Success With Click2Sell.

2010-06-09 Thread maehca2
WHEN You Make A Sale # FREE & Just ONE Click To Obtain Success With Click2Sell. -- http://mail.python.org/mailman/listinfo/python-list

mechanize.browser() click or submit related problem

2010-04-12 Thread ken
Hello All. im making some website login function with mechanize.browser() module. but problem is i can't send submit or click submit button with mechanize click() function, it not working. how can i submit button or click() function make it work? i can make it work mechanize.Reques

[Click the star to watch this topic] "ADVERTISED JOBS IN TEXAS" "jobs in texas" "jobs in texas usa" "jobs in texas houston" "jobs in texas city" "jobs in texas government" "jobs in texas austin" "te

2010-04-05 Thread Naeem
[Click the star to watch this topic] "ADVERTISED JOBS IN TEXAS" "jobs in texas" "jobs in texas usa" "jobs in texas houston" "jobs in texas city" "jobs in texas government" "jobs in texas austin" "texas jobs" "

Hello,everybody,the good shoping place,the new year approaching, click in. Let's facelift bar! ===== HTTP://loveshopping.us ====

2010-03-27 Thread marrylin
Hello,everybody,the good shoping place,the new year approaching, click in. Let's facelift bar! = HTTP://loveshopping.us Air jordan(1-24)shoes $33 UGG BOOT $50 Nike shox(R4,NZ,OZ,TL1,TL2,TL3) $35 Handbags(Coach lv fendi d&g) $35 Tshirts (Polo ,ed hardy,lacoste) $16

Hello,everybody,the good shoping place,the new year approaching, click in. Let's facelift bar! ===== HTTP://loveshopping.us ====

2010-03-23 Thread marrylin
Hello,everybody,the good shoping place,the new year approaching, click in. Let's facelift bar! = HTTP://loveshopping.us Air jordan(1-24)shoes $33 UGG BOOT $50 Nike shox(R4,NZ,OZ,TL1,TL2,TL3) $35 Handbags(Coach lv fendi d&g) $35 Tshirts (Polo ,ed hardy,lacoste) $16

click me

2010-03-07 Thread madhan
please clic it it will be usefull to you http://123maza.com/78/healthyfitness/ -- http://mail.python.org/mailman/listinfo/python-list

creating a python program to control the cursor and click a location on the screen at specified delay interval?

2010-01-21 Thread John Haggerty
HiSo just testing the feasibility of doing this but I was interested in creating a primitive way of scripting gui applications w/o using a remote network client by having the application up and then almost just using the pointer position to figure out where it is and then click it and any

Re: Mechanize - Click a table row to navigate to detail page

2009-12-26 Thread Brian D
On Dec 25, 4:36 am, "Diez B. Roggisch" wrote: > Brian D schrieb: > > > A search form returns a list of records embedded in a table. > > > The user has to click on a table row to call a Javascript call that > > opens up the detail page. > > > It'

Re: Mechanize - Click a table row to navigate to detail page

2009-12-25 Thread S.Selvam
On Fri, Dec 25, 2009 at 4:06 PM, Diez B. Roggisch wrote: > Brian D schrieb: > > A search form returns a list of records embedded in a table. >> >> The user has to click on a table row to call a Javascript call that >> opens up the detail page. >> >> It&#x

Re: Mechanize - Click a table row to navigate to detail page

2009-12-25 Thread Diez B. Roggisch
Brian D schrieb: A search form returns a list of records embedded in a table. The user has to click on a table row to call a Javascript call that opens up the detail page. It's the detail page, of course, that really contains the useful information. How can I use Mechanize to click

Mechanize - Click a table row to navigate to detail page

2009-12-24 Thread Brian D
A search form returns a list of records embedded in a table. The user has to click on a table row to call a Javascript call that opens up the detail page. It's the detail page, of course, that really contains the useful information. How can I use Mechanize to click a row? Any ideas? --

win32com IE interface PAMIE javascript click

2009-11-11 Thread elca
Hello, these day im making some script. i have encounter some problem with my script work. problem is i want to click emulate javascript on following site. http://news.naver.com/main/presscenter/category.nhn this site is news site. and everyday news content also changed, but javascript is

Re: Running a script from a windows right click menu..?

2009-06-28 Thread Michel Claveau - MVP
Bonsoir ! Un exemple là: http://www.mclaveau.com/grimoire/bleu.html#999 @-salutations -- MCI -- http://mail.python.org/mailman/listinfo/python-list

Re: Running a script from a windows right click menu..?

2009-06-28 Thread Gabriel Genellina
En Sun, 28 Jun 2009 10:45:49 -0300, Nuff Nuff escribió: I wrote a little script that affects a bunch of files in the folder that it is run in. Now what I want to do is to make it run from the right click menu but I don't know how. Would you give me an example script that will simply

Running a script from a windows right click menu..?

2009-06-28 Thread Nuff Nuff
I wrote a little script that affects a bunch of files in the folder that it is run in. Now what I want to do is to make it run from the right click menu but I don't know how. Would you give me an example script that will simply print the woriking directory, and show me how to add that t

Re: lib to auto-click mouse

2009-03-17 Thread Marcin Stępnicki
Dnia Tue, 17 Mar 2009 15:43:27 +0800, oyster napisał(a): > is there any this kind of lib for python? thanx If you plan to use it for some sort of automatic testing, look here: http://pycheesecake.org/wiki/PythonTestingToolsTaxonomy#GUITestingTools -- http://mail.python.org/mailman/listinfo/pytho

lib to auto-click mouse

2009-03-17 Thread oyster
is there any this kind of lib for python? thanx -- http://mail.python.org/mailman/listinfo/python-list

In search of the click track

2009-03-05 Thread andrew cooke
thought people might find this article on drummer's "click tracks" interesting - http://musicmachinery.com/2009/03/02/in-search-of-the-click-track/ here's the python lib used - http://developer.echonest.com/docs/method/remix/ andrew -- http://mail.python.org/mailman/listinfo/python-list

  1   2   >