Skip to content
Open
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
Binary file added .DS_Store
Binary file not shown.
22 changes: 0 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1 @@
# -------------------------------------
# Git Ignore File
# -------------------------------------
# Specifies which files Git should not track.
# Keeps your repository clean of build artifacts,
# caches, and developer-specific settings.

# Python cache and compiled files
__pycache__/
*.py[cod]
*.log

# Virtual environments (local only)
venv/
.env/

# IDE/project configuration files
.vscode/
.idea/

# OS-specific hidden files
.DS_Store
Thumbs.db
47 changes: 1 addition & 46 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,46 +1 @@
# Hello World Project

A starting template for your project, following a modern Python project structure.

## Project Layout

```
hello_world_project/
├── src/hello_world_project/
│ ├── main.py
│ ├── utils.py
│ ├── example_module.py
│ └── __init__.py
├── tests/
│ └── test_example_module.py
├── pyproject.toml
├── requirements.txt
├── setup.cfg
└── README.md
```

## Quick Start

### 1. Create and activate a virtual environment
```bash
python -m venv venv
source venv/bin/activate # macOS/Linux
```

### 2. Install the project to make it visible to Python
```bash
pip install -e .
```
Alternatively, you can temporarily point PYTHONPATH to src.

### 2. Run the application
```bash
python -m hello_world_project.main
```

## Running Tests

Run all tests:
```bash
python -m unittest discover -s tests
```
project about scrapping
Empty file added data/t.gitempty
Empty file.
34 changes: 0 additions & 34 deletions pyproject.toml

This file was deleted.

20 changes: 0 additions & 20 deletions requirements.txt

This file was deleted.

14 changes: 0 additions & 14 deletions setup.cfg

This file was deleted.

1 change: 0 additions & 1 deletion src/hello_world_project/__init__.py

This file was deleted.

2 changes: 0 additions & 2 deletions src/hello_world_project/example_module.py

This file was deleted.

15 changes: 0 additions & 15 deletions src/hello_world_project/main.py

This file was deleted.

4 changes: 0 additions & 4 deletions src/hello_world_project/utils.py

This file was deleted.

Empty file added src/quote_scraper/.gitempty
Empty file.
Empty file added src/te.gitempty
Empty file.
1 change: 0 additions & 1 deletion tests/__init__.py

This file was deleted.

16 changes: 0 additions & 16 deletions tests/test_example_module.py

This file was deleted.