[READ-ONLY] Mirror of https://github.com/shuuji3/mydns-jp-ping. Tiny script to ping ip address to mydns.jp
mydns-jp
1.5 kB
126 lines
1
2# Created by https://www.gitignore.io/api/python
3
4### Python ###
5# Byte-compiled / optimized / DLL files
6__pycache__/
7*.py[cod]
8*$py.class
9
10# C extensions
11*.so
12
13# Distribution / packaging
14.Python
15build/
16develop-eggs/
17dist/
18downloads/
19eggs/
20.eggs/
21lib/
22lib64/
23parts/
24sdist/
25var/
26wheels/
27*.egg-info/
28.installed.cfg
29*.egg
30MANIFEST
31
32# PyInstaller
33# Usually these files are written by a python script from a template
34# before PyInstaller builds the exe, so as to inject date/other infos into it.
35*.manifest
36*.spec
37
38# Installer logs
39pip-log.txt
40pip-delete-this-directory.txt
41
42# Unit test / coverage reports
43htmlcov/
44.tox/
45.coverage
46.coverage.*
47.cache
48nosetests.xml
49coverage.xml
50*.cover
51.hypothesis/
52.pytest_cache/
53
54# Translations
55*.mo
56*.pot
57
58# Django stuff:
59*.log
60local_settings.py
61db.sqlite3
62
63# Flask stuff:
64instance/
65.webassets-cache
66
67# Scrapy stuff:
68.scrapy
69
70# Sphinx documentation
71docs/_build/
72
73# PyBuilder
74target/
75
76# Jupyter Notebook
77.ipynb_checkpoints
78
79# pyenv
80.python-version
81
82# celery beat schedule file
83celerybeat-schedule
84
85# SageMath parsed files
86*.sage.py
87
88# Environments
89.env
90.venv
91env/
92venv/
93ENV/
94env.bak/
95venv.bak/
96
97# Spyder project settings
98.spyderproject
99.spyproject
100
101# Rope project settings
102.ropeproject
103
104# mkdocs documentation
105/site
106
107# mypy
108.mypy_cache/
109
110### Python Patch ###
111.venv/
112
113### Python.VirtualEnv Stack ###
114# Virtualenv
115# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
116[Bb]in
117[Ii]nclude
118[Ll]ib
119[Ll]ib64
120[Ll]ocal
121[Ss]cripts
122pyvenv.cfg
123pip-selfcheck.json
124
125
126# End of https://www.gitignore.io/api/python