Browse Source

Initial commit

Petra Lamborn 4 years ago
commit
7ca4e46bb4
2 changed files with 113 additions and 0 deletions
  1. 110
    0
      .gitignore
  2. 3
    0
      README.md

+ 110
- 0
.gitignore View File

@@ -0,0 +1,110 @@
1
+# ---> Vim
2
+# swap
3
+[._]*.s[a-v][a-z]
4
+[._]*.sw[a-p]
5
+[._]s[a-v][a-z]
6
+[._]sw[a-p]
7
+# session
8
+Session.vim
9
+# temporary
10
+.netrwhist
11
+*~
12
+# auto-generated tag files
13
+tags
14
+
15
+# ---> Python
16
+# Byte-compiled / optimized / DLL files
17
+__pycache__/
18
+*.py[cod]
19
+*$py.class
20
+
21
+# C extensions
22
+*.so
23
+
24
+# Distribution / packaging
25
+.Python
26
+env/
27
+build/
28
+develop-eggs/
29
+dist/
30
+downloads/
31
+eggs/
32
+.eggs/
33
+lib/
34
+lib64/
35
+parts/
36
+sdist/
37
+var/
38
+wheels/
39
+*.egg-info/
40
+.installed.cfg
41
+*.egg
42
+
43
+# PyInstaller
44
+#  Usually these files are written by a python script from a template
45
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
46
+*.manifest
47
+*.spec
48
+
49
+# Installer logs
50
+pip-log.txt
51
+pip-delete-this-directory.txt
52
+
53
+# Unit test / coverage reports
54
+htmlcov/
55
+.tox/
56
+.coverage
57
+.coverage.*
58
+.cache
59
+nosetests.xml
60
+coverage.xml
61
+*,cover
62
+.hypothesis/
63
+
64
+# Translations
65
+*.mo
66
+*.pot
67
+
68
+# Django stuff:
69
+*.log
70
+local_settings.py
71
+
72
+# Flask stuff:
73
+instance/
74
+.webassets-cache
75
+
76
+# Scrapy stuff:
77
+.scrapy
78
+
79
+# Sphinx documentation
80
+docs/_build/
81
+
82
+# PyBuilder
83
+target/
84
+
85
+# Jupyter Notebook
86
+.ipynb_checkpoints
87
+
88
+# pyenv
89
+.python-version
90
+
91
+# celery beat schedule file
92
+celerybeat-schedule
93
+
94
+# SageMath parsed files
95
+*.sage.py
96
+
97
+# dotenv
98
+.env
99
+
100
+# virtualenv
101
+.venv
102
+venv/
103
+ENV/
104
+
105
+# Spyder project settings
106
+.spyderproject
107
+
108
+# Rope project settings
109
+.ropeproject
110
+

+ 3
- 0
README.md View File

@@ -0,0 +1,3 @@
1
+# fedicurses
2
+
3
+WIP repository for a ncurses fediverse/mastodon client, using python mastodon.py