Git Product home page Git Product logo

counting-words-appearing-in-pdf's Introduction

Counting Names

A GUI-based program to search a PDF for all nouns (words that start with a capitalized letter) and the pages they occur on.
The result will be saved to a given file.

Install

Optional generation of the dictionary

Prepare by generating a dictionary using aspell (example is for german).
Due to license problems we can't ship the dict with the project.

aspell -d de dump master | aspell -l de expand > ./src/count_names/dictionary.txt

Note: You can run the project without this step, but then you need to disable "Exclude words from dictionary" in the ui.

Run Program.

pip install .
count_names_ui

Consider using a venv!

Development

use pip install -e . to install the package in edit mode.

Building an executable for windows

It's highly recommended to use a venv for that!

python3 -m pip install -r requirements_exe.txt
pyinstaller .\src\count_names\__init__.py --onefile --name word-counter.exe --add-data "src/count_names/dictionary.txt;count_names"

The executable word-counter.exe will be located in .\dist\.
You can copy it freely everywhere. It will still work!
Note: you can exclude the --add-data "src/count_names/dictionary.txt;count_names" part when not including a dictionary.

counting-words-appearing-in-pdf's People

Contributors

nonchris avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.