Skip to content

Commit

Permalink
Merge pull request #4 from kggx/1-implement-wrapper-around-the-public…
Browse files Browse the repository at this point in the history
…-explorer-api

Fixes #1 implement wrapper around the public explorer api
  • Loading branch information
kggx authored May 12, 2024
2 parents e3e00ba + 8e9635f commit 007d47e
Show file tree
Hide file tree
Showing 13 changed files with 835 additions and 1,004 deletions.
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,16 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Visual Studio Code config
.vscode

# Secrets
secrets/
# Sample flows to generate Swagger API
flows/
flows/
frida-hooks/

temp/

debug.py
debug.json
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pyventim
Python module to fetch a reverse engineered Eventim API

Python wrapper to fetch a reverse engineered Eventim API
18 changes: 16 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.0.1"
authors = [
{ name="Kilian Braun", email="hello@kilianbraun.de" },
]
description = "A small example package"
description = "Python wrapper to fetch a reverse engineered Eventim API."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
Expand All @@ -19,4 +19,18 @@ classifiers = [

[project.urls]
Homepage = "https://github.com/kggx/pyventim"
Issues = "https://github.com/kggx/pyventim/issues"
Issues = "https://github.com/kggx/pyventim/issues"


[tool.pytest.ini_options]
minversion = "6.0"
addopts = [ "--import-mode=importlib" ]
filterwarnings = "ignore:.*:DeprecationWarning"
pythonpath = "src"
testpaths = [
"tests"
]

[tool.pylint.MASTER]
ignore = ['.git', "tests"]

10 changes: 4 additions & 6 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
packages = [
# MITM Proxy to reverse engineer apis
pkgs.mitmproxy
pkgs.mitmproxy2swagger

# Python 3.12 + packages
(pkgs.python312.withPackages (python-pkgs: [
python-pkgs.requestsn
python-pkgs.requests
python-pkgs.pytest
python-pkgs.black
]))
];
}
}
Loading

0 comments on commit 007d47e

Please sign in to comment.