Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme file and made file changes #21

Merged
merged 2 commits into from
Dec 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CONTRIBUTING.md

This file was deleted.

5 changes: 5 additions & 0 deletions LinuxInfo.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os
import threading
from timeit import default_timer as timer
Expand Down
31 changes: 25 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Software Information
Storage Information
Hardware Information
File Information
Ports Information
```
and help you to export into text file.

Expand All @@ -49,28 +50,46 @@ if you want to create any class add it in following directory
```
2. :file_folder: img :
```
contains all project images.
contains all images related to project and screenshots of Input and Output screen.
```

3. :file_folder: output :
```
Here final generated file will added
```
4. :page_facing_up: Cinfo.py:
4. :page_facing_up: Linuxinfo.py:
```
This file contains all working code for linux system.
```
5. :page_facing_up: Windowsinfo.py:
```
This file contains all working code for windows system.
```
6. :page_facing_up: Cinfo.py:
```
This file is start of this project .
simply run this code to execute this projects.
simply run this code to execute this project.
```


### Install

Download or clone this repository and extract in your Local Machine go to the extracted folder.
use Windows console and run
Download or clone this repository and extract in your Local Machine and go to the extracted folder.
use Windows console and install all requirements using command..

On any Operating system, run this command to install all dependencies :
```
pip3 install -r requirements.txt
```
Now run the program by following command in any operating system of your choice :

In windows:
```
python Cinfo.py
```
In linux / mac OS:
```
python3 Cinfo.py
```

![run](https://github.com/chavarera/Cinfo/blob/master/img/run.PNG)

Expand Down
Binary file removed __pycache__/LinuxInfo.cpython-37.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion data.json

This file was deleted.

Binary file removed lib/linux/__pycache__/get_browsers.cpython-37.pyc
Binary file not shown.
Binary file removed lib/linux/__pycache__/get_drives.cpython-37.pyc
Binary file not shown.
Binary file removed lib/linux/__pycache__/get_hw_info.cpython-37.pyc
Binary file not shown.
Binary file not shown.
Binary file removed lib/linux/__pycache__/get_os_info.cpython-37.pyc
Binary file not shown.
Binary file not shown.
Binary file removed lib/linux/__pycache__/get_ports.cpython-37.pyc
Binary file not shown.
Binary file not shown.
Binary file removed lib/linux/__pycache__/list_files.cpython-37.pyc
Binary file not shown.
5 changes: 5 additions & 0 deletions lib/linux/get_browsers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os

class get_browsers:
Expand Down
5 changes: 5 additions & 0 deletions lib/linux/get_drives.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os
from tabulate import tabulate

Expand Down
5 changes: 5 additions & 0 deletions lib/linux/get_hw_info.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os
from tabulate import tabulate

Expand Down
5 changes: 5 additions & 0 deletions lib/linux/get_network_info.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os
from tabulate import tabulate

Expand Down
5 changes: 5 additions & 0 deletions lib/linux/get_os_info.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os
from tabulate import tabulate

Expand Down
5 changes: 5 additions & 0 deletions lib/linux/get_package_list.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os

class get_package_list:
Expand Down
5 changes: 5 additions & 0 deletions lib/linux/get_ports.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os
import re

Expand Down
5 changes: 5 additions & 0 deletions lib/linux/get_startup_list.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os

class get_startup_list:
Expand Down
5 changes: 5 additions & 0 deletions lib/linux/list_files.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
Author : Deepak Chauhan
GitHub : https://github.com/royaleagle73
Email : [email protected]
'''
import os
import filetype
import json
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pypiwin32==223
pywin32==227
WMI==1.4.9
filetype