| Name | Atrajit JSON |
| Version |
3.0
JSON |
| download |
| home_page | https://github.com/atrajit-sarkar/Atr |
| Summary | A Python package that includes Cryptography, Maths, and Telebot modules |
| upload_time | 2024-08-14 06:37:40 |
| maintainer | None |
| docs_url | None |
| author | atrajit-sarkar |
| requires_python | >=3.6 |
| license | None |
| keywords |
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# How to use the module Atr
## For Windows:
### Till now there are two submodule...
- Maths: Different maths topics are here....
- Telebot: Telebot Api and other useful functions are here.....
### To use the module into your project do the following steps....
- open cmd and type the following:
```cmd
C:\Users\atraj>where python
```
and hit enter.\
The out put will be something as follows:
```cmd
C:\Users\atraj>where python
D:\downloads\Python\python.exe
C:\Users\atraj\AppData\Local\Microsoft\WindowsApps\python.exe
C:\Users\atraj>
```
Then open powershell and do the following:
```shell
PS C:\Users\atraj> cd D:\downloads\Python
PS D:\downloads\Python> git clone https://github.com/atrajit-sarkar/Atr.git
```
After hitting enter you now can use Atr module in your projects........
## Important Note:
### The directory shown above after typing
```cmd
C:\Users\atraj>where python
```
### Are two namely, D:\downloads\Python\python.exe
### C:\Users\atraj\AppData\Local\Microsoft\WindowsApps\python.exe in my case.
### In your case you also have to set the path that is not same as the second path as in my case. This path will be always same for every pc.
## How to use Atr in your .py file....
### Creat a .py file in your favourite IDE. and type the following....
```python
from Atr.Maths import numbertheory as nt
print(f"The GCD(12,16) is {nt.gcd(12,16)}")
```
### Similaly you can use the following also
```python
from Atr.Maths import linear_alg as la
from Atr.Maths import switch
from Atr.Telebot import TELEBOT_API
# All the modules docs are given in their readme files that you always can read from their corresponding folders.
```
## For Linux:
```bash
atrajit@Atrajit:~$ sudo su
[sudo] password for atrajit:
root@Atrajit:/home/atrajit# ls
Insta-Cypher SocialMediaHackingToolkit hydra.restore main.py myC password.txt
root@Atrajit:/home/atrajit# mkdir myPython
root@Atrajit:/home/atrajit# ls
Insta-Cypher SocialMediaHackingToolkit hydra.restore main.py myC myPython password.txt
root@Atrajit:/home/atrajit# cd myPython/
root@Atrajit:/home/atrajit/myPython# git clone https://github.com/atrajit-sarkar/Atr.git
Cloning into 'Atr'...
remote: Enumerating objects: 12, done.
remote: Counting objects: 100% (12/12), done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 12 (delta 0), reused 12 (delta 0), pack-reused 0
Receiving objects: 100% (12/12), done.
root@Atrajit:/home/atrajit/myPython# ls
Atr
root@Atrajit:/home/atrajit/myPython# nano main.py
root@Atrajit:/home/atrajit/myPython# python3 main.py
The GCD(12,16) is 4
root@Atrajit:/home/atrajit/myPython#
```
### Happy Coding and learning......
Raw data
{
"_id": null,
"home_page": "https://github.com/atrajit-sarkar/Atr",
"name": "Atrajit",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": "atrajit-sarkar",
"author_email": "atrajit.sarkar@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/67/2d/6ca0e735d75be39718d1d9e73d65d7d4cfa52585aa027a7aade3cd811caf/atrajit-3.0.tar.gz",
"platform": null,
"description": "# How to use the module Atr\r\n## For Windows:\r\n### Till now there are two submodule...\r\n- Maths: Different maths topics are here....\r\n- Telebot: Telebot Api and other useful functions are here.....\r\n\r\n### To use the module into your project do the following steps....\r\n- open cmd and type the following:\r\n```cmd\r\nC:\\Users\\atraj>where python\r\n```\r\nand hit enter.\\\r\nThe out put will be something as follows:\r\n```cmd\r\nC:\\Users\\atraj>where python\r\nD:\\downloads\\Python\\python.exe\r\nC:\\Users\\atraj\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe\r\n\r\nC:\\Users\\atraj>\r\n```\r\nThen open powershell and do the following:\r\n```shell\r\nPS C:\\Users\\atraj> cd D:\\downloads\\Python\r\nPS D:\\downloads\\Python> git clone https://github.com/atrajit-sarkar/Atr.git\r\n```\r\nAfter hitting enter you now can use Atr module in your projects........\r\n\r\n## Important Note:\r\n### The directory shown above after typing \r\n```cmd\r\nC:\\Users\\atraj>where python\r\n```\r\n### Are two namely, D:\\downloads\\Python\\python.exe\r\n### C:\\Users\\atraj\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe in my case. \r\n### In your case you also have to set the path that is not same as the second path as in my case. This path will be always same for every pc.\r\n\r\n## How to use Atr in your .py file....\r\n### Creat a .py file in your favourite IDE. and type the following....\r\n```python\r\nfrom Atr.Maths import numbertheory as nt\r\n\r\nprint(f\"The GCD(12,16) is {nt.gcd(12,16)}\")\r\n```\r\n### Similaly you can use the following also\r\n```python\r\nfrom Atr.Maths import linear_alg as la\r\nfrom Atr.Maths import switch \r\nfrom Atr.Telebot import TELEBOT_API\r\n# All the modules docs are given in their readme files that you always can read from their corresponding folders.\r\n```\r\n\r\n## For Linux:\r\n```bash\r\natrajit@Atrajit:~$ sudo su\r\n[sudo] password for atrajit:\r\nroot@Atrajit:/home/atrajit# ls\r\nInsta-Cypher SocialMediaHackingToolkit hydra.restore main.py myC password.txt\r\nroot@Atrajit:/home/atrajit# mkdir myPython\r\nroot@Atrajit:/home/atrajit# ls\r\nInsta-Cypher SocialMediaHackingToolkit hydra.restore main.py myC myPython password.txt\r\nroot@Atrajit:/home/atrajit# cd myPython/\r\nroot@Atrajit:/home/atrajit/myPython# git clone https://github.com/atrajit-sarkar/Atr.git\r\nCloning into 'Atr'...\r\nremote: Enumerating objects: 12, done.\r\nremote: Counting objects: 100% (12/12), done.\r\nremote: Compressing objects: 100% (10/10), done.\r\nremote: Total 12 (delta 0), reused 12 (delta 0), pack-reused 0\r\nReceiving objects: 100% (12/12), done.\r\nroot@Atrajit:/home/atrajit/myPython# ls\r\nAtr\r\nroot@Atrajit:/home/atrajit/myPython# nano main.py\r\nroot@Atrajit:/home/atrajit/myPython# python3 main.py\r\nThe GCD(12,16) is 4\r\nroot@Atrajit:/home/atrajit/myPython#\r\n```\r\n\r\n### Happy Coding and learning......\r\n",
"bugtrack_url": null,
"license": null,
"summary": "A Python package that includes Cryptography, Maths, and Telebot modules",
"version": "3.0",
"project_urls": {
"Homepage": "https://github.com/atrajit-sarkar/Atr"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c1020b73640d22435ecefc31ecfba4c3efa864356b258d8e003aeb0601553bce",
"md5": "bccec1c379e3b0dc71f40b3632625f86",
"sha256": "657089ca97c7f67362ee527cb76af3db5d2d51f1e75ff837e5c49f47e40b073d"
},
"downloads": -1,
"filename": "Atrajit-3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "bccec1c379e3b0dc71f40b3632625f86",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 7977,
"upload_time": "2024-08-14T06:37:37",
"upload_time_iso_8601": "2024-08-14T06:37:37.977265Z",
"url": "https://files.pythonhosted.org/packages/c1/02/0b73640d22435ecefc31ecfba4c3efa864356b258d8e003aeb0601553bce/Atrajit-3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "672d6ca0e735d75be39718d1d9e73d65d7d4cfa52585aa027a7aade3cd811caf",
"md5": "52909ee2559c012ce8aa7eaaa5793700",
"sha256": "7df92b5bea48f36fd11e12dd2e3c629625a49e743a63f0d455cf34b2e27b4b98"
},
"downloads": -1,
"filename": "atrajit-3.0.tar.gz",
"has_sig": false,
"md5_digest": "52909ee2559c012ce8aa7eaaa5793700",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 6214,
"upload_time": "2024-08-14T06:37:40",
"upload_time_iso_8601": "2024-08-14T06:37:40.111748Z",
"url": "https://files.pythonhosted.org/packages/67/2d/6ca0e735d75be39718d1d9e73d65d7d4cfa52585aa027a7aade3cd811caf/atrajit-3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-14 06:37:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "atrajit-sarkar",
"github_project": "Atr",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "atrajit"
}