OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
requests
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/09/2024 05:26:03 PM
rwxr-xr-x
📄
.coveragerc
33 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
.git-blame-ignore-revs
234 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📁
.github
-
05/29/2024 03:36:10 PM
rwxr-xr-x
📄
.gitignore
321 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
.pre-commit-config.yaml
593 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
.readthedocs.yaml
738 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
AUTHORS.rst
7.85 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
HISTORY.md
58.95 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
LICENSE
9.9 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
MANIFEST.in
126 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
Makefile
815 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
NOTICE
38 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
README.md
2.86 KB
05/29/2024 03:36:10 PM
rw-r--r--
📁
docs
-
05/29/2024 03:36:10 PM
rwxr-xr-x
📁
ext
-
05/29/2024 03:36:10 PM
rwxr-xr-x
📄
pyproject.toml
238 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
requirements-dev.txt
92 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
setup.cfg
350 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
setup.py
3.85 KB
05/29/2024 03:36:10 PM
rw-r--r--
📁
src
-
05/29/2024 03:36:10 PM
rwxr-xr-x
📁
tests
-
05/29/2024 03:36:10 PM
rwxr-xr-x
📄
tox.ini
283 bytes
05/29/2024 03:36:10 PM
rw-r--r--
Editing: Makefile
Close
.PHONY: docs init: python -m pip install -r requirements-dev.txt test: # This runs all of the tests on all supported Python versions. tox -p ci: python -m pytest tests --junitxml=report.xml test-readme: python setup.py check --restructuredtext --strict && ([ $$? -eq 0 ] && echo "README.rst and HISTORY.rst ok") || echo "Invalid markup in README.rst or HISTORY.rst!" flake8: python -m flake8 src/requests coverage: python -m pytest --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=src/requests tests publish: python -m pip install 'twine>=1.5.0' python setup.py sdist bdist_wheel twine upload dist/* rm -fr build dist .egg requests.egg-info docs: cd docs && make html @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m"