
Research
/Security News
Miasma Mini Shai-Hulud Hits ImmobiliareLabs npm Packages
Miasma Mini Shai-Hulud hits @immobiliarelabs Backstage plugins, targeting GitLab and LDAP auth packages on npm.
get-github-code
Advanced tools
this is a small python library to get code from github repositories
pip3 install get_github_code
is easy to use
from get_github_code import get_code
code = get_code(
user="Vlad2030",
repo="get-code-from-github",
branch="main",
file_path="VERSION",
)
print(code)
# 0.2.1
or asynchronous
import asyncio
from get_github_code import async_get_code
async def main() -> None:
code = await async_get_code(
user="Vlad2030",
repo="get-code-from-github",
branch="main",
file_path="VERSION",
)
print(code)
asyncio.run(main())
# 0.2.1
additionally you can through the class by calling property
import asyncio
from get_github_code import GetCode
file = GetCode(
user="Vlad2030",
repo="get-code-from-github",
branch="main",
file_path="VERSION",
)
print(file.get_code)
# 0.2.1
async def main() -> None:
file = GetCode(
user="Vlad2030",
repo="get-code-from-github",
branch="main",
file_path="VERSION",
)
print(file.async_get_code)
asyncio.run(main())
# 0.2.1
2023, version 0.2.1
FAQs
a small python library to get code from github repositories.
The pypi package get-github-code receives a total of 47 weekly downloads. As such, get-github-code popularity was classified as not popular.
We found that get-github-code demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Research
/Security News
Miasma Mini Shai-Hulud hits @immobiliarelabs Backstage plugins, targeting GitLab and LDAP auth packages on npm.

Security News
Rolldown paused Rust React Compiler integration after a 5MB binary size increase raised concerns about shipping React-specific code to all Vite users.

Security News
/Research
Mini Shai-Hulud expands into the Go ecosystem after hitting LeoPlatform npm packages and targeting GitHub Actions workflows.