The objective of this interface is the ability to get data from an Admidio installation and use them in python. Currently Users, groups and events are integrated
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
1.3 KiB

5 years ago
5 years ago
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *,cover
  43. .hypothesis/
  44. # Translations
  45. *.mo
  46. *.pot
  47. # Django stuff:
  48. *.log
  49. local_settings.py
  50. # Flask stuff:
  51. instance/
  52. .webassets-cache
  53. # Scrapy stuff:
  54. .scrapy
  55. # Sphinx documentation
  56. docs/_build/
  57. # PyBuilder
  58. target/
  59. # Jupyter Notebook
  60. .ipynb_checkpoints
  61. # pyenv
  62. .python-version
  63. # celery beat schedule file
  64. celerybeat-schedule
  65. # SageMath parsed files
  66. *.sage.py
  67. # dotenv
  68. .env
  69. # virtualenv
  70. .venv
  71. venv/
  72. ENV/
  73. # Spyder project settings
  74. .spyderproject
  75. # Rope project settings
  76. .ropeproject
  77. .vscode/settings.json
  78. config.py
  79. .vscode/temp.sql
  80. .idea/admidio-python-api.iml
  81. .idea/encodings.xml
  82. .idea/misc.xml
  83. .idea/modules.xml
  84. .idea/vcs.xml
  85. .idea/workspace.xml
  86. .vscode/launch.json
  87. main.py