You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** The project is built with `Python 3.9.1`, but should work with any version of Python higher than 3.6.
4
+
5
+
## About This Repository
6
+
7
+
This is a companion project to the [Build a Content Aggregator in Python](https://realpython.com/build-a-content-aggregator-python/) tutorial on _Real Python_.
8
+
Visit the article to follow along or download the content of `source_code_final` folder from this repository.
9
+
10
+
## How To Run The Project
11
+
12
+
Create and activate a [Python virtual environment](https://realpython.com/python-virtual-environments-a-primer/) for your operating system and install the dependencies:
You can find the `requirements.txt` file in `source_code_setup/requirements.txt`.
19
+
20
+
Navigate to `source_code_final/` and start the Django development server:
21
+
22
+
```bash
23
+
(.venv) $ cd source_code_final
24
+
(.venv) $ python manage.py runserver
25
+
```
26
+
27
+
You can now navigate to `localhost:8000` in your browser and inspect the finished project. You can also take a look at the project at certain steps as described in the associated tutorial.
0 commit comments