{"id":14064856,"url":"https://github.com/daveebbelaar/ai-fundamentals","last_synced_at":"2025-09-06T10:33:19.710Z","repository":{"id":232740070,"uuid":"785074086","full_name":"daveebbelaar/ai-fundamentals","owner":"daveebbelaar","description":"Learn the fundamentals of building AI solutions using Python.","archived":false,"fork":false,"pushed_at":"2024-04-11T09:05:37.000Z","size":36,"stargazers_count":27,"open_issues_count":0,"forks_count":17,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-13T19:45:14.610Z","etag":null,"topics":["ai","data","python","tutorials"],"latest_commit_sha":null,"homepage":"https://datalumina.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/daveebbelaar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-11T06:25:43.000Z","updated_at":"2024-11-25T11:06:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"1287dec6-1c4e-4c4d-b0b0-19b5cd1de112","html_url":"https://github.com/daveebbelaar/ai-fundamentals","commit_stats":null,"previous_names":["daveebbelaar/ai-fundamentals"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daveebbelaar%2Fai-fundamentals","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daveebbelaar%2Fai-fundamentals/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daveebbelaar%2Fai-fundamentals/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daveebbelaar%2Fai-fundamentals/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daveebbelaar","download_url":"https://codeload.github.com/daveebbelaar/ai-fundamentals/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232076569,"owners_count":18469235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","data","python","tutorials"],"created_at":"2024-08-13T07:04:07.649Z","updated_at":"2025-01-01T19:14:52.519Z","avatar_url":"https://github.com/daveebbelaar.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# AI Fundamentals: Building AI Solutions with Python\n\nThis repository is designed to provide you with a foundation in the basic building blocks of creating AI solutions using Python. \n\n\n## Getting Started\n\n#### 1. Clone the repository\n\n```bash\ngit clone https://github.com/daveebbelaar/ai-fundamentals.git\n```\n\n#### 2. Create a Python environment\n\nPython 3.6 or higher using `venv` or `conda`. Using `venv`:\n\n``` bash\ncd ai-fundamentals\npython3 -m venv env\nsource env/bin/activate\n```\n\nUsing `conda`:\n``` bash\ncd ai-fundamentals\nconda create -n ai-fundamentals python=3.10\nconda activate ai-fundamentals\n```\n\n#### 3. Install the required dependencies\n``` bash\npip install -r requirements.txt\n```\n\n#### 4. Set up the keys in a .env file\n\nFirst, create a `.env` file in the root directory of the project. Inside the file, add your OpenAI API key:\n\n```makefile\nOPENAI_API_KEY=\"your_api_key_here\"\n```\n\nSave the file and close it. In your Python script or Jupyter notebook, load the `.env` file using the following code:\n```python\nfrom dotenv import load_dotenv, find_dotenv\nload_dotenv(find_dotenv())\n```\n\nBy using the right naming convention for the environment variable, you don't have to manually store the key in a separate variable and pass it to the function. The library or package that requires the API key will automatically recognize the `OPENAI_API_KEY` environment variable and use its value.\n\nWhen needed, you can access the `OPENAI_API_KEY` as an environment variable:\n```python\nimport os\napi_key = os.environ['OPENAI_API_KEY']\n```\n\n## Tutorials\n\nFor video tutorials on how to use this repository and run experiments, visit the YouTube channel: [youtube.com/@daveebbelaar](https://www.youtube.com/channel/UCn8ujwUInbJkBhffxqAPBVQ?sub_confirmation=1)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaveebbelaar%2Fai-fundamentals","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaveebbelaar%2Fai-fundamentals","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaveebbelaar%2Fai-fundamentals/lists"}