Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/99bruno/nosql_lnu
A repository for works with NoSQL
https://github.com/99bruno/nosql_lnu
mongodb neo4j nosql nosql-database sqlserver-2017
Last synced: 2 months ago
JSON representation
A repository for works with NoSQL
- Host: GitHub
- URL: https://github.com/99bruno/nosql_lnu
- Owner: 99bruno
- License: mit
- Created: 2024-09-15T08:51:00.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-30T14:55:28.000Z (2 months ago)
- Last Synced: 2024-10-30T15:47:12.645Z (2 months ago)
- Topics: mongodb, neo4j, nosql, nosql-database, sqlserver-2017
- Language: Jupyter Notebook
- Homepage:
- Size: 219 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NoSQL Labs - Ivan Franko University
This repository contains laboratory works for the NoSQL course at Ivan Franko University. The labs are designed to provide hands-on experience with NoSQL databases.
## Table of Contents
- [Repository Structure](#repository-structure)
- [Getting Started](#getting-started)
- [Running the Labs](#running-the-labs)
- [MongoDB Connection](#mongodb-connection)
- [License](#license)## Repository Structure
- **[Hw_2/](Hw_2/)**: Contains the second laboratory work.
- **[Trends_of_NoSQL.md](Hw_2%2FTrends_of_NoSQL.md)**: Trends of NoSQL databases.
- **[SQL-NoSql_Comparison.md](Hw_2/SQL-NoSql_Comparison.md)**: Comparison between relational and NoSQL databases.
- **[README.md](Hw_2/README.md)**: Instructions and details for the second lab.
- **[Hw_3/](Hw_3/)**: Contains the third laboratory work.
- **[Connect_to_MongoDB.py](Hw_3/Connect_to_MongoDB.py)**: Python script to connect to MongoDB.
- **[README.md](Hw_3/README.md)**: Instructions and details for the third lab.
- **[Hw_4/](Hw_4/)**: Contains the fourth laboratory work.
- **[Create_and_load_data_to_MongoDB.ipynb](Hw_4/Create_and_load_data_to_MongoDB.ipynb)**: Ipynb file to work with MongoDB collections.
- **[README.md](Hw_4/README.md)**: Instructions and details for the fourth lab.
- **[Hw_5/](Hw_5/)**: Contains the fifth laboratory work.
- **[Creating_and_Editing_db.ipynb](Hw_5/2FCreating_and_Editing_db.ipynb)**: Ipynb file to create and edit a database.
- **[README.md](Hw_5/README.md)**: Instructions and details for the fifth lab.
- **[Hw_6/](Hw_6/)**: Contains the sixth laboratory work.
- **[Working_with_data.ipynb](Hw_6/Working_with_data.ipynb)**: Ipynb file to work with data in MongoDB.
- **[README.md](Hw_6/README.md)**: Instructions and details for the sixth lab.
- **[Hw_7/](Hw_7/)**: Contains the seventh laboratory work.
- **[Working_with_requests.ipynb](Hw_7/Working_with_requests.ipynb)**: Ipynb file to work with requests in MongoDB.
- **[README.md](Hw_7/README.md)**: Instructions and details for the seventh lab.- **[.gitignore](.gitignore)**: Specifies files and directories to be ignored by Git.
- **[README.md](README.md)**: This file, providing an overview of the repository.
- **[LICENSE](LICENSE)**: The license for the repository.
- **[requirements.txt](requirements.txt)**: Contains the required Python packages for the labs.## Getting Started
1. **Clone the repository:**
```sh
git clone https://github.com/99bruno/NoSQL_LNU.git
```
2. **Go to the repository directory:**
```sh
cd NoSQL_LNU
```
3. **Create a virtual environment:**
```sh
python -m venv .venv
```
4. **Set up the virtual environment:**
```sh
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
```5. **Install the required packages:**
```sh
pip install -r requirements.txt
```## Running the Labs
Each lab can be run independently. Navigate to the respective lab directory and execute the Python script.
- ### For example, to run the third lab:
1. **Navigate to the third lab directory:**
```sh
cd Hw_3
```2. **Run the Python script:**
```sh
python Connect_to_MongoDB.py
```Repeat the above steps for others.
## MongoDB Connection
Ensure you have a MongoDB instance running and update the connection URI in each script as needed.
## License
This project is licensed under the MIT **[LICENSE](LICENSE)**. See the LICENSE file for details.