pynoot 0.1__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.
- pynoot-0.1/PKG-INFO +5 -0
- pynoot-0.1/README.md +23 -0
- pynoot-0.1/pynoot/__init__.py +11 -0
- pynoot-0.1/pynoot/main/Readme.py +3 -0
- pynoot-0.1/pynoot/main/__init__.py +1 -0
- pynoot-0.1/pynoot/main/functions/__init__.py +61 -0
- pynoot-0.1/pynoot.egg-info/PKG-INFO +5 -0
- pynoot-0.1/pynoot.egg-info/SOURCES.txt +10 -0
- pynoot-0.1/pynoot.egg-info/dependency_links.txt +1 -0
- pynoot-0.1/pynoot.egg-info/top_level.txt +1 -0
- pynoot-0.1/setup.cfg +4 -0
- pynoot-0.1/setup.py +11 -0
pynoot-0.1/PKG-INFO
ADDED
pynoot-0.1/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# PyNoot - بايثون بالعربي 🇪🇬🐍
|
|
2
|
+
|
|
3
|
+
مكتبة Python بالعربي لتعليم البرمجة بسهولة وبلغة مألوفة للمبتدئين العرب.
|
|
4
|
+
|
|
5
|
+
## المميزات:
|
|
6
|
+
- `اطبع()` بدل `print()`
|
|
7
|
+
- `ادخل()` بدل `input()`
|
|
8
|
+
- `لو()` بدل `if`
|
|
9
|
+
- `امسح()` لمسح الشاشة
|
|
10
|
+
- والمزيد قريبًا!
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## كيفية الاستخدام:
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
from pynoot import *
|
|
18
|
+
|
|
19
|
+
الاسم = ادخل("ما اسمك؟ ")
|
|
20
|
+
لو(الاسم == "نور", lambda: اطبع("أهلاً يا نور!"))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
اطبع("Hello world!")
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
|
|
2
|
+
# DOC_STRING:
|
|
3
|
+
|
|
4
|
+
"""
|
|
5
|
+
🐍 (باي نطق تبسيط منطق البرمجة للجميع)
|
|
6
|
+
|
|
7
|
+
هي مكتبة مصممة خصيصاً للمبتدئين في فهم المنطق البرمجي في عالم الحاسوب باستخدام لغه برمجه بايثون و , للأطفال، الأكاديميات، وكل من يريد تعلم منطق برمجة الكمبيوتر
|
|
8
|
+
بأسلوب سهل ومبسط. تدعم اللغة العربية (بالعامية المصريه) لكسر حاجز اللغة وتسهيل فهم الأكواد للمبتدئين
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
from .main import *
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .functions import *
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# __init__ file for import the whole folder of any custom functions that were done for Pynoot / باي نطق in Python3
|
|
2
|
+
# If it Works then Dont Touch anything! xD
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# ---------------------------------------------------
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# Main basics
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# loads for arabic_print.py File
|
|
13
|
+
from .print.arabic_print import * # Passed!
|
|
14
|
+
|
|
15
|
+
# loads for arabic_input.py File
|
|
16
|
+
from .input.arabic_input import * # Passed!
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# loads for if statement_Arabic folder
|
|
20
|
+
from .if_statement.if_arabic import * # Is cooked ;-;
|
|
21
|
+
|
|
22
|
+
# loads for loops_arabic folder
|
|
23
|
+
from .loops.arabic_whileloop import * # Not Passed :(
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# ---------------------------------------------------
|
|
29
|
+
|
|
30
|
+
# Methods
|
|
31
|
+
|
|
32
|
+
# Methods: Clear() loads Folder
|
|
33
|
+
|
|
34
|
+
from .methods.clear.clear import * # Passed!
|
|
35
|
+
|
|
36
|
+
# Methods: append() loads Folder
|
|
37
|
+
from .methods.append.append import * # Passed!
|
|
38
|
+
|
|
39
|
+
# Methods: copy() loads Folder
|
|
40
|
+
from .methods.copy.copy import * # Passed!
|
|
41
|
+
|
|
42
|
+
# Methods: count() loads Folder
|
|
43
|
+
from .methods.count.count import * # Passed!
|
|
44
|
+
|
|
45
|
+
# Methods: len() loads Folder
|
|
46
|
+
from .methods.len.len import * # passed!
|
|
47
|
+
|
|
48
|
+
# Methods: remove() loads Folder
|
|
49
|
+
from .methods.remove.remove import * # Passed!
|
|
50
|
+
|
|
51
|
+
# Methods: reverse() loads Folder
|
|
52
|
+
from .methods.reverse.reverse import * # Passed!
|
|
53
|
+
|
|
54
|
+
# Methods: insert() loads Folder
|
|
55
|
+
from .methods.insert.insert import * # Passed!
|
|
56
|
+
|
|
57
|
+
# Methods: sort() loads Folder
|
|
58
|
+
from .methods.sort.sort import * # Passed!
|
|
59
|
+
|
|
60
|
+
# Methods: pop() loads Folder
|
|
61
|
+
from .methods.pop.pop import * # Passed!
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pynoot
|
pynoot-0.1/setup.cfg
ADDED