Skip to content

Commit

Permalink
docs: fix invalid link README.md (#37)
Browse files Browse the repository at this point in the history
* fix typo README.md

"packaage" -> "package"

* fix typo README.md

"contirbute" -> "contribute"

* fix invalid links README.md

"[Models](models/**init**.py)" is not working.(used twice)

Changed to "[Models](models/__init__.py)"

---------

Co-authored-by: Sanchit Ram Arvind <[email protected]>
  • Loading branch information
osrm and sanchitram1 authored Dec 24, 2024
1 parent 00fedcd commit b81f4d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ package manager sources. It supports:

A custom logging utility that provides consistent logging across all loaders.

### 5. [Models](models/**init**.py)
### 5. [Models](models/__init__.py)

SQLAlchemy models representing the database schema, including:

Expand Down Expand Up @@ -74,7 +74,7 @@ To create a new loader for a package manager:
the raw data from the package manager's source.
1. Implement a custom Transformer class that inherits from the base Transformer, that
figures out how to map the raw data provided by the package managers into the data
model described in the [models](models/**init**.py) module.
model described in the [models](models/__init__.py) module.
1. Create a main script that utilizes the core components (Config, DB, Fetcher,
Transformer, Scheduler) to fetch, transform, and load data.

Expand Down

0 comments on commit b81f4d1

Please sign in to comment.