├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── ISSUE_TEMPLATE.md │ └── config.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── __version__.py ├── benchmark └── benchmark.png ├── calc.py ├── command.py ├── config ├── languages.yml └── msg.toml ├── data └── Data.py ├── datalyzer ├── Exporter.py ├── __init__.py └── sql.py ├── docs ├── assets │ └── CodeLoc.gif ├── index.md └── pages │ ├── advanced_usage.md │ ├── install.md │ └── usage.md ├── etc ├── __init__.py ├── generate │ ├── __init__.py │ ├── config_data.py │ └── config_help.py └── subclass.py ├── generate_data_config.py ├── generate_help.py ├── handler.py ├── install.sh ├── main.py ├── mkdocs.yml ├── preview ├── CodeLoc.gif ├── CodeLoc.png ├── SepheraChart.png └── StatsOverview.png ├── pyproject.toml ├── readme.md ├── requirements.txt ├── scripts ├── build.sh ├── ci_linux.sh └── ci_macos.sh ├── sephera ├── CodeLoc.py ├── Stats.py ├── WalkFile.py ├── __init__.py ├── fetch_lang_support.py ├── get_update.py ├── help.py ├── interactive │ ├── __init__.py │ ├── confirm.py │ └── option.py ├── net │ └── network_helper.py ├── set_cfg.py └── version.py ├── test.py ├── test ├── 1.cc ├── 10.json ├── 11.pyx ├── 12.html ├── 13.dart ├── 14.ml ├── 15.asm ├── 16.ts ├── 17.tsx ├── 18.ex ├── 2.sh ├── 3.go ├── 4.pl ├── 5.cs ├── 7.rb ├── _8.hpp └── _9.h └── utils ├── __init__.py ├── stdout.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- 1 | test/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/Makefile -------------------------------------------------------------------------------- /__version__.py: -------------------------------------------------------------------------------- 1 | SEPHERA_VERSION = "2.3.2" 2 | -------------------------------------------------------------------------------- /benchmark/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/benchmark/benchmark.png -------------------------------------------------------------------------------- /calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/calc.py -------------------------------------------------------------------------------- /command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/command.py -------------------------------------------------------------------------------- /config/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/config/languages.yml -------------------------------------------------------------------------------- /config/msg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/config/msg.toml -------------------------------------------------------------------------------- /data/Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/data/Data.py -------------------------------------------------------------------------------- /datalyzer/Exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/datalyzer/Exporter.py -------------------------------------------------------------------------------- /datalyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datalyzer/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/datalyzer/sql.py -------------------------------------------------------------------------------- /docs/assets/CodeLoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/docs/assets/CodeLoc.gif -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/pages/advanced_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/docs/pages/advanced_usage.md -------------------------------------------------------------------------------- /docs/pages/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/docs/pages/install.md -------------------------------------------------------------------------------- /docs/pages/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/docs/pages/usage.md -------------------------------------------------------------------------------- /etc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/generate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/generate/config_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/etc/generate/config_data.py -------------------------------------------------------------------------------- /etc/generate/config_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/etc/generate/config_help.py -------------------------------------------------------------------------------- /etc/subclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/etc/subclass.py -------------------------------------------------------------------------------- /generate_data_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/generate_data_config.py -------------------------------------------------------------------------------- /generate_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/generate_help.py -------------------------------------------------------------------------------- /handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/handler.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/install.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/main.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /preview/CodeLoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/preview/CodeLoc.gif -------------------------------------------------------------------------------- /preview/CodeLoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/preview/CodeLoc.png -------------------------------------------------------------------------------- /preview/SepheraChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/preview/SepheraChart.png -------------------------------------------------------------------------------- /preview/StatsOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/preview/StatsOverview.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/ci_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/scripts/ci_linux.sh -------------------------------------------------------------------------------- /scripts/ci_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/scripts/ci_macos.sh -------------------------------------------------------------------------------- /sephera/CodeLoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/CodeLoc.py -------------------------------------------------------------------------------- /sephera/Stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/Stats.py -------------------------------------------------------------------------------- /sephera/WalkFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/WalkFile.py -------------------------------------------------------------------------------- /sephera/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sephera/fetch_lang_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/fetch_lang_support.py -------------------------------------------------------------------------------- /sephera/get_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/get_update.py -------------------------------------------------------------------------------- /sephera/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/help.py -------------------------------------------------------------------------------- /sephera/interactive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sephera/interactive/confirm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/interactive/confirm.py -------------------------------------------------------------------------------- /sephera/interactive/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/interactive/option.py -------------------------------------------------------------------------------- /sephera/net/network_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/net/network_helper.py -------------------------------------------------------------------------------- /sephera/set_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/set_cfg.py -------------------------------------------------------------------------------- /sephera/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/sephera/version.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test.py -------------------------------------------------------------------------------- /test/1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/1.cc -------------------------------------------------------------------------------- /test/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/10.json -------------------------------------------------------------------------------- /test/11.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/11.pyx -------------------------------------------------------------------------------- /test/12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/12.html -------------------------------------------------------------------------------- /test/13.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/13.dart -------------------------------------------------------------------------------- /test/14.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/14.ml -------------------------------------------------------------------------------- /test/15.asm: -------------------------------------------------------------------------------- 1 | ; Hello -------------------------------------------------------------------------------- /test/16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/16.ts -------------------------------------------------------------------------------- /test/17.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/17.tsx -------------------------------------------------------------------------------- /test/18.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/18.ex -------------------------------------------------------------------------------- /test/2.sh: -------------------------------------------------------------------------------- 1 | # Test LocCount is working 2 | 3 | echo $SHELL 4 | -------------------------------------------------------------------------------- /test/3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/3.go -------------------------------------------------------------------------------- /test/4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/4.pl -------------------------------------------------------------------------------- /test/5.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Test CodeLoc 3 | */ 4 | 5 | Console.WriteLine("Hello Sephera Project!"); 6 | -------------------------------------------------------------------------------- /test/7.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/7.rb -------------------------------------------------------------------------------- /test/_8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/_8.hpp -------------------------------------------------------------------------------- /test/_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/test/_9.h -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/utils/stdout.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reim-developer/Sephera/HEAD/utils/utils.py --------------------------------------------------------------------------------