gpt-engineer-org / gpt-engineer
Specify what you want it to build, the AI asks for clarification, and then builds it.
https://github.com/gpt-engineer-org/gpt-engineer
Specify what you want it to build, the AI asks for clarification, and then builds it.
https://github.com/gpt-engineer-org/gpt-engineer
GitHub
GitHub - AntonOsika/gpt-engineer: CLI platform to experiment with codegen. Precursor to: https://lovable.dev
CLI platform to experiment with codegen. Precursor to: https://lovable.dev - AntonOsika/gpt-engineer
How to prevent python software from being reverse engineered or pirated?
https://www.reddit.com/r/Python/comments/18tdmiv/how_to_prevent_python_software_from_being_reverse/
https://www.reddit.com/r/Python/comments/18tdmiv/how_to_prevent_python_software_from_being_reverse/
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Microdot: Yet Another Python Web Framework
https://blog.miguelgrinberg.com/post/microdot-yet-another-python-web-framework
https://blog.miguelgrinberg.com/post/microdot-yet-another-python-web-framework
Miguelgrinberg
Microdot: Yet Another Python Web Framework
I just realized that I have never written on this blog about Microdot, my very own web framework for Python. I have released Microdot 2.0 a few days ago, so I guess this is a good time to make a…
Django: Detect the global privacy control signal
Global Privacy Control (GPC) is a specification for web browsers to signal website operators not to ...
https://adamj.eu/tech/2023/12/27/django-global-privacy-control/
Global Privacy Control (GPC) is a specification for web browsers to signal website operators not to ...
https://adamj.eu/tech/2023/12/27/django-global-privacy-control/
adamj.eu
Django: Detect the global privacy control signal - Adam Johnson
Global Privacy Control (GPC) is a specification for web browsers to signal website operators not to share or sell the user’s data. This signal is intended to exercise legal data privacy rights such as those provided by the California Consumer Privacy Act…
What's up Python? Epic CPython commit, Django 5 and 2FA for PyPI
https://www.bitecode.dev/p/whats-up-python-epic-cpython-commit
https://www.bitecode.dev/p/whats-up-python-epic-cpython-commit
www.bitecode.dev
What's up Python? Epic CPython commit, Django 5 and 2FA for pypi...
December 2023
Python Asyncio Database Drivers
Asyncio has found a home in Python web development and many asyncio web development projects ...
https://superfastpython.com/asyncio-database-drivers/
Asyncio has found a home in Python web development and many asyncio web development projects ...
https://superfastpython.com/asyncio-database-drivers/
Super Fast Python
Python Asyncio Database Drivers - Super Fast Python
Asyncio has found a home in Python web development and many asyncio web development projects require database access. This means there is a need for Python database drivers that support asyncio. This support may be naive via an async-first driver, or provided…
How I Built an Okta Documentation Chatbot in Python
The article describes the development of Oktanaut, a Python chatbot that simplifies access to information on Okta's Developer Documentation. The chatbot was created using OpenAI and Jupyter Notebook, and two versions were developed to offer specific approaches and general knowledge. The first version used LlamaIndex and was trained on Okta's Developer Documentation, generating accurate r...
https://developer.okta.com/blog/2023/12/20/okta-documentation-chatbot
The article describes the development of Oktanaut, a Python chatbot that simplifies access to information on Okta's Developer Documentation. The chatbot was created using OpenAI and Jupyter Notebook, and two versions were developed to offer specific approaches and general knowledge. The first version used LlamaIndex and was trained on Okta's Developer Documentation, generating accurate r...
https://developer.okta.com/blog/2023/12/20/okta-documentation-chatbot
Okta Developer
How I Built an Okta Documentation Chatbot in Python
How I built a Python chatbot to quickly access information from Okta's Developer Documentation.
Using a Markov chain to generate readable nonsense with 20 lines of Python
https://benhoyt.com/writings/markov-chain/
https://benhoyt.com/writings/markov-chain/
Benhoyt
Using a Markov chain to generate readable nonsense with 20 lines of Python
Describes a simple Markov chain algorithm to generate reasonable-sounding but utterly nonsensical text, and presents some example outputs as well as a Python implementation.
Show HN: How do you OCR on a Mac using the CLI or just Python for free
https://blog.greg.technology/2024/01/02/how-do-you-ocr-on-a-mac.html
https://blog.greg.technology/2024/01/02/how-do-you-ocr-on-a-mac.html
the greg technology blog
how do you ocr on a mac using the cli or just python for free
a kind reader reached out about all of my iphone alarms and asked how specifically did I run OCR on my mac. I’m not one to gatekeep, so here’s how you can get yourself a nice local ocr ‘service’ that works in the terminal/CLI/python and costs 0 dollars:
An experimental pip subcommand for the Python Launcher for Unix
https://snarky.ca/an-experimental-pip-subcommand-for-the-python-launcher-for-unix/
https://snarky.ca/an-experimental-pip-subcommand-for-the-python-launcher-for-unix/
Tall, Snarky Canadian
An experimental pip subcommand for the Python Launcher for Unix
There are a couple of things I always want to be true when I install Python packages for a project:
1. I have a virtual environment
2. Pip is up-to-date
For virtual environments, you would like them to be created as fast as possible and (usually) with…
1. I have a virtual environment
2. Pip is up-to-date
For virtual environments, you would like them to be created as fast as possible and (usually) with…
MobileVLM
A Fast, Strong and Open Vision Language Assistant for Mobile Devices.
https://github.com/Meituan-AutoML/MobileVLM
A Fast, Strong and Open Vision Language Assistant for Mobile Devices.
https://github.com/Meituan-AutoML/MobileVLM
GitHub
GitHub - Meituan-AutoML/MobileVLM: Strong and Open Vision Language Assistant for Mobile Devices
Strong and Open Vision Language Assistant for Mobile Devices - Meituan-AutoML/MobileVLM
Jake
Effortlessly create and deploy your own one-link website on GitHub.
https://github.com/thevahidal/jake
Effortlessly create and deploy your own one-link website on GitHub.
https://github.com/thevahidal/jake
GitHub
GitHub - thevahidal/jake: 🚀 Effortlessly create and deploy your own one-link website on GitHub. A free Linktree alternative.
🚀 Effortlessly create and deploy your own one-link website on GitHub. A free Linktree alternative. - thevahidal/jake
Python Gotcha: Modifying a list while iterating
Python makes it easy to modify a list while you are iterating through it's elements. This will bite you. Read on to find out how and what can be done about it.
https://andrewwegner.com/python-gotcha-modify-list-while-iterating.html
Python makes it easy to modify a list while you are iterating through it's elements. This will bite you. Read on to find out how and what can be done about it.
https://andrewwegner.com/python-gotcha-modify-list-while-iterating.html
Ponderings of an Andy
Python Gotcha: Modifying a list while iterating
Python makes it easy to modify a list while you are iterating through it's elements. This will bite you. Read on to find out how and what can be done about it.
run-llama / llama_index
LlamaIndex (formerly GPT Index) is a data framework for your LLM applications
https://github.com/run-llama/llama_index
LlamaIndex (formerly GPT Index) is a data framework for your LLM applications
https://github.com/run-llama/llama_index
GitHub
GitHub - run-llama/llama_index: LlamaIndex is the leading framework for building LLM-powered agents over your data.
LlamaIndex is the leading framework for building LLM-powered agents over your data. - run-llama/llama_index
Paracelsus
Paracelsus generates Entity Relationship Diagrams by reading your SQLAlchemy models.
https://github.com/tedivm/paracelsus
Paracelsus generates Entity Relationship Diagrams by reading your SQLAlchemy models.
https://github.com/tedivm/paracelsus
GitHub
GitHub - tedivm/paracelsus: Visualize SQLAlchemy Databases using Mermaid or Dot Diagrams.
Visualize SQLAlchemy Databases using Mermaid or Dot Diagrams. - tedivm/paracelsus
An Introduction to Coding In Rust for Pythonistas
This video explores coding with Rust for the first time, diving into its cool features and drawing comparisons with Python.
https://www.youtube.com/watch?v=MoqtsYLGCC4
This video explores coding with Rust for the first time, diving into its cool features and drawing comparisons with Python.
https://www.youtube.com/watch?v=MoqtsYLGCC4
YouTube
An Introduction to Coding In Rust for Pythonistas
👷 Review code better and faster with my 3-Factor Framework: https://arjan.codes/diagnosis.
In this video, I'll explore coding with Rust for the first time, diving into its cool features and drawing comparisons with Python.
😺 Git repository: https://git…
In this video, I'll explore coding with Rust for the first time, diving into its cool features and drawing comparisons with Python.
😺 Git repository: https://git…