Python Forum
Calling functions from another file
Thread Rating:
  • 2 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling functions from another file
#3
File A and B are in separate folders. In File A my code are like this:
class A(unittest.Testcase):
   def testA(self):
       some code...


As you can see in File B I want to call the testA function but this way does not work:
from FileA import A  
 
class B(unittest.TestCase):
   def testA(self):
      A.testA()
Reply


Messages In This Thread
Calling functions from another file - by jp2017 - Oct-11-2017, 10:33 AM
RE: Calling functions from another file - by buran - Oct-11-2017, 10:39 AM
RE: Calling functions from another file - by jp2017 - Oct-11-2017, 11:20 AM
RE: Calling functions from another file - by buran - Oct-11-2017, 11:33 AM
RE: Calling functions from another file - by buran - Oct-11-2017, 11:53 AM
RE: Calling functions from another file - by buran - Oct-11-2017, 12:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Calling functions by making part of their name with variable crouzilles 4 1,866 Nov-02-2023, 12:25 PM
Last Post: noisefloor
  How can i combine these two functions so i only open the file once? cubangt 4 2,016 Aug-14-2023, 05:04 PM
Last Post: snippsat
  Calling a function (which accesses a library) from another file mouse9095 4 4,433 Jun-07-2023, 08:55 PM
Last Post: deanhystad
  Functions to consider for file renaming and moving around directories cubangt 2 2,732 Jan-07-2022, 02:16 PM
Last Post: cubangt
  Calling functions from within a class: PYQT6 Anon_Brown 4 6,874 Dec-09-2021, 12:40 PM
Last Post: deanhystad
Question trouble with functions "def", calling/defining them Duck_Boom 13 6,778 Oct-21-2020, 03:50 AM
Last Post: Duck_Boom
  Calling C functions with PyObjects jibarra 6 3,879 Jul-17-2019, 02:52 PM
Last Post: jibarra
  Duplicate output when calling a custom function from the same file? road2knowledge 2 3,743 May-10-2019, 07:58 AM
Last Post: road2knowledge
  Use Variables Generated from Functions in different files to use on the main file AykutRobotics 3 3,902 Jan-01-2019, 04:19 PM
Last Post: AykutRobotics
  calling os functions not in module os Skaperen 2 3,444 Nov-10-2018, 01:54 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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