adding mkdocs
This commit is contained in:
20
docs/python.md
Normal file
20
docs/python.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Some python
|
||||
|
||||
## Some test python
|
||||
|
||||
!!! warning "Important warning"
|
||||
This isn't yet complete.
|
||||
|
||||
```python
|
||||
def _generate_word_cloud(self) -> None:
|
||||
"""Generates a word cloud
|
||||
"""
|
||||
self.wc = WordCloud(
|
||||
max_words=150,
|
||||
width=1500,
|
||||
height=1500,
|
||||
mask=self.char_mask,
|
||||
random_state=1,
|
||||
).generate_from_frequencies(self.freq)
|
||||
return self
|
||||
```
|
||||
Reference in New Issue
Block a user