Skip to content
This repository was archived by the owner on Jul 3, 2026. It is now read-only.

Commit 6996bf4

Browse files
committed
v1.0.0
1 parent d6e0a5c commit 6996bf4

29 files changed

Lines changed: 475 additions & 5745 deletions

404.html

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 12 additions & 121 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Dataverse <img src="https://raw.githubusercontent.com/multiverseweb/Dataverse/main/website/web_images/3d_glow.webp" height=50px align=right id="project-logo">
22

3+
> [!WARNING]
4+
> **[ARCHIVED]** This project is no longer maintained and is read-only. It serves as a public archive.
5+
36
###### Data Visualisation Software & Finance Tracker
47

58
<!--![Visitors](https://api.visitorbadge.io/api/visitors?path=multiverseweb/Dataverse%20&countColor=%2523263759&style=for-the-badge)-->
@@ -28,44 +31,12 @@
2831
<table>
2932
<tr>
3033
<th><a href="#what-does-this-software-do">About Dataverse</a></th>
31-
<th><a href="#preview">Application Preview</a></th>
32-
<th><a href="#versions">Versions</a></th>
34+
<th><a href="#preview">Application Preview</a></th>
3335
<th><a href="#repository-structure">Repository Structure</a></th>
34-
<th><a href="#deployment-specifications">Use Dataverse</a></th>
35-
<th><a href="#contributions">Make Contributions</a></th>
36+
<th><a href="#installation-windows">Installation</a></th>
3637
</tr>
3738
</table>
3839

39-
---
40-
41-
<details>
42-
<summary><h3>Featured In: Open Source Programs</h3></summary>
43-
44-
45-
<table>
46-
<tr>
47-
<th>Event Logo</th>
48-
<th>Event Name</th>
49-
</tr>
50-
<tr>
51-
<td><img src="https://raw.githubusercontent.com/multiverseweb/Dataverse/main/Documentation/images/IWOC.png" width="50" height="auto" loading="lazy" alt="IWOC"/></td>
52-
<td>Innogeeks Winter of Code Season-3 (IWOC) 2025</td>
53-
</tr>
54-
<tr>
55-
<td><img src="https://raw.githubusercontent.com/multiverseweb/Dataverse/main/Documentation/images/swoc.png" width="50" height="auto" loading="lazy" alt="SWOC"/></td>
56-
<td><a href="https://www.socialwinterofcode.com/">Social Winter of Code Season-5 (SWOC) </a>2024-2025</td>
57-
</tr>
58-
<tr>
59-
<td><img src="https://raw.githubusercontent.com/multiverseweb/Dataverse/main/Documentation/images/gssoc.png" width="50" height="auto" loading="lazy" alt="GSSoC Ext 24"/></td>
60-
<td><a href="https://gssoc.girlscript.tech/">GirlScript Summer of Code Ext (GSSoC'24) </a>2024</td>
61-
</tr>
62-
<tr>
63-
<td><img src="https://raw.githubusercontent.com/multiverseweb/Dataverse/main/Documentation/images/hacktoberfest.png" width="50" height="auto" loading="lazy" alt="Hacktoberfest 24"/></td>
64-
<td><a href="https://hacktoberfest.com/">Hacktober Fest</a> 2024</td>
65-
</tr>
66-
</table>
67-
</details>
68-
6940
### What does this software do?
7041
- Supports all data visualisation techniques, basic as well as advanced.
7142
- Generates interactive, customizable and exportable graphs.
@@ -75,7 +46,6 @@
7546
- Allows user to download financial reports.
7647
- Uses encryption techniques to securely store your passwords.
7748
- View and manage data via a mobile-friendly website.
78-
- Provides predictive analytics and trend analysis using ML techniques.
7949

8050
---
8151

@@ -102,17 +72,7 @@ Stored Data
10272
</details>
10373
</div>
10474

105-
---
106-
107-
### Versions
108-
109-
| Version | Description |
110-
|-------------|-----------------|
111-
| v.XM45.24 `Under Development` | High scale installable vesrion currently being developed, has improved UI based on glassmorphism. Makes the project mobile-friendly and provides more analytical features. Seeks major contributions through SWOC-S5. |
112-
| v.6550.24 `Latest` | Current stable version that supports most of the data visualisation techniques and finance tracking. Major development done during GSSoC'24. |
113-
| v.06.02.24 | Initial version developed on 6th February, 2024. Only supports finance tracking. |
11475

115-
---
11676

11777
### Repository Structure
11878

@@ -121,58 +81,16 @@ Stored Data
12181

12282
---
12383

124-
### Deployment Specifications
125-
I. Navigate to the directory where you want to deploy the dataverse application and open terminal or command prompt there.
126-
127-
II. Run the following commands in terminal:
128-
129-
> ```
130-
> git clone https://github.com/multiverseweb/Dataverse.git
131-
> ```
132-
133-
III. Create a Virtual Environment (optional but recommended)
134-
- On Windows:
135-
136-
```
137-
python -m venv venv
138-
venv\Scripts\activate
139-
```
140-
141-
- On macOS/Linux:
142-
143-
```
144-
python3 -m venv venv
145-
source venv/bin/activate
146-
```
147-
148-
IV. Install dependencies:
149-
150-
> ```
151-
> cd Dataverse
152-
> ```
153-
> ```
154-
> pip install -r installation/requirements.txt
155-
> ```
84+
### Installation (Windows)
15685

157-
V. Install MySQL if you don't have it already from [here](https://dev.mysql.com/downloads/installer/).
86+
A pre-compiled executable is provided for Windows users, eliminating the need to install Python or any dependencies.
15887

159-
> [!IMPORTANT]
160-
> Change the values of `DB_HOST`, `DB_USER` and `DB_PASSWORD` in [software/db_config.py](software/db_config.py) file according to your MySQL account.
88+
1. Go to the [GitHub Releases](https://github.com/multiverseweb/Dataverse/releases) page.
89+
2. Download the latest `Dataverse.exe`.
90+
3. Double click the `.exe` file to run the application.
16191

162-
VI. Run the application:
163-
164-
> ```
165-
> python software/main.py
166-
> ```
167-
168-
VII. To Run `index.html` (For Website Development)
169-
170-
1. Install the **Go Live** extension in VS Code.
171-
2. Open the `index.html` file in VS Code.
172-
3. Click on the **Go Live** button in the bottom-right corner of VS Code.
173-
174-
> The default URL will be:
175-
> `http://localhost:5500/Dataverse/index.html`
92+
> [!NOTE]
93+
> If you prefer to run from source, you can clone the repository and run `pip install -r requirements.txt` followed by `python software/main.py`.
17694
17795
Now, the software should run smoothly with no errors, feel free to use the software and don't forget to give feedback on [Dataverse's website](https://multiverse-dataverse.netlify.app/)!
17896

@@ -200,34 +118,7 @@ Now, the software should run smoothly with no errors, feel free to use the softw
200118
/>
201119
</picture>
202120

203-
---
204-
205-
### Contributions
206-
207-
Want to make contributions to this project? ✨
208-
209-
| **[Read _contribution guidelines!_](contributing.md)** |
210-
|-|
211-
212-
---
213121

214-
### Our Valuable Contributors ❤️
215-
216-
[![Contributors](https://contrib.rocks/image?repo=multiverseweb/Dataverse)](https://github.com/multiverseweb/Dataverse/graphs/contributors)
217-
218-
### Stargazers ⭐
219-
220-
<div align='left'>
221-
222-
[![Stargazers repo roster for @multiverseweb/Dataverse](https://reporoster.com/stars/dark/multiverseweb/Dataverse)](https://github.com/multiverseweb/Dataverse/stargazers)
223-
224-
</div>
225-
226-
### Forkers 🍴
227-
228-
[![Forkers repo roster for @multiverseweb/Dataverse](https://reporoster.com/forks/dark/multiverseweb/Dataverse)](https://github.com/multiverseweb/Dataverse/network/members)
229-
230-
---
231122

232123
<sup><a href="#table-of-contents" align="right">Back to top</a></sup>
233124

contributing.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

documentation.html

Lines changed: 0 additions & 142 deletions
This file was deleted.

0 commit comments

Comments
 (0)