Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
openpyxl
openpyxl
Commits
e1f30808c5e8
Commit
5fad8f67
authored
Jan 04, 2019
by
CharlieC
Browse files
Merge
--HG-- branch : 2.6
parents
c8c2faa605d9
e4ec3bde4dcc
Changes
325
Hide whitespace changes
Inline
Side-by-side
bitbucket-pipelines.yml
View file @
e1f30808
...
...
@@ -3,11 +3,11 @@ image: openpyxl/openpyxl-ci
pipelines
:
pull-requests
:
'
**'
:
-
step
:
caches
:
-
pip
script
:
-
/tools/clean-launch.sh tox --skip-missing-interpreters -e py27,py37 -- -qrf
-
step
:
caches
:
-
pip
script
:
-
/tools/clean-launch.sh tox --skip-missing-interpreters -e py27,py37 -- -qrf
default
:
-
step
:
caches
:
...
...
openpyxl/__init__.py
View file @
e1f30808
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.compat.numbers
import
NUMPY
,
PANDAS
...
...
openpyxl/_constants.py
View file @
e1f30808
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
"""
Package medata
...
...
openpyxl/cell/__init__.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
.cell
import
Cell
,
WriteOnlyCell
,
MergedCell
from
.read_only
import
ReadOnlyCell
openpyxl/cell/_writer.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.compat
import
safe_string
from
openpyxl.xml.functions
import
Element
,
SubElement
...
...
openpyxl/cell/cell.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
"""Manage individual cells in a spreadsheet.
...
...
openpyxl/cell/read_only.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.cell
import
Cell
from
openpyxl.utils
import
get_column_letter
...
...
openpyxl/cell/tests/test_cell.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
# Python stdlib imports
...
...
openpyxl/cell/tests/test_read_only.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
import
datetime
import
pytest
...
...
openpyxl/cell/tests/test_text.py
View file @
e1f30808
from
__future__
import
absolute_import
# coding=utf8
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
import
pytest
from
openpyxl.xml.functions
import
fromstring
,
tostring
...
...
openpyxl/cell/tests/test_writer.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
import
datetime
import
decimal
...
...
openpyxl/cell/text.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
"""
Richtext definition
...
...
openpyxl/chart/_3d.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.descriptors
import
Typed
,
Alias
from
openpyxl.descriptors.serialisable
import
Serialisable
...
...
openpyxl/chart/__init__.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
.area_chart
import
AreaChart
,
AreaChart3D
from
.bar_chart
import
BarChart
,
BarChart3D
...
...
openpyxl/chart/_chart.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
collections
import
OrderedDict
...
...
openpyxl/chart/area_chart.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.descriptors.serialisable
import
Serialisable
from
openpyxl.descriptors
import
(
...
...
openpyxl/chart/axis.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.descriptors.serialisable
import
Serialisable
from
openpyxl.descriptors
import
(
...
...
openpyxl/chart/bar_chart.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.descriptors.serialisable
import
Serialisable
from
openpyxl.descriptors
import
(
...
...
openpyxl/chart/chartspace.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
"""
Enclosing chart object. The various chart types are actually child objects.
...
...
openpyxl/chart/descriptors.py
View file @
e1f30808
from
__future__
import
absolute_import
# Copyright (c) 2010-201
8
openpyxl
# Copyright (c) 2010-201
9
openpyxl
from
openpyxl.compat
import
basestring
...
...
Prev
1
2
3
4
5
…
17
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment