{"id":30820825,"url":"https://github.com/myusufy/deepseekr","last_synced_at":"2025-09-06T10:10:42.914Z","repository":{"id":312285739,"uuid":"1046995605","full_name":"MYusufY/deepseekr","owner":"MYusufY","description":"Selenium DeepSeek automation, using Google Chrome.","archived":false,"fork":false,"pushed_at":"2025-08-29T15:09:55.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-29T17:19:33.136Z","etag":null,"topics":["ai","api","automation","deepseek","free","python3","selenium"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/deepseekr/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MYusufY.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-29T15:07:57.000Z","updated_at":"2025-08-29T15:13:22.000Z","dependencies_parsed_at":"2025-08-29T17:22:28.093Z","dependency_job_id":"ec30f9cb-ec43-49b5-a4c5-7af2fcc652d0","html_url":"https://github.com/MYusufY/deepseekr","commit_stats":null,"previous_names":["myusufy/deepseekr"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/MYusufY/deepseekr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MYusufY%2Fdeepseekr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MYusufY%2Fdeepseekr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MYusufY%2Fdeepseekr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MYusufY%2Fdeepseekr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MYusufY","download_url":"https://codeload.github.com/MYusufY/deepseekr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MYusufY%2Fdeepseekr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273887865,"owners_count":25185763,"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","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","api","automation","deepseek","free","python3","selenium"],"created_at":"2025-09-06T10:02:53.540Z","updated_at":"2025-09-06T10:10:42.901Z","avatar_url":"https://github.com/MYusufY.png","language":"Python","funding_links":["https://buymeacoffee.com/myusuf"],"categories":[],"sub_categories":[],"readme":"# DeepSeek'r\n\nSelenium DeepSeek automation library for Python.\n\n## Why \"just another wrapper library\"?\n\nI know there are some similar libraries already, but the reasons I’m releasing this one are:\n- Most of the ones I found were outdated or not working.\n- I’m working on another project and this was the script I needed. So I decided to release DeepSeek'r separately.\n\n# Credits / Thanks\n\n- The most up-to-date DeepSeek Selenium automation script I found was [NewComer00/deepseek-chatbot](https://github.com/NewComer00/deepseek-chatbot). DeepSeek'r is partly based on it.\n- Why did I make DeepSeek'r based on it, then?\n\t- [NewComer00/deepseek-chatbot](https://github.com/NewComer00/deepseek-chatbot) uses Edge, but I needed Chrome for my project. So DeepSeek'r uses Google Chrome. (DeepSeek'r also includes other small changes and improvements.)\n\n# Example Usage\n\n1. Install DeepSeek'r  \n\t```bash\n\tpip install deepseekr\n\t```\n\n2. Basic Usage  \n\t```python\n\tfrom deepseekr import DeepSeek\n\n\t# minimal\n\tds1 = DeepSeek()\n\tprint(ds1.send_prompt(\"Hi\"))\n\tds1.close()\n\n\t# with headless (BETA - may not work on some devices!)\n\tds2 = DeepSeek(headless=True)\n\tprint(ds2.send_prompt(\"Running in headless mode\"))\n\tds2.close()\n\n\t# with custom profile path (saves cookies there, so you don’t have to log in again)\n\tds3 = DeepSeek(profile_path=\"my_profile\")\n\tprint(ds3.send_prompt(\"Using custom profile path\"))\n\tds3.close()\n\n\t# with session name (BETA)\n\tds4 = DeepSeek(session_name=\"Work Chat\")\n\tprint(ds4.send_prompt(\"Resuming session Work Chat\"))\n\tds4.close()\n\n\t# with Chrome binary path\n\tds5 = DeepSeek(chrome_path=\"/Applications/Chrome.app/Contents/MacOS/Google Chrome\")\n\tprint(ds5.send_prompt(\"Using custom Chrome path\"))\n\tds5.close()\n\t```\n\n# Notes\n\nCurrently, DeepSeek'r is developed and tested only on macOS. It *may be incompatible with other operating systems!*\n\n# Versions\n- [0.1.0](https://pypi.org/project/deepseekr/0.1.0/): First version\n- [0.2.0](https://pypi.org/project/deepseekr/0.2.0/): Important! DeepSeek's UI on its website just got updated / changed. This update adds support for it. Older versions does not work anymore!\n- [0.3.0](https://pypi.org/project/deepseekr/0.3.0/): Added \"server busy\" handling.\n\nIf you are already using DeepSeek'r on your projects, please update it using:\n`pip install -U deepseekr`\n\n# Disclaimer\n\nThis repository is **only for research purposes**. I am not responsible for misuse, as this works like a *free and unlimited DeepSeek API*. Please do not use in production!\n\n# Contact \u0026 Support\n\n📧 [yusuf@tachion.tech](mailto:yusuf@tachion.tech)  \n☕ [Buy me a coffee](https://buymeacoffee.com/myusuf)\n\nThanks — hope this helps!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyusufy%2Fdeepseekr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmyusufy%2Fdeepseekr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyusufy%2Fdeepseekr/lists"}