Python Forum
Calling a C Func though Pyhon Script using DLL file which is created for C file.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling a C Func though Pyhon Script using DLL file which is created for C file.
#1
1. I've created a C file (timestamp.c) having a function which returns the Timestamp in string format.
2. For this C file I've created a DLL (timestamp.dll) file which can call the above Function through Python Script.
for example::

from ctypes import *

libc = cdll.LoadLibrary("C:\\MinGW\\bin\\timestamp.dll")
print libc.GetMicroSecTimeStamp()


3. After running this script I'm getting an output like this :: 1734103168
4. But I'm expecting an Output like this :: 1483617487.419234 (This is an output from executable C file using the same function)
5. I don't know whether the Python output is right or wrong. I guess it's a wrong one.

My question is whether the my DLL file is linking properly or not?
Below are the things I've done to generate & link the DLL file.
--> gcc -c timestamp.c -o timestamp.o
--> gcc -c timestamp.dll -s -shared timestamp.o
--> gcc -c main.c -o main.o
--> gcc -o main.exe -s main.o -L. -ltimestamp

then I copied the DLL file into "bin" directory of my C Compiler.

Are there any mistakes in my steps in Linking the DLL properly ?
My target is to Get the timestamps whenever I calls libc.GetMicroSecTimeStamp().
For that how can I Link my DLL file at run time ? 
If any inputs needed please let me know.

Thanks in Advance.
Reply
#2
can you show the C source code?

can you wrap your call with repr like this:

print repr(libc.GetMicroSecTimeStamp())
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply
#3
Hi.

How do I get a python code to call a C code?
The reverse doesnt seem to be working as C doesnt support a few nescessary advanced libraries.
I am using WiringPI on the odroid c2 . I have a C code that uses the wiringP library and another python script that does something else. I want this python script to call the C code (functions) in a loop using CTYPES
Kindly help.

Thank you.
Reply
#4
Please use code tags
Hello, please read the following: https://python-forum.io/misc.php?action=help&hid=25
Thank you
Reply
#5
although i have done c (2000+) and have done a good bit of python (50+) so far, i have not yet learned how to call a linkable c function. i only know how to execvp() a program and pipe its output back to my python program. that's not what you are asking for.
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  pass arguments from bat file to pyhon script from application absolut 2 876 Jan-13-2025, 11:05 AM
Last Post: DeaD_EyE
  Best way to feed python script of a file absolut 6 1,009 Jan-11-2025, 07:03 AM
Last Post: Gribouillis
  How to write variable in a python file then import it in another python file? tatahuft 4 843 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  How to make it so whatever I input into a script gets outputted on a different file spermatozwario 4 1,080 Nov-24-2024, 12:58 PM
Last Post: deanhystad
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 999 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  FileNotFoundError: [Errno 2] No such file or directory although the file exists Arnibandyo 0 780 Aug-12-2024, 09:11 AM
Last Post: Arnibandyo
  "[Errno 2] No such file or directory" (.py file) IbrahimBennani 13 6,018 Jun-17-2024, 12:26 AM
Last Post: AdamHensley
  How can I print from within actor(func) ?? Pedroski55 2 893 May-01-2024, 05:35 AM
Last Post: Pedroski55
  File is not being created with 'w' argument CAD79 3 1,465 Mar-14-2024, 12:05 PM
Last Post: snippsat
  python script is hanging while calling a procedure in database prasanthi417 4 1,981 Jan-17-2024, 02:33 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020