• Login
Community
  • Login

No module named Npp

Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
pythonscript
32 Posts 4 Posters 7.0k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A
    Alan Kilborn @dail
    last edited by Jun 21, 2019, 12:26 AM

    @dail said:

    My suspicion was correct

    Yes, except technically the OP was launching it from within Notepad++. But…there are degrees of within, and when you are wanting to do operations with Python tight to the Scintilla and Notepad++ cores (the original script used the notepad object), you have to be REALLY within. :)

    • Run menu : sorta within, but mostly not because it is just telling Notepad++ to launch an external process

    • Pythonscript menu : really within, because it is using the Python interpreter part of the plugin (and can access the editor (Scintilla) and notepad (N++) objects.

    And @dail, I know you know all this … I write it for the edification of other readers. :)

    1 Reply Last reply Reply Quote 6
    • A
      Alan Kilborn @Alina Gubanova
      last edited by Jun 21, 2019, 12:31 AM

      @Alina-Gubanova said:

      I apologize for the confusion. Followed the steps that were suggested by a coworker…

      No apology needed – it slowed you down in getting a solution you needed, is all. Didn’t hurt me/us a bit. :)

      Never trust those shifty coworkers!! ;)

      Write back if you need more help. If you don’t need more help, just upvote the postings here that helped you most.

      A 1 Reply Last reply Jun 21, 2019, 2:02 PM Reply Quote 2
      • A
        Alina Gubanova @Alan Kilborn
        last edited by Jun 21, 2019, 2:02 PM

        @Alan-Kilborn Just to be very clear: I save the script that I need and then run it directly from the Pythonscript menu:
        Plugins -> Python Scropt -> Scripts -> nameofmyscript.
        Tried it just now, it seems like nothing is happening. It just opens a new window new1. Console is empty as well.
        What step am I missing?

        A 1 Reply Last reply Jun 21, 2019, 2:09 PM Reply Quote 0
        • A
          Alan Kilborn @Alina Gubanova
          last edited by Jun 21, 2019, 2:09 PM

          @Alina-Gubanova

          I think you are on the right track for running your script now.

          I presume you are trying to run the original script you posted? If that’s the case, I don’t see any reason why a new1 window would be opened. Perhaps you should add some more console.write() statements to the script to attempt to track control flow?

          A 1 Reply Last reply Jun 21, 2019, 2:19 PM Reply Quote 0
          • A
            Alina Gubanova @Alan Kilborn
            last edited by Jun 21, 2019, 2:19 PM

            @Alan-Kilborn Now I just get Traceback (most recent call last): File "C:\...\Notepad++\plugins\PythonScript\scripts\convertutf8.py", line 14, in <module> console.write() Boost.Python.ArgumentError: Python argument types in Console.write(Console) did not match C++ signature: write(class NppPythonScript::PythonConsole {lvalue}, class boost::python::api::object) when I added some console.write()

            A 1 Reply Last reply Jun 21, 2019, 2:41 PM Reply Quote 0
            • A
              Alan Kilborn @Alina Gubanova
              last edited by Jun 21, 2019, 2:41 PM

              Well, from the error message I’d assume that you put console.write() directly in your code. What I mean was to put something like console.write('got here!') at a strategic place or putting a variable name inside the parens, or…just in general some debugging techniques that one might do when programming Python without an IDE.

              Like @guy038, when I run your original script on some test files, it seems to do what you intend.

              I’m assuming you got this working script from a coworker as you hinted before. Perhaps asking him/her for help getting it going is a better path than us trying to help you from afar.

              A 1 Reply Last reply Jun 21, 2019, 2:43 PM Reply Quote 2
              • A
                Alina Gubanova @Alan Kilborn
                last edited by Jun 21, 2019, 2:43 PM

                @Alan-Kilborn Okay, will do! Thank you again!

                1 Reply Last reply Reply Quote 1
                • G
                  guy038
                  last edited by guy038 Jun 21, 2019, 7:07 PM Jun 21, 2019, 3:46 PM

                  Hello, @alina-gubanova,

                  I don’t really understand why you cannot get it straight. It should be practically obvious !

                  • Create a folder, outside C\Program files..., on your configuration

                  • Install a recent portable N++ version by extracting the archive’s contents inside this folder

                  • Install a recent PythonScript release, by extracting the archive’s contents inside this folder

                  • Verify that the tree structure, of this new installation folder of N++, is like in my previous post

                  • Open Notepad++

                  • Select the option Plugins > PythonScript > New Script

                  • Enter a name for your script, let’s say Alina and click on the Save button

                  => A new tab, Alina.py is, then, displayed

                  • Paste the contents of your script, below, changing, of course, the value of the filePathSrc variable
                  import os;
                  import sys;
                  import Npp;
                  from Npp import notepad
                  
                  filePathSrc="X:\\xxxxxxxxxxxxt" # Path to the folder with files to convert
                  
                  for root, dirs, files in os.walk(filePathSrc):
                      for fn in files:
                          if fn[-4:] == '.txt':
                               notepad.open(root + "\\" + fn)
                               console.write(root + "\\" + fn + "\r\n")
                               notepad.runMenuCommand("Encoding", "Convert to UTF-8")
                               notepad.save()
                  notepad.close()
                  
                  • Save the Alina.py Python file

                  • Close and restart Notepad++ ( IMPORTANT as your script will be found, inside the Python files list)

                  • Choose the option Plugins > PythonScript > Show Console, just to visualize possible errors

                  • Then, run your script, by selecting the option Plugins > PythonScript > Scripts > Alina

                  => The absolute paths of all the files of your folder should be displayed on the Python console

                  Done ! Here we are ;-))

                  Best Regards,

                  guy038

                  A A 2 Replies Last reply Jun 21, 2019, 4:05 PM Reply Quote 1
                  • A
                    Alina Gubanova @guy038
                    last edited by Jun 21, 2019, 4:05 PM

                    @guy038 Once again, I appreciate your time commitment and input into this issue. I too find it frustrating that I cannot get such an easy thing to work, and as you can see I obviously do not have much experience working with N++. I assure you, from what I am looking at, I have performed all of the steps that you have described correctly, but I will make sure to reinstall the newer version of n++ in case something went wrong during installation.

                    1 Reply Last reply Reply Quote 2
                    • A
                      Alan Kilborn @guy038
                      last edited by Alan Kilborn Jun 21, 2019, 5:18 PM Jun 21, 2019, 5:17 PM

                      @guy038 said:

                      I don’t really understand while you cannot get it straight. It should be practically obvious !

                      Maybe a tad harsh. A reinstall of things is definitely not easy given the current state of things with the Pythonscript plugin. But…to me it sounded like the OP had PS installed correctly from the beginning, just the approach to running a script was wrong. That all being said, it is tough to determine currently what is going wrong.

                      1 Reply Last reply Reply Quote 2
                      • A
                        Alina Gubanova
                        last edited by Alina Gubanova Jun 21, 2019, 6:35 PM Jun 21, 2019, 6:35 PM

                        @Alan-Kilborn @guy038 Issue fixed. Changed filePathSrc= "some directory" to filePathSrc= r"somedirectory"
                        and everything worked fine.

                        A 1 Reply Last reply Jun 21, 2019, 6:41 PM Reply Quote 4
                        • A
                          Alan Kilborn @Alina Gubanova
                          last edited by Jun 21, 2019, 6:41 PM

                          @Alina-Gubanova

                          Of course, we could have never debugged THAT from here. :)

                          A 1 Reply Last reply Jun 21, 2019, 6:46 PM Reply Quote 3
                          • A
                            Alina Gubanova @Alan Kilborn
                            last edited by Jun 21, 2019, 6:46 PM

                            @Alan-Kilborn yep :) well, thanks for your help!

                            1 Reply Last reply Reply Quote 1
                            29 out of 32
                            • First post
                              29/32
                              Last post
                            The Community of users of the Notepad++ text editor.
                            Powered by NodeBB | Contributors