nekova-lang 1.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. nekova_lang-1.2.0/MANIFEST.in +20 -0
  2. nekova_lang-1.2.0/PKG-INFO +445 -0
  3. nekova_lang-1.2.0/README.md +416 -0
  4. nekova_lang-1.2.0/ai/__init__.py +13 -0
  5. nekova_lang-1.2.0/ai/agents/__init__.py +6 -0
  6. nekova_lang-1.2.0/ai/agents/agent.py +144 -0
  7. nekova_lang-1.2.0/ai/agents/agent_runner.py +112 -0
  8. nekova_lang-1.2.0/ai/agents_module.py +289 -0
  9. nekova_lang-1.2.0/ai/ai_module.py +86 -0
  10. nekova_lang-1.2.0/ai/providers/__init__.py +110 -0
  11. nekova_lang-1.2.0/ai/providers/anthropic.py +179 -0
  12. nekova_lang-1.2.0/ai/providers/base.py +74 -0
  13. nekova_lang-1.2.0/ai/providers/gemini.py +207 -0
  14. nekova_lang-1.2.0/ai/providers/mock.py +168 -0
  15. nekova_lang-1.2.0/ai/providers/openai.py +228 -0
  16. nekova_lang-1.2.0/ai/workflows/__init__.py +5 -0
  17. nekova_lang-1.2.0/ai/workflows/workflow.py +123 -0
  18. nekova_lang-1.2.0/cli/__init__.py +49 -0
  19. nekova_lang-1.2.0/cli/commands.py +319 -0
  20. nekova_lang-1.2.0/cli/deploy.py +246 -0
  21. nekova_lang-1.2.0/cli/error_display.py +240 -0
  22. nekova_lang-1.2.0/cli/marketplace_cmd.py +84 -0
  23. nekova_lang-1.2.0/cli/package_manager.py +326 -0
  24. nekova_lang-1.2.0/compiler/__init__.py +9 -0
  25. nekova_lang-1.2.0/compiler/bytecode.py +137 -0
  26. nekova_lang-1.2.0/compiler/compiler.py +306 -0
  27. nekova_lang-1.2.0/compiler/llvm_backend.py +213 -0
  28. nekova_lang-1.2.0/compiler/transpiler.py +299 -0
  29. nekova_lang-1.2.0/compiler/vm.py +333 -0
  30. nekova_lang-1.2.0/config.py +23 -0
  31. nekova_lang-1.2.0/database/__init__.py +14 -0
  32. nekova_lang-1.2.0/database/connection.py +122 -0
  33. nekova_lang-1.2.0/database/db_module.py +315 -0
  34. nekova_lang-1.2.0/database/query.py +180 -0
  35. nekova_lang-1.2.0/deploy/__init__.py +7 -0
  36. nekova_lang-1.2.0/deploy/bundle.py +183 -0
  37. nekova_lang-1.2.0/deploy/cloud.py +212 -0
  38. nekova_lang-1.2.0/deploy/exporter.py +225 -0
  39. nekova_lang-1.2.0/deploy/packager.py +190 -0
  40. nekova_lang-1.2.0/deploy/publisher.py +184 -0
  41. nekova_lang-1.2.0/interpreter/__init__.py +8 -0
  42. nekova_lang-1.2.0/interpreter/environment.py +87 -0
  43. nekova_lang-1.2.0/interpreter/interpreter.py +1174 -0
  44. nekova_lang-1.2.0/lexer/__init__.py +11 -0
  45. nekova_lang-1.2.0/lexer/lexer.py +317 -0
  46. nekova_lang-1.2.0/lexer/token.py +54 -0
  47. nekova_lang-1.2.0/lexer/token_types.py +124 -0
  48. nekova_lang-1.2.0/main.py +354 -0
  49. nekova_lang-1.2.0/marketplace/__init__.py +10 -0
  50. nekova_lang-1.2.0/marketplace/marketplace.py +273 -0
  51. nekova_lang-1.2.0/marketplace/marketplace_registry.json +45 -0
  52. nekova_lang-1.2.0/marketplace/registry.py +234 -0
  53. nekova_lang-1.2.0/marketplace/search.py +81 -0
  54. nekova_lang-1.2.0/nekova_cli.py +49 -0
  55. nekova_lang-1.2.0/nekova_lang.egg-info/PKG-INFO +445 -0
  56. nekova_lang-1.2.0/nekova_lang.egg-info/SOURCES.txt +174 -0
  57. nekova_lang-1.2.0/nekova_lang.egg-info/dependency_links.txt +1 -0
  58. nekova_lang-1.2.0/nekova_lang.egg-info/entry_points.txt +2 -0
  59. nekova_lang-1.2.0/nekova_lang.egg-info/requires.txt +9 -0
  60. nekova_lang-1.2.0/nekova_lang.egg-info/top_level.txt +15 -0
  61. nekova_lang-1.2.0/packages/__init__.py +93 -0
  62. nekova_lang-1.2.0/packages/charts.py +48 -0
  63. nekova_lang-1.2.0/packages/registry/index.json +8 -0
  64. nekova_lang-1.2.0/packages/registry.json +8 -0
  65. nekova_lang-1.2.0/parser/__init__.py +15 -0
  66. nekova_lang-1.2.0/parser/nodes.py +522 -0
  67. nekova_lang-1.2.0/parser/parser.py +873 -0
  68. nekova_lang-1.2.0/pyproject.toml +3 -0
  69. nekova_lang-1.2.0/requirements.txt +9 -0
  70. nekova_lang-1.2.0/runner.py +211 -0
  71. nekova_lang-1.2.0/runtime/__init__.py +33 -0
  72. nekova_lang-1.2.0/setup.cfg +60 -0
  73. nekova_lang-1.2.0/setup.py +8 -0
  74. nekova_lang-1.2.0/stdlib/__init__.py +118 -0
  75. nekova_lang-1.2.0/stdlib/collections_module.py +54 -0
  76. nekova_lang-1.2.0/stdlib/datetime_module.py +49 -0
  77. nekova_lang-1.2.0/stdlib/files_module.py +92 -0
  78. nekova_lang-1.2.0/stdlib/math_module.py +48 -0
  79. nekova_lang-1.2.0/stdlib/text_module.py +51 -0
  80. nekova_lang-1.2.0/stdlib/vision_module.py +134 -0
  81. nekova_lang-1.2.0/stdlib/voice_module.py +147 -0
  82. nekova_lang-1.2.0/tests/test_phase1.py +77 -0
  83. nekova_lang-1.2.0/tests/test_phase2.py +158 -0
  84. nekova_lang-1.2.0/tests/test_phase3.py +215 -0
  85. nekova_lang-1.2.0/tests/test_phase4.py +214 -0
  86. nekova_lang-1.2.0/tests/test_phase5.py +181 -0
  87. nekova_lang-1.2.0/tests/test_phase7.py +170 -0
  88. nekova_lang-1.2.0/tests/test_phase8.py +198 -0
  89. nekova_lang-1.2.0/ui/__init__.py +17 -0
  90. nekova_lang-1.2.0/ui/components.py +177 -0
  91. nekova_lang-1.2.0/ui/renderer.py +355 -0
  92. nekova_lang-1.2.0/ui/ui_module.py +212 -0
  93. nekova_lang-1.2.0/web/__init__.py +19 -0
  94. nekova_lang-1.2.0/web/request.py +63 -0
  95. nekova_lang-1.2.0/web/response.py +82 -0
  96. nekova_lang-1.2.0/web/router.py +137 -0
  97. nekova_lang-1.2.0/web/server.py +95 -0
  98. nekova_lang-1.2.0/web/web_module.py +127 -0
  99. nekova_lang-1.2.0/web_ide/__init__.py +5 -0
  100. nekova_lang-1.2.0/web_ide/ide_server.py +258 -0
@@ -0,0 +1,20 @@
1
+ include config.py
2
+ include runner.py
3
+ include main.py
4
+ include nekova_cli.py
5
+ include requirements.txt
6
+ recursive-include lexer *.py
7
+ recursive-include parser *.py
8
+ recursive-include interpreter *.py
9
+ recursive-include compiler *.py
10
+ recursive-include runtime *.py
11
+ recursive-include stdlib *.py
12
+ recursive-include ai *.py
13
+ recursive-include web *.py
14
+ recursive-include database *.py
15
+ recursive-include ui *.py
16
+ recursive-include cli *.py
17
+ recursive-include packages *.py *.jsonz
18
+ recursive-include marketplace *.py
19
+ recursive-include deploy *.py
20
+ recursive-include runtime *.py
@@ -0,0 +1,445 @@
1
+ Metadata-Version: 2.4
2
+ Name: nekova-lang
3
+ Version: 1.2.0
4
+ Summary: NEKOVA - AI-Native Programming Language with think, pipelines, vision, voice, memory and sandboxing
5
+ Home-page: https://github.com/kinghenesey/NEKOVA
6
+ Author: Emmanuel King Christopher
7
+ Author-email: emmanuelkingchristopher@gmail.com
8
+ Project-URL: Bug Tracker, https://github.com/kinghenesey/NEKOVA/issues
9
+ Project-URL: Documentation, https://github.com/kinghenesey/NEKOVA#readme
10
+ Keywords: programming language,ai,interpreter,compiler,think,neural pipeline,multimodal,agent,vision,voice
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Topic :: Software Development :: Interpreters
16
+ Classifier: Topic :: Software Development :: Compilers
17
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
+ Requires-Python: >=3.11
19
+ Description-Content-Type: text/markdown
20
+ Requires-Dist: colorama>=0.4.0
21
+ Requires-Dist: python-dotenv>=0.19.0
22
+ Requires-Dist: requests>=2.27.0
23
+ Requires-Dist: flask>=2.0.0
24
+ Requires-Dist: google-genai>=2.0.0
25
+ Requires-Dist: anthropic>=0.20.0
26
+ Requires-Dist: openai>=1.0.0
27
+ Requires-Dist: edge-tts>=6.0.0
28
+ Requires-Dist: pyttsx3>=2.90
29
+
30
+ <div align="center">
31
+
32
+ # NEKOVA Programming Language
33
+
34
+ ### The AI-Native Programming Language by SYNEKCOT Tech
35
+
36
+ ![Version](https://img.shields.io/badge/version-1.1.1-00d4ff)
37
+ ![PyPI](https://img.shields.io/pypi/v/nekova-lang)
38
+ ![Python](https://img.shields.io/badge/python-3.11+-blue)
39
+ ![License](https://img.shields.io/badge/license-MIT-green)
40
+ ![Tests](https://img.shields.io/badge/tests-147%20passing-success)
41
+
42
+ *"The first programming language where AI is syntax, not a library."*
43
+
44
+ [Install](#installation) · [Features](#features) · [Examples](#examples) · [Community](#community) · [Docs](#cli-commands)
45
+
46
+ </div>
47
+
48
+ ---
49
+
50
+ ## What is NEKOVA?
51
+
52
+ **NEKOVA** means *"Connected Forge"* — a language that forges a direct connection between the developer and AI. Built by **SYNEKCOT Tech** in Nigeria, for the world.
53
+
54
+ NEKOVA is an **AI-native programming language** built with Python. It's the first language where `think` is syntax — AI isn't a library you import, it's part of the language itself.
55
+
56
+ ```nekova
57
+ # AI is just syntax
58
+ think "What should I build today?"
59
+
60
+ # Chain AI agents with ->
61
+ "Nigerian fintech trends" -> researcher -> analyst -> writer
62
+
63
+ # Neural pipeline
64
+ pipeline market_analysis:
65
+ collect "African tech ecosystem"
66
+ process with ai
67
+ generate report
68
+ save to database
69
+
70
+ run pipeline market_analysis
71
+ ```
72
+
73
+ ---
74
+
75
+ ## Why NEKOVA?
76
+
77
+ > *"I didn't just learn to code. I built the tools other people use to code."*
78
+ > — Emmanuel King Christopher, Founder of SYNEKCOT Tech
79
+
80
+ NEKOVA was born in Nigeria and built to prove that world-class programming languages can come from anywhere. The name comes from two words: **NEKT** (connected, from Latin *nectere*) and **KOVA** (to forge). Together: the forge that connects human intent to AI.
81
+
82
+ ---
83
+
84
+ ## Installation
85
+
86
+ ### Option 1 — pip (recommended)
87
+
88
+ ```bash
89
+ pip install nekova-lang
90
+ ```
91
+
92
+ Add your API key to a `.env` file in your project folder:
93
+
94
+ ```env
95
+ # You only need ONE key — NEKOVA auto-detects which one you have
96
+ GEMINI_API_KEY=your_key_here # Free key at aistudio.google.com
97
+ ANTHROPIC_API_KEY=your_key_here # Key at console.anthropic.com
98
+ OPENAI_API_KEY=your_key_here # Key at platform.openai.com
99
+ ```
100
+
101
+ Run your first program:
102
+ ```bash
103
+ nekova hello.nk
104
+ ```
105
+
106
+ ### Option 2 — Clone from GitHub
107
+
108
+ ```bash
109
+ git clone https://github.com/kinghenesey/NEKOVA.git
110
+ cd NEKOVA
111
+ pip install -r requirements.txt
112
+ ```
113
+
114
+ Run a program:
115
+ ```bash
116
+ python main.py examples/hello.nk
117
+ ```
118
+
119
+ ---
120
+
121
+ ## AI Providers
122
+
123
+ NEKOVA supports three AI providers out of the box. Just add the key for whichever one you have — NEKOVA picks it up automatically.
124
+
125
+ | Provider | Key | Get it free? |
126
+ |----------|-----|-------------|
127
+ | Google Gemini | `GEMINI_API_KEY` | ✅ Yes — [aistudio.google.com](https://aistudio.google.com) |
128
+ | Anthropic Claude | `ANTHROPIC_API_KEY` | No — [console.anthropic.com](https://console.anthropic.com) |
129
+ | OpenAI GPT | `OPENAI_API_KEY` | No — [platform.openai.com](https://platform.openai.com) |
130
+ | Mock (no key) | — | ✅ Always available |
131
+
132
+ Switch providers at runtime inside your `.nk` file:
133
+ ```nekova
134
+ model "gemini"
135
+ think "Using Gemini now"
136
+
137
+ model "openai"
138
+ think "Using GPT now"
139
+
140
+ model "claude"
141
+ think "Using Claude now"
142
+ ```
143
+
144
+ ---
145
+
146
+ ## Features
147
+
148
+ | Feature | Syntax | Description |
149
+ |---------|--------|-------------|
150
+ | 🧠 **Think** | `think "prompt"` | Call AI directly — no imports needed |
151
+ | 🔗 **Pipelines** | `researcher -> writer` | Chain AI agents with `->` |
152
+ | 🔀 **Model Routing** | `model "gemini"` | Switch AI providers at runtime |
153
+ | 👁️ **Vision** | `vision_scan("img.png")` | Analyze images with AI |
154
+ | 🎙️ **Voice** | `voice_speak("Hello!")` | Text-to-speech built in |
155
+ | ⚡ **Parallel** | `autonomous parallel:` | Run AI tasks simultaneously |
156
+ | 💾 **Memory** | `memory profile:` | Persistent data between runs |
157
+ | 🔒 **Sandbox** | `sandbox strict:` | Secure execution environment |
158
+ | 🧬 **Neural Pipeline** | `pipeline name:` | Full AI workflow in one block |
159
+ | 🏗️ **Compiler** | `nekova compile app.nk` | Compile to standalone Python |
160
+ | ☁️ **Deploy** | `nekova deploy cloud app.nk` | Deploy to cloud with one command |
161
+ | 🌐 **Web** | `use web` | Build real HTTP servers |
162
+ | 🗄️ **Database** | `use database` | Full SQLite CRUD |
163
+ | 🎨 **UI** | `use ui` | Generate HTML apps |
164
+
165
+ ---
166
+
167
+ ## Examples
168
+
169
+ ### Hello World
170
+ ```nekova
171
+ name = "Emmanuel"
172
+ show "Hello {name}!"
173
+ show "Welcome to NEKOVA — where AI is syntax."
174
+ ```
175
+
176
+ ### Think (AI as syntax)
177
+ ```nekova
178
+ # Standalone think
179
+ think "What is the capital of Nigeria?"
180
+
181
+ # Captured think
182
+ idea = think "Give me one startup idea in one sentence"
183
+ show "AI said: {idea}"
184
+
185
+ # Think with variables
186
+ topic = "African fintech"
187
+ result = think "Analyze {topic} in 2025"
188
+ show result
189
+ ```
190
+
191
+ ### Agent Pipeline
192
+ ```nekova
193
+ # Chain agents — output flows left to right
194
+ "Analyze Nigerian tech ecosystem" -> researcher -> marketer -> reporter
195
+
196
+ # Captured result
197
+ report = "Future of AI in Africa" -> analyst -> writer
198
+ show report
199
+ ```
200
+
201
+ ### Neural Pipeline
202
+ ```nekova
203
+ pipeline market_research:
204
+ collect "Nigerian startup ecosystem 2025"
205
+ process with ai
206
+ generate report
207
+ save to database
208
+
209
+ run pipeline market_research
210
+ result = run pipeline market_research
211
+ show result
212
+ ```
213
+
214
+ ### Parallel Execution
215
+ ```nekova
216
+ # All three run simultaneously
217
+ autonomous parallel:
218
+ think "Capital of Nigeria?"
219
+ think "Capital of Ghana?"
220
+ think "Capital of Kenya?"
221
+
222
+ # Captured results
223
+ results = autonomous parallel:
224
+ think "Name one African unicorn"
225
+ think "Name one Nigerian founder"
226
+ ```
227
+
228
+ ### Vision + Voice
229
+ ```nekova
230
+ use vision
231
+ use voice
232
+
233
+ # Analyze an image
234
+ description = vision_scan("photo.png")
235
+ show "AI sees: {description}"
236
+
237
+ # Speak the result
238
+ voice_speak("Analysis complete!")
239
+
240
+ # Listen for input
241
+ transcript = voice_listen()
242
+ show "You said: {transcript}"
243
+ ```
244
+
245
+ ### Persistent Memory
246
+ ```nekova
247
+ memory user_profile:
248
+ name = "Emmanuel"
249
+ language = "NEKOVA"
250
+ run_count = 0
251
+
252
+ show user_profile["name"]
253
+ show user_profile["language"]
254
+ ```
255
+
256
+ ### Sandbox
257
+ ```nekova
258
+ sandbox strict:
259
+ show "Running in secure mode"
260
+ think "What is 2 + 2?"
261
+
262
+ sandbox relaxed:
263
+ use files
264
+ data = read_file("input.txt")
265
+ show data
266
+ ```
267
+
268
+ ### Variables, Loops & Tasks
269
+ ```nekova
270
+ # Variables
271
+ name = "Emmanuel"
272
+ age = 20
273
+ items = [1, 2, 3]
274
+
275
+ # Conditions
276
+ if age >= 18:
277
+ show "Adult"
278
+ else:
279
+ show "Minor"
280
+
281
+ # Loops
282
+ repeat 5:
283
+ show "NEKOVA!"
284
+
285
+ for item in items:
286
+ show item
287
+
288
+ # Tasks (functions)
289
+ task greet(name):
290
+ show "Hello {name}!"
291
+ return "Done"
292
+
293
+ result = greet("World")
294
+ show result
295
+ ```
296
+
297
+ ### Standard Library
298
+ ```nekova
299
+ use math
300
+ use text
301
+ use database
302
+ use web
303
+
304
+ show sqrt(144)
305
+ show upper("hello nekova")
306
+
307
+ db_connect("myapp.db")
308
+ db_create("users", "name text, age integer")
309
+ db_insert("users", "Emmanuel, 20")
310
+ results = db_find("users", "all")
311
+ show results
312
+ ```
313
+
314
+ ---
315
+
316
+ ## CLI Commands
317
+
318
+ ```bash
319
+ # Run files
320
+ nekova hello.nk
321
+ nekova app.nk --debug
322
+
323
+ # Using python directly
324
+ python main.py hello.nk
325
+ python main.py repl
326
+ python main.py ide
327
+
328
+ # Developer tools
329
+ nekova repl # Interactive shell
330
+ nekova ide # Web IDE at localhost:3000
331
+ nekova compile app.nk # Compile to Python
332
+ nekova deploy cloud app.nk # Deploy to cloud
333
+ nekova --version # Show version
334
+ nekova --help # Show help
335
+
336
+ # Package manager
337
+ nekova --install charts
338
+ nekova --packages
339
+ nekova marketplace
340
+ ```
341
+
342
+ ---
343
+
344
+ ## Standard Library
345
+
346
+ | Module | Key Functions |
347
+ |--------|--------------|
348
+ | `use math` | sqrt, floor, ceil, abs, pi |
349
+ | `use text` | upper, lower, trim, replace, split |
350
+ | `use files` | read_file, write_file, file_exists |
351
+ | `use datetime` | today, now, year, month, day |
352
+ | `use ai` | ai_ask, ai_summarize, ai_generate |
353
+ | `use vision` | vision_scan, vision_compare |
354
+ | `use voice` | voice_speak, voice_listen, voice_save |
355
+ | `use agents` | agent_create, agent_run |
356
+ | `use web` | web_app, web_route, web_start |
357
+ | `use database` | db_connect, db_create, db_insert, db_find |
358
+ | `use ui` | ui_app, ui_page, ui_title, ui_button |
359
+
360
+ ---
361
+
362
+ ## Project Structure
363
+
364
+ ```
365
+ nekova/
366
+ ├── main.py ← Entry point
367
+ ├── runner.py ← Pipeline orchestrator
368
+ ├── config.py ← Version & constants
369
+ ├── repl.py ← Interactive shell
370
+ ├── nekova_cli.py ← pip CLI entry point
371
+ ├── lexer/ ← Tokenizer
372
+ ├── parser/ ← AST builder
373
+ ├── interpreter/ ← Execution engine
374
+ ├── compiler/ ← Bytecode compiler + VM
375
+ ├── stdlib/ ← Standard library
376
+ ├── ai/ ← AI runtime + providers
377
+ ├── web/ ← Web framework
378
+ ├── database/ ← Database system
379
+ ├── ui/ ← UI framework
380
+ ├── web_ide/ ← Browser-based IDE
381
+ ├── deploy/ ← Deployment tools
382
+ ├── examples/ ← Example programs (.nk)
383
+ └── tests/ ← Test suite (147 tests)
384
+ ```
385
+
386
+ ---
387
+
388
+ ## Community
389
+
390
+ **NEKOVA Connect** — Share your NEKOVA projects with the community.
391
+
392
+ - Browse projects built with NEKOVA
393
+ - Share your own programs
394
+ - Chat with other developers
395
+ - Run projects live in the browser
396
+
397
+ ---
398
+
399
+ ## Roadmap
400
+
401
+ - [x] Core language (lexer, parser, interpreter)
402
+ - [x] Standard library (math, text, files, datetime)
403
+ - [x] AI runtime (Gemini, Claude, OpenAI, Mock)
404
+ - [x] `think` keyword — AI as syntax
405
+ - [x] Agent pipelines (`->` operator)
406
+ - [x] Model routing (`model "gemini"`)
407
+ - [x] Multimodal (vision + voice)
408
+ - [x] Parallel execution (`autonomous parallel`)
409
+ - [x] Persistent memory blocks
410
+ - [x] Sandboxing (`sandbox strict/relaxed`)
411
+ - [x] Neural pipelines (`pipeline name:`)
412
+ - [x] Bytecode compiler + VM
413
+ - [x] Cloud deployment
414
+ - [x] Web IDE
415
+ - [x] VS Code extension
416
+ - [x] PyPI package (`nekova-lang`)
417
+ - [x] OpenAI/GPT provider
418
+ - [ ] NEKOVA native compilation
419
+ - [ ] Language server (LSP)
420
+ - [ ] NEKOVA package registry
421
+ - [ ] NEKOVA Connect community platform
422
+
423
+ ---
424
+
425
+ ## Built By
426
+
427
+ **Emmanuel King Christopher** — Founder, SYNEKCOT Tech. Built from scratch with Python 3.11, in Nigeria.
428
+
429
+ > *"I didn't just learn to code. I built the tools other people use to code."*
430
+
431
+ ---
432
+
433
+ ## License
434
+
435
+ MIT License — free to use, modify, and distribute.
436
+
437
+ ---
438
+
439
+ <div align="center">
440
+
441
+ **Star ⭐ this repo if NEKOVA inspired you!**
442
+
443
+ [github.com/kinghenesey/NEKOVA](https://github.com/kinghenesey/NEKOVA) · [PyPI](https://pypi.org/project/nekova-lang/) · Built by SYNEKCOT Tech 🇳🇬
444
+
445
+ </div>