Skip to content

Commit 9a5080d

Browse files
committed
Version 7.0.1
1. First Release of the version 7 software. 2. Refer to `pywebcopy7` repository for detailed changes and development cycle. Signed-off-by: Raja Tomar <rajatomar788@gmail.com>
1 parent 16e7d53 commit 9a5080d

25 files changed

+5189
-2492
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
max-parallel: 4
2828
matrix:
2929
os: [ubuntu-latest, windows-latest, macos-latest]
30-
python-version: [2.7, 3.6, 3.7, 3.8]
30+
python-version: [2.7, 3.8, 3.9, 3.10.0]
3131

3232
steps:
3333
- uses: actions/checkout@v1
@@ -44,4 +44,4 @@ jobs:
4444
4545
- name: Testing on Python ${{ matrix.python-version }}
4646
run: |
47-
python -m unittest tests
47+
python -m pywebcopy --tests

.gitignore

Lines changed: 134 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,135 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
15

2-
/.idea/*
3-
/.vscode/*
4-
/.pytest_cache/*
5-
/dist/*
6-
*.pyc
7-
/pywebcopy.egg-info/*
8-
/requests-html-master/
9-
Pipfile
10-
Pipfile.lock
11-
/testing/
6+
# C extensions
7+
*.so
8+
run.cmd
9+
10+
# Distribution / packaging
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
pip-wheel-metadata/
25+
share/python-wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
MANIFEST
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.nox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*.cover
51+
*.py,cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
migrations/
69+
*.db
70+
71+
# Scrapy stuff:
72+
.scrapy
73+
74+
# Sphinx documentation
75+
docs/_build/
76+
77+
# PyBuilder
78+
target/
79+
80+
# Jupyter Notebook
81+
.ipynb_checkpoints
82+
83+
# IPython
84+
profile_default/
85+
ipython_config.py
86+
87+
# pyenv
88+
.python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
98+
__pypackages__/
99+
100+
# Celery stuff
101+
celerybeat-schedule
102+
celerybeat.pid
103+
104+
# SageMath parsed files
105+
*.sage.py
106+
107+
# Environments
108+
.env
109+
.venv
110+
env/
111+
venv/
112+
ENV/
113+
env.bak/
114+
venv.bak/
115+
116+
# Spyder project settings
117+
.spyderproject
118+
.spyproject
119+
120+
# Pycharm project settings
121+
.idea
122+
123+
# Rope project settings
124+
.ropeproject
125+
126+
# mkdocs documentation
127+
/site
128+
129+
# mypy
130+
.mypy_cache/
131+
.dmypy.json
132+
dmypy.json
133+
134+
# Pyre type checker
135+
.pyre/

0 commit comments

Comments
 (0)