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
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(
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
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
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:
['', '
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
:
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
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
_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
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
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
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
Not happening in mine
--
https://mail.python.org/mailman/listinfo/python-list
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
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
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
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
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
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
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
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
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
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
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
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
...
>>
>> 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
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
Thanks it was helpful
--
https://mail.python.org/mailman/listinfo/python-list
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
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=
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
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
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
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
>>>
>>> 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
.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,
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
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
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
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
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
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
> > 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
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
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
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
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
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
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
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
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
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
Τη Παρασκευή, 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
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
Τη Παρασκευή, 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
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
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 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
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
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
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()
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
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
> 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
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(
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
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
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
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
@="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
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
--
http://mail.python.org/mailman/listinfo/python-list
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
http://123maza.com/65/born511/
--
http://mail.python.org/mailman/listinfo/python-list
www.workfrominter.com
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
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
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
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
www.127760.blogspot.com
--
http://mail.python.org/mailman/listinfo/python-list
WHEN You Make A Sale
# FREE & Just ONE Click To Obtain Success With Click2Sell.
--
http://mail.python.org/mailman/listinfo/python-list
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" "texas
jobs" "
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
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
please clic it it will be usefull to you
http://123maza.com/78/healthyfitness/
--
http://mail.python.org/mailman/listinfo/python-list
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
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'
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
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
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?
--
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
Bonsoir !
Un exemple là: http://www.mclaveau.com/grimoire/bleu.html#999
@-salutations
--
MCI
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
is there any this kind of lib for python?
thanx
--
http://mail.python.org/mailman/listinfo/python-list
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 - 100 of 174 matches
Mail list logo