What are the .apy files in Python

Reply

Join Date: Sep 2004
Posts: 1
Reputation: vyagee is an unknown quantity at this point 
Solved Threads: 0
vyagee vyagee is offline Offline
Newbie Poster

What are the .apy files in Python

 
0
  #1
Sep 9th, 2004
I am using a tool to connect to mobile phone to fire AT commends .
This tool has some ready adaptable .apy files which the user can modify and adapt to his needs.
The scripts in the tool are written in Python.
I am new to Python.

Questions:
-------------
1. What is the difference between .py and .apy files , also the .pyd file?
2. I can see only the .apy files in this tool [there is no .pyfile] but the
ready script still works; How?
3. In the script, I see come functions like s.xxxx(), eut.t but I do not know
from where they come from.

Can someone help me.

--Vyagee
Reply With Quote Quick reply to this message  
Join Date: Dec 2003
Posts: 2,414
Reputation: alc6379 has a spectacular aura about alc6379 has a spectacular aura about alc6379 has a spectacular aura about 
Solved Threads: 123
Team Colleague
alc6379's Avatar
alc6379 alc6379 is offline Offline
Cookie... That's it

Re: What are the .apy files in Python

 
0
  #2
Sep 10th, 2004
I couldn't find anything about .apy, but I did find the .pyd. Apparently, the .pyd is the same thing as a .dll file. If you know about programming, you could almost compare them to using an include statement in a program. When you compile a Python script (ie, to make a distributable binary), those .pyd files are created, most likely including functions you've imported from other .py files in one of your own programs, or the standard library.

If the functions you've seen aren't defined in the script itself, then it was probably imported from another Python file. All you'll have to do is read the [b] import statements, and find which imported file had that function. I'm not incredibly good at Python yet, so there may be some way to use the Python interpreter itself to determine where that function came from. You might want to check www.python.org documentation, or ask one of their mailing lists, for more information about that.
Alex Cavnar, aka alc6379
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 3,956
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 917
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: What are the .apy files in Python

 
0
  #3
Apr 27th, 2005
Python is very much at home with Apple Computers. This could be a python file extension for Apple applications. Just my guess!
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Feb 2009
Posts: 1
Reputation: karuppg is an unknown quantity at this point 
Solved Threads: 0
karuppg karuppg is offline Offline
Newbie Poster

Re: What are the .apy files in Python

 
0
  #4
Feb 27th, 2009
It looks liek customised version of python. You can add extra classes to it and have ur extension.

functions like s.xxxx(), eut.t means:

Your tool cud have been desinged such that an object is created when mobile is created to it. The obj is named 's'. Then by using this you can access ur mobile. eut is Equipment under test.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC