Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/janduplessis883/jan883-codebase
Personal Codebase, collection of snippets
https://github.com/janduplessis883/jan883-codebase
Last synced: 30 days ago
JSON representation
Personal Codebase, collection of snippets
- Host: GitHub
- URL: https://github.com/janduplessis883/jan883-codebase
- Owner: janduplessis883
- Created: 2024-08-08T23:53:45.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-12T03:12:55.000Z (3 months ago)
- Last Synced: 2024-08-12T04:26:27.657Z (3 months ago)
- Language: Python
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jan883-codebase
This is a collection of code snippets by myself, to use in local projects.
**Python Path**: Add your central codebase to the Python path in your projects so that you can import modules directly.
The following line of code is added to `~/.bash_profile` or `~/.zshrc` file:
```
export PYTHONPATH="/path/jan883-codebase:$PYTHONPATH"
```
### Codebase Structure
```
my_codebase/
├── README.md
├── utils/
│ ├── string_utils.py
│ ├── date_utils.py
├── data_processing/
│ ├── data_cleaning.py
│ ├── data_transformation.py
├── machine_learning/
│ ├── models/
│ │ ├── linear_regression.py
│ │ ├── random_forest.py
├── visualization/
│ ├── plot_helpers.py
└── tests/
├── test_string_utils.py
├── test_date_utils.py
```