noho_bot 2.0.0
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.
- package/LICENSE +22 -0
- package/README.md +30 -0
- package/noho_bot.js +808 -0
- package/noho_bot.js. +549 -0
- package/noho_bot.js.. +549 -0
- package/noho_bot.py +812 -0
- package/package.json +30 -0
- package/setup.py +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "noho_bot",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "NOHO BOT - 100% Local Multi-Platform Bot Framework",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "node index.js",
|
|
8
|
+
"daemon": "node index.js --daemon",
|
|
9
|
+
"whatsapp": "node index.js --whatsapp",
|
|
10
|
+
"local": "node index.js --local",
|
|
11
|
+
"test": "node test.js"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"bot",
|
|
15
|
+
"whatsapp",
|
|
16
|
+
"telegram",
|
|
17
|
+
"discord",
|
|
18
|
+
"automation",
|
|
19
|
+
"noho"
|
|
20
|
+
],
|
|
21
|
+
"author": "nohojs",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@whiskeysockets/baileys": "^6.6.0",
|
|
25
|
+
"qrcode-terminal": "^0.12.0"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=16.0.0"
|
|
29
|
+
}
|
|
30
|
+
}
|
package/setup.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="noho-bot",
|
|
5
|
+
version="1.0.0",
|
|
6
|
+
author="Omar (nohojs)",
|
|
7
|
+
author_email="animeplay306@gmail.com",
|
|
8
|
+
description="Universal Bot Builder by NOHO Company - Python Edition",
|
|
9
|
+
long_description=open("README.md").read(),
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url="https://github.com/nohojs/noho_bot",
|
|
12
|
+
py_modules=["noho_bot"],
|
|
13
|
+
classifiers=[
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
],
|
|
24
|
+
python_requires=">=3.8",
|
|
25
|
+
install_requires=[
|
|
26
|
+
"python-telegram-bot>=20.0",
|
|
27
|
+
"discord.py>=2.3.0",
|
|
28
|
+
"slack-sdk>=3.21.0",
|
|
29
|
+
"requests>=2.31.0",
|
|
30
|
+
"qrcode[pil]>=7.4.0",
|
|
31
|
+
],
|
|
32
|
+
entry_points={
|
|
33
|
+
"console_scripts": [
|
|
34
|
+
"noho-py=noho_bot:main",
|
|
35
|
+
],
|
|
36
|
+
},
|
|
37
|
+
)
|