{"id":15402189,"url":"https://github.com/liby99/quex","last_synced_at":"2025-03-14T17:25:13.226Z","repository":{"id":90735987,"uuid":"422962492","full_name":"Liby99/quex","owner":"Liby99","description":null,"archived":false,"fork":false,"pushed_at":"2021-10-30T18:38:58.000Z","size":1667,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-21T10:51:05.360Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Liby99.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"MIT-License.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-30T18:36:33.000Z","updated_at":"2021-10-30T18:39:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"477e4b4e-8f86-44be-acac-93d355c608f1","html_url":"https://github.com/Liby99/quex","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Liby99%2Fquex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Liby99%2Fquex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Liby99%2Fquex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Liby99%2Fquex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Liby99","download_url":"https://codeload.github.com/Liby99/quex/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243616985,"owners_count":20319986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T16:01:27.370Z","updated_at":"2025-03-14T17:25:13.190Z","avatar_url":"https://github.com/Liby99.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Quex - A Mode Oriented Lexical Analyser Generator\n(C) Frank-Rene Schaefer\n--------------------------------------------------------------------------------\n\nQuex is free software distributed under MIT License. \n\nThis software is  distributed in the hope that it will  be useful, but WITHOUT\nANY WARRANTY; without even the  implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE.  \n\nWhile not linked to license requirements, the author whishes this software NOT\nto be used for military purposes or other kinds of purposes that might\npotentially harm mankind.\n\n--------------------------------------------------------------------------------\n\nBRIEF:\n\n   Quex is a  generator for lexical analysers with  extended features, such as\n   event handling  for mode transitions, mode inheritance  and the indentation\n   event. Quex comes with an extensive documentation in pdf format located in\n   the ./DOC subdirectory. Note, that not all distributions of quex contain\n   the documentation. It is always available on the web under quex.sf.net. The\n   ./demo subdirectory  contains examples  that should get you quickly up and\n   running.\n\nNOTE: Quex requires python to be installed. \n\nINSTALLATION:\n\n  The installation process is simple:\n\n  -- Extract  the file  'quex-x.x.x.tar.gz' into  a directory  that  fits your\n     little heart's desires.\n\n  -- Set the  environment variable 'QUEX_PATH'  in your system  environment to\n     the place  where you installed quex. If  you are using a  Unix system and\n     the bash-shell, and your are user 'elvis' then add something like the \n     following line to your .bashrc-file:\n\n         export QUEX_PATH=/home/elvis/downloads/quex-0.11.2/\n\n     provided that you extracted the files into the directory /downloads/quex-0.11.2\n\n  -- Make a link from the file $QUEX_PATH/quex-exe.py to $EXE_PATH/quex where\n     $EXEC_PATH is a path where executables can be found by your system.\n     If you work on a unix system, you might want to type\n\n        \u003e ln -s /home/elvis/downloads/quex-0.11.2/quex-exe.py \\\n                /home/elvis/bin/quex\n     \n     In order to create a private directory where your system finds executable\n     files add the directory '/home/elvis/bin' to your path. Under Unix with a \n     bash shell, you need to append\n\n        export PATH=/home/elvis/bin:$PATH\n\n     to your .bashrc file in your /home/elvis directory.  You might want to\n     ensure executable rights with\n \n        \u003e chmod a+rx /home/elvis/downloads/quex-0.11.2/quex-exe.py\n        \u003e chmod a+rx /home/elvis/bin/quex\n\n  -- Supply your c++ compiler with the include path '$QUEX_PATH/code_base'. If\n     you are using g++ simply add the option\n\n         -I$(QUEX_PATH)/code_base \n\n     to the  list of compiler flags. In the subdirectory ./demo you find a list\n     of examples that have ready-to-rumble makefiles. You may use these \n     to startup your project.\n\n\nCONTACT:\n\n     Please, send feedback! Any bug you find is likely to result in a unit test\n     that is executed at any build. Thus, providing bug reports is an essential\n     support to the stability and quality of the software. If you are using\n     quex for a famous software project or you just think that quex is just\n     marvelous, then it also helps if you send me your inputs. Such support\n     encourages me to work on it harder and more often ...\n\n     Please, feel free to send me any coments, critiques or suggestions to\n\n     fschaef@users.sourceforge.net.\n\nAUTHOR:\n\n     Frank-Rene Schaefer\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliby99%2Fquex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliby99%2Fquex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliby99%2Fquex/lists"}