![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/gdscwce/game-facts-api
Venv is a tool that creates an isolated environment separate from other projects. Creating a virtual environment allows us to work on a Python project without affecting other projects that also use Python and their dependencies.
Install pip first
sudo apt-get install python3-pip
Then install venv
sudo apt install python3-venv
Now create a virtual environment
python3 -m venv {name_of_virtual_environment}
Activate your virtual environment:
source {name_of_virtual_environment}/bin/activate
Install all dependencies from requirements.txt
pip3 install -r requirements.txt
To deactivate:
deactivate
Run the project using uvicorn
by executing the following command
uvicorn main:app --reload
Contributions are always welcome!
See CONTRIBUTING.md for ways to get started.
Please adhere to this project's CODE OF CONDUCT.
Method | Path | Description |
---|---|---|
GET | /fact/game={games}?limit={limit} | Fetch facts about one or multiple games. |
GET | /fact/random?limit={limit} | Fetch facts(s) about a random game. |
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.